1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-26 02:14:22 +00:00

Added a couple of socket accessor methods.

This commit is contained in:
jules 2013-03-29 09:12:36 +00:00
parent 5601c4d189
commit c91812467c

View file

@ -91,6 +91,9 @@ public:
/** True if the socket is connected to this machine rather than over the network. */
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.
@ -155,7 +158,6 @@ public:
*/
StreamingSocket* waitForNextConnection() const;
private:
//==============================================================================
String hostName;
@ -237,6 +239,9 @@ public:
/** True if the socket is connected to this machine rather than over the network. */
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.
@ -283,7 +288,6 @@ public:
*/
DatagramSocket* waitForNextConnection() const;
private:
//==============================================================================
String hostName;