blob: 170d94ca16c67495dca8646fc192912f3431a974 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
## nng_rep_open
Create rep socket.
### Synopsis
```c
#include <nng/nng.h>
#include <nng/protocol/reqrep0/rep.h>
int nng_rep0_open(nng_socket *s);
int nng_rep0_open_raw(nng_socket *);
```
### Description
The `nng_rep0_open` function creates a xref:../proto/rep.adoc[_REP_] version 0 xref:../sock/index.adoc[socket] and returns it at the location pointed to by _s_.
The `nng_rep0_open_raw` function creates a _REP_ version 0 socket in xref:../sock/raw_mode[raw mode] and returns it at the location pointed to by _s_.
### Return Values
These functions return 0 on success, and non-zero otherwise.
### Errors
[horizontal]
`NNG_ENOMEM`:: Insufficient memory is available.
`NNG_ENOTSUP`:: The protocol is not supported.
### See Also
xref:../proto/rep.adoc[Replier Protocol (_REP_)]
xref:../proto/req.adoc[Requester Protocol (_REQ_)]
|