File tree
37 files changed
+395
-457
lines changed- components/mqtt
- test
- weekend_test
- examples/protocols/mqtt
- publish_test
- main
- ssl
- main
- ssl_mutual_auth/main
- ssl_psk
- main
- tcp
- main
- ws
- main
- wss
- main
37 files changed
+395
-457
lines changedLines changed: 0 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
8 |
| - | |
9 |
| - |
Lines changed: 7 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
86 | 86 |
| |
87 | 87 |
| |
88 | 88 |
| |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
89 | 96 |
| |
90 | 97 |
| |
91 | 98 |
| |
|
Lines changed: 0 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 |
| - | |
6 |
| - |
- .github/main.workflow-22
- .github/workflows/issue_comment.yml+20
- .github/workflows/new_issues.yml+20
- .github/workflows/new_prs.yml+20
- .gitlab-ci.yml+61-23
- .travis.yml+4-4
- ci/build_examples.sh+22
- ci/modify_for_legacy_idf.sh
- ci/set_idf.sh+19
- ci/set_mqtt.sh+16
- examples/emitter-client/CMakeLists.txt-19
- examples/emitter-client/Makefile-13
- examples/emitter-client/README.md-10
- examples/emitter-client/generate-key-0.png
- examples/emitter-client/generate-key-1.png
- examples/emitter-client/main/Kconfig.projbuild-22
- examples/emitter-client/main/app_main.c-156
- examples/emitter-client/main/component.mk
- examples/mqtt_ssl_mutual_auth/CMakeLists.txt-19
- examples/mqtt_ssl_mutual_auth/Makefile-13
- examples/mqtt_ssl_mutual_auth/README.md-16
- examples/mqtt_ssl_mutual_auth/main/Kconfig.projbuild-15
- examples/mqtt_ssl_mutual_auth/main/app_main.c-167
- examples/mqtt_ssl_mutual_auth/main/component.mk-1
- include/mqtt_client.h+41-1
- include/mqtt_config.h+16-3
- include/mqtt_supported_features.h+14-1
- lib/include/mqtt_msg.h+17-12
- lib/include/mqtt_outbox.h+5-4
- lib/include/platform_esp32_idf.h+6
- lib/mqtt_msg.c+43-45
- lib/mqtt_outbox.c+11-6
- mqtt_client.c+494-154
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + |
Lines changed: 4 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + |
Lines changed: 70 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 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 | + |
Lines changed: 11 additions & 24 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 |
| - | |
6 | 5 |
| |
7 | 6 |
| |
8 | 7 |
| |
| |||
11 | 10 |
| |
12 | 11 |
| |
13 | 12 |
| |
14 |
| - | |
15 |
| - | |
16 |
| - | |
17 |
| - | |
18 |
| - | |
19 |
| - | |
20 |
| - | |
21 |
| - | |
22 |
| - | |
23 |
| - | |
24 |
| - | |
25 |
| - | |
26 |
| - | |
| 13 | + | |
| 14 | + | |
27 | 15 |
| |
28 | 16 |
| |
29 | 17 |
| |
| |||
52 | 40 |
| |
53 | 41 |
| |
54 | 42 |
| |
| 43 | + | |
| 44 | + | |
55 | 45 |
| |
56 | 46 |
| |
57 | 47 |
| |
| |||
123 | 113 |
| |
124 | 114 |
| |
125 | 115 |
| |
126 |
| - | |
| 116 | + | |
127 | 117 |
| |
128 | 118 |
| |
129 | 119 |
| |
| |||
137 | 127 |
| |
138 | 128 |
| |
139 | 129 |
| |
140 |
| - | |
141 |
| - | |
142 |
| - | |
143 |
| - | |
144 |
| - | |
145 |
| - | |
146 |
| - | |
| 130 | + | |
147 | 131 |
| |
148 | 132 |
| |
149 | 133 |
| |
| |||
158 | 142 |
| |
159 | 143 |
| |
160 | 144 |
| |
161 |
| - | |
| 145 | + | |
162 | 146 |
| |
163 | 147 |
| |
164 | 148 |
| |
165 | 149 |
| |
166 | 150 |
| |
167 | 151 |
| |
| 152 | + | |
| 153 | + | |
| 154 | + | |
168 | 155 |
| |
169 | 156 |
| |
170 | 157 |
| |
| |||
188 | 175 |
| |
189 | 176 |
| |
190 | 177 |
| |
191 |
| - | |
| 178 | + |
File renamed without changes.
Lines changed: 7 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + |
Lines changed: 0 additions & 85 deletions
This file was deleted.
Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 0 additions & 50 deletions
This file was deleted.
Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 0 additions & 27 deletions
This file was deleted.
0 commit comments