* @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. */
| 51 | * every socket class working with UNIX sockets. |
| 52 | */ |
| 53 | class 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 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected