blob: 9e5a6bec269fc243ef3b84d92cd123d191d5cf1e (
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
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
|
#
# Copyright 2021 Staysail Systems, Inc. <info@staystail.tech>
#
# 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.
#
# Core.
nng_directory(core)
nng_check_sym(strlcpy string.h NNG_HAVE_STRLCPY)
nng_check_sym(strnlen string.h NNG_HAVE_STRNLEN)
nng_check_sym(strcasecmp string.h NNG_HAVE_STRCASECMP)
nng_check_sym(strncasecmp string.h NNG_HAVE_STRNCASECMP)
nng_sources(
defs.h
aio.c
aio.h
device.c
device.h
dialer.c
dialer.h
sockfd.c
sockfd.h
file.c
file.h
idhash.c
idhash.h
init.c
init.h
list.c
list.h
listener.c
listener.h
lmq.c
lmq.h
message.c
message.h
msgqueue.c
msgqueue.h
nng_impl.h
options.c
options.h
pollable.c
pollable.h
panic.c
panic.h
pipe.c
pipe.h
platform.h
protocol.h
reap.c
reap.h
socket.c
socket.h
sockimpl.h
stats.c
stats.h
stream.c
stream.h
strs.c
strs.h
taskq.c
taskq.h
tcp.c
tcp.h
thread.c
thread.h
url.c
url.h
)
nng_test(aio_test)
nng_test(buf_size_test)
nng_test(errors_test)
nng_test(id_test)
nng_test(list_test)
nng_test(message_test)
nng_test(reconnect_test)
nng_test(sock_test)
nng_test(stats_test)
nng_test(url_test)
|