summaryrefslogtreecommitdiff
path: root/include/SFML/Network
diff options
context:
space:
mode:
authorJames Cowgill <jcowgill@debian.org>2016-10-27 18:34:24 +0100
committerJames Cowgill <jcowgill@debian.org>2016-10-27 18:34:24 +0100
commitfc50d231530ae85da5cc3f3ebd131310c15bf359 (patch)
tree12c9f3c3f01ee1182d399593347a8611217bbb6c /include/SFML/Network
parentdf93e238e30e97850d76ad5585b8ab9ad9c03e67 (diff)
New upstream version 2.4.1~git15.b61c2f8+dfsg
Diffstat (limited to 'include/SFML/Network')
-rw-r--r--include/SFML/Network/UdpSocket.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/SFML/Network/UdpSocket.hpp b/include/SFML/Network/UdpSocket.hpp
index 20cb7c6..86fd1f6 100644
--- a/include/SFML/Network/UdpSocket.hpp
+++ b/include/SFML/Network/UdpSocket.hpp
@@ -95,9 +95,11 @@ public:
////////////////////////////////////////////////////////////
/// \brief Unbind the socket from the local port to which it is bound
///
- /// The port that the socket was previously using is immediately
- /// available after this function is called. If the
- /// socket is not bound to a port, this function has no effect.
+ /// The port that the socket was previously bound to is immediately
+ /// made available to the operating system after this function is called.
+ /// This means that a subsequent call to bind() will be able to re-bind
+ /// the port if no other process has done so in the mean time.
+ /// If the socket is not bound to a port, this function has no effect.
///
/// \see bind
///