GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
NN_CLOSE(3) nanomsg 1.1.5 NN_CLOSE(3)

nn_close - close an SP socket

#include <nanomsg/nn.h>

int nn_close (int s);

Closes the socket s. Any buffered inbound messages that were not yet received by the application will be discarded. The library will try to deliver any outstanding outbound messages for the time specified by NN_LINGER socket option. The call will block in the meantime.

If the function succeeds zero is returned. Otherwise, -1 is returned and errno is set to to one of the values defined below.

EBADF
The provided socket is invalid.

EINTR

Operation was interrupted by a signal. The socket is not fully closed yet. Operation can be re-started by calling nn_close() again.

int s = nn_socket (AF_SP, NN_PUB);
assert (s >= 0);
int rc = nn_close (s);
assert (rc == 0);

nn_socket(3) nn_setsockopt(3) nanomsg(7)

Martin Sustrik <sustrik@250bpm.com>
2018-10-15  

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.