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:
parent
5601c4d189
commit
c91812467c
1 changed files with 6 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue