summaryrefslogtreecommitdiff
path: root/docs/reference/src/sock/nng_respondent_open.md
blob: b8883d8d9cfe6da5323c3f051d96c15f5ae129c0 (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
35
36
37
38
39
40
41
42
# nng_respondent_open

## NAME

nng_respondent_open --- create _RESPONDENT_ socket

## SYNOPSIS

```c
#include <nng/nng.h>
#include <nng/protocol/survey0/respond.h>

int nng_respondent0_open(nng_socket *s);

int nng_respondent0_open_raw(nng_socket *s);
```

## DESCRIPTION

The `nng_respondent0_open()` function creates a [{{i:*RESPONDENT*}}][respondent]
version 0 [socket][socket] and returns it at the location
pointed to by _s_.

The `nng_respondent0_open_raw()` function creates a _RESPONDENT_
version 0 socket in [raw mode][raw] and returns it at the location pointed to by _s_.

## RETURN VALUES

These functions return 0 on success, and non-zero otherwise.

## ERRORS

* `NNG_ENOMEM`: Insufficient memory is available.
* `NNG_ENOTSUP`: The protocol is not supported.

## SEE ALSO

[Sockets][socket],
[_RESPONDENT_ Protocol][respondent],
[_SURVEYOR_ Protocol][surveyor]

{{#include ../refs.md}}