blob: c8866c4123ad49501d4dbee0eca003bd8f34f8d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  | 
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */
#pragma once
#include <map>
#include <memory>
#include <string>
#include <Swiften/Base/API.h>
#include <Swiften/FileTransfer/ReadBytestream.h>
#include <Swiften/FileTransfer/SOCKS5BytestreamRegistry.h>
#include <Swiften/JID/JID.h>
#include <Swiften/Network/ConnectionServer.h>
namespace Swift {
    class SOCKS5BytestreamServerSession;
    class CryptoProvider;
    class SWIFTEN_API SOCKS5BytestreamServer {
        public:
            SOCKS5BytestreamServer(
                    std::shared_ptr<ConnectionServer> connectionServer,
                    SOCKS5BytestreamRegistry* registry);
            HostAddressPort getAddressPort() const;
            void start();
            void stop();
            std::vector< std::shared_ptr<SOCKS5BytestreamServerSession> > getSessions(const std::string& id) const;
        private:
            void handleNewConnection(std::shared_ptr<Connection> connection);
            void handleSessionFinished(std::shared_ptr<SOCKS5BytestreamServerSession>);
        private:
            friend class SOCKS5BytestreamServerSession;
            std::shared_ptr<ConnectionServer> connectionServer;
            SOCKS5BytestreamRegistry* registry;
            std::vector<std::shared_ptr<SOCKS5BytestreamServerSession> > sessions;
    };
}
  |