Searched defs:ClientSocket (Results 1 – 5 of 5) sorted by relevance
32 struct ClientSocket : public std::enable_shared_from_this<ClientSocket> { struct41 ClientSocket &operator=(const ClientSocket &) = delete; argument56 HTTPServer *mServer;57 ServerSocket *mParent;58 sockaddr_in mRemoteAddr;60 std::shared_ptr<BufferedSocket> mImplPlain;61 std::shared_ptr<SSLSocket> mImplSSL;63 std::vector<uint8_t> mInBuffer;64 size_t mInBufferLen;66 std::vector<uint8_t> mOutBuffer;[all …]
37 ClientSocket(ClientSocket&& other) : fd_{other.fd_} {} in ClientSocket() function66 explicit ClientSocket(SharedFD fd) : fd_(fd) {} in ClientSocket() function
29 ClientSocket::ClientSocket(int port) in ClientSocket() function in cuttlefish::ClientSocket
46 ClientSocket::ClientSocket(std::uint16_t port) in ClientSocket() function in ClientSocket73 ClientSocket::ClientSocket(ClientSocket&& other) in ClientSocket() function in ClientSocket
28 ClientSocket::ClientSocket( in ClientSocket() function in ClientSocket