diff options
Diffstat (limited to 'src/socket/Socket.cpp')
-rw-r--r-- | src/socket/Socket.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/socket/Socket.cpp b/src/socket/Socket.cpp index 13a684bc..998d1cdb 100644 --- a/src/socket/Socket.cpp +++ b/src/socket/Socket.cpp @@ -188,5 +188,14 @@ Socket::close() } } +void +Socket::shutdown() +{ + if (_sock != -1) { + ::shutdown(_sock, SHUT_RDWR); + _sock = -1; + } +} + } // namespace Ingen } // namespace Socket |