File tree Expand file tree Collapse file tree 4 files changed +662
-0
lines changed
mqtt/subscription-manager Expand file tree Collapse file tree 4 files changed +662
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ developerguide
31
31
doesn
32
32
dup
33
33
endif
34
+ filterindex
34
35
hashmap
35
36
hasn
36
37
html
@@ -48,6 +49,7 @@ methodlen
48
49
milli
49
50
mosquitto
50
51
mqtt
52
+ nameindex
51
53
noninfringement
52
54
openssl
53
55
org
@@ -58,6 +60,7 @@ packetidtoresend
58
60
param
59
61
pathlen
60
62
pbuffer
63
+ pcontext
61
64
pdeserializedinfo
62
65
pem
63
66
pfixedbuffer
@@ -66,8 +69,10 @@ pindex
66
69
pingreq
67
70
pingresp
68
71
plaintext
72
+ pmatch
69
73
pmethod
70
74
pmqttcontext
75
+ pnameindex
71
76
pnetworkcontext
72
77
posix
73
78
ppacketinfo
@@ -76,6 +81,8 @@ ppubinfo
76
81
ppublishinfo
77
82
processloop
78
83
psessionpresent
84
+ ptopicfilter
85
+ ptopicname
79
86
ptransportinterface
80
87
puback
81
88
pubcomp
@@ -91,9 +98,12 @@ structs
91
98
suback
92
99
sublicense
93
100
subscribepublishloop
101
+ sys
94
102
tcp
95
103
tcpsocket
96
104
tls
105
+ topicfilterlength
106
+ topicnamelength
97
107
transportinterface
98
108
transporttimeout
99
109
uint
Original file line number Diff line number Diff line change
1
+ set ( LIBRARY_NAME "mqtt_subscription_manager" )
2
+ # Library target.
3
+ add_library ( ${LIBRARY_NAME}
4
+ "${LIBRARY_NAME} .c" )
5
+
6
+ target_link_libraries (
7
+ ${LIBRARY_NAME}
8
+ PRIVATE
9
+ mqtt
10
+ )
11
+
12
+ target_include_directories (
13
+ ${LIBRARY_NAME}
14
+ PUBLIC
15
+ ${LOGGING_INCLUDE_DIRS}
16
+ )
17
+
You can’t perform that action at this time.
0 commit comments