| @@ -91,6 +91,9 @@ public: | |||||
| /** True if the socket is connected to this machine rather than over the network. */ | /** True if the socket is connected to this machine rather than over the network. */ | ||||
| bool isLocal() const noexcept; | bool isLocal() const noexcept; | ||||
| /** Returns the OS's socket handle that's currently open. */ | |||||
| int getRawSocketHandle() const noexcept { return handle; } | |||||
| //============================================================================== | //============================================================================== | ||||
| /** Waits until the socket is ready for reading or writing. | /** Waits until the socket is ready for reading or writing. | ||||
| @@ -155,7 +158,6 @@ public: | |||||
| */ | */ | ||||
| StreamingSocket* waitForNextConnection() const; | StreamingSocket* waitForNextConnection() const; | ||||
| private: | private: | ||||
| //============================================================================== | //============================================================================== | ||||
| String hostName; | String hostName; | ||||
| @@ -237,6 +239,9 @@ public: | |||||
| /** True if the socket is connected to this machine rather than over the network. */ | /** True if the socket is connected to this machine rather than over the network. */ | ||||
| bool isLocal() const noexcept; | bool isLocal() const noexcept; | ||||
| /** Returns the OS's socket handle that's currently open. */ | |||||
| int getRawSocketHandle() const noexcept { return handle; } | |||||
| //============================================================================== | //============================================================================== | ||||
| /** Waits until the socket is ready for reading or writing. | /** Waits until the socket is ready for reading or writing. | ||||
| @@ -283,7 +288,6 @@ public: | |||||
| */ | */ | ||||
| DatagramSocket* waitForNextConnection() const; | DatagramSocket* waitForNextConnection() const; | ||||
| private: | private: | ||||
| //============================================================================== | //============================================================================== | ||||
| String hostName; | String hostName; | ||||