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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
//
// Copyright 2017 Garrett D'Amore <garrett@damore.org>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//
#include <string.h>
#include "core/nng_impl.h"
// Protocol related stuff - generically.
// The list of protocols is hardwired. This is reasonably unlikely to
// change, as adding new protocols is not something intended to be done
// outside of the core.
extern nni_proto nni_bus_proto;
extern nni_proto nni_pair_proto;
extern nni_proto nni_rep_proto;
extern nni_proto nni_req_proto;
extern nni_proto nni_pub_proto;
extern nni_proto nni_sub_proto;
extern nni_proto nni_push_proto;
extern nni_proto nni_pull_proto;
extern nni_proto nni_surveyor_proto;
extern nni_proto nni_respondent_proto;
static nni_proto *protocols[] = {
// clang-format off
&nni_bus_proto,
&nni_pair_proto,
&nni_rep_proto,
&nni_req_proto,
&nni_pub_proto,
&nni_sub_proto,
&nni_push_proto,
&nni_pull_proto,
&nni_surveyor_proto,
&nni_respondent_proto,
NULL
// clang-format on
};
nni_proto *
nni_proto_find(uint16_t num)
{
int i;
nni_proto *p;
for (i = 0; (p = protocols[i]) != NULL; i++) {
if (p->proto_self == num) {
break;
}
}
return (p);
}
const char *
nni_proto_name(uint16_t num)
{
nni_proto *p;
if ((p = nni_proto_find(num)) == NULL) {
return (NULL);
}
return (p->proto_name);
}
uint16_t
nni_proto_number(const char *name)
{
nni_proto *p;
int i;
for (i = 0; (p = protocols[i]) != NULL; i++) {
if (strcmp(p->proto_name, name) == 0) {
return (p->proto_self);
}
}
return (NNG_PROTO_NONE);
}
uint16_t
nni_proto_peer(uint16_t num)
{
nni_proto *p;
if ((p = nni_proto_find(num)) == NULL) {
return (NNG_PROTO_NONE);
}
return (p->proto_peer);
}
|