MCPcopy Create free account
hub / github.com/dermesser/libsocket / unix_socket

Class unix_socket

headers/unixbase.hpp:53–62  ·  view source on GitHub ↗

* @addtogroup libsocketplusplus * @{ */ * @brief Base class for all UNIX socket classes * * This class provides only the data member _path and is used as base class for * every socket class working with UNIX sockets. */

Source from the content-addressed store, hash-verified

51 * every socket class working with UNIX sockets.
52 */
53class unix_socket : public virtual socket {
54 protected:
55 string _path; //!< The path we're connected (client stream) or bound
56 //!< (server stream, server datagram)
57
58 public:
59 unix_socket();
60
61 string get_path(void);
62};
63/**
64 * @}
65 */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected