Home | History | Annotate | Download | only in src

Lines Matching refs:Socket

108 class Socket;
238 // Factory method for creating platform dependent Socket.
239 // Please use delete to reclaim the storage for the returned Socket.
240 static Socket* CreateSocket();
632 // Socket
635 class Socket {
637 virtual ~Socket() {}
642 virtual Socket* Accept() const = 0;
647 // Shutdown socket for both read and write. This causes blocking Send and
648 // Receive calls to exit. After Shutdown the Socket object cannot be used for
656 // Set the value of the SO_REUSEADDR socket option.