File tree
94 files changed
+2071
-1691
lines changed- external
- include/session
- config
- groups
- onionreq
- src
- config
- groups
- onionreq
- tests
- utils
- ci
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
94 files changed
+2071
-1691
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
319 | 319 | | |
320 | 320 | | |
321 | 321 | | |
322 | | - | |
| 322 | + | |
323 | 323 | | |
324 | 324 | | |
325 | 325 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
102 | 102 | | |
103 | 103 | | |
104 | 104 | | |
105 | | - | |
| 105 | + | |
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
111 | 111 | | |
112 | | - | |
| 112 | + | |
113 | 113 | | |
114 | 114 | | |
115 | 115 | | |
| |||
Submodule oxen-libquic updated 87 files
- .clang-format+51-14
- .drone.jsonnet+40-27
- .gitmodules+1-1
- CMakeLists.txt+13
- cmake/FindXXX.cmake.template+5
- cmake/StaticBuild.cmake+25-4
- external/CMakeLists.txt+9-1
- external/ngtcp2+1-1
- external/oxen-encoding+1-1
- external/oxen-logging+1-1
- include/oxen/quic.hpp+4-5
- include/oxen/quic/address.hpp+77-28
- include/oxen/quic/btstream.hpp+44-18
- include/oxen/quic/connection.hpp+121-52
- include/oxen/quic/connection_ids.hpp+10-11
- include/oxen/quic/context.hpp+9-6
- include/oxen/quic/crypto.hpp+88-13
- include/oxen/quic/datagram.hpp+74-19
- include/oxen/quic/endpoint.hpp+111-94
- include/oxen/quic/format.hpp+26-11
- include/oxen/quic/formattable.hpp+5-13
- include/oxen/quic/gnutls_crypto.hpp+402-92
- include/oxen/quic/iochannel.hpp+34-7
- include/oxen/quic/ip.hpp+201-63
- include/oxen/quic/loop.hpp+42-53
- include/oxen/quic/messages.hpp+240-75
- include/oxen/quic/network.hpp+36-18
- include/oxen/quic/opt.hpp+52-47
- include/oxen/quic/result.hpp+71-24
- include/oxen/quic/stream.hpp+46-19
- include/oxen/quic/types.hpp-92
- include/oxen/quic/udp.hpp+28-14
- include/oxen/quic/utils.hpp+77-101
- src/CMakeLists.txt+5-3
- src/address.cpp+42-3
- src/btstream.cpp+82-52
- src/connection.cpp+555-272
- src/connection_ids.cpp+4-2
- src/context.cpp+3-1
- src/datagram.cpp+43-46
- src/endpoint.cpp+300-130
- src/error.cpp-13
- src/gnutls_creds.cpp+352-53
- src/gnutls_crypto.cpp+75
- src/gnutls_session.cpp+182-124
- src/internal.hpp+10-27
- src/iochannel.cpp+1
- src/ip.cpp+41-7
- src/loop.cpp+41-16
- src/messages.cpp+195-69
- src/network.cpp+41-19
- src/result.cpp+73
- src/stream.cpp+79-34
- src/udp.cpp+34-7
- src/utils.cpp+8-58
- tests/001-handshake.cpp+84-62
- tests/002-send-receive.cpp+90-83
- tests/003-multiclient.cpp+12-14
- tests/004-streams.cpp+126-122
- tests/005-chunked-sender.cpp+8-10
- tests/006-server-send.cpp+26-26
- tests/007-datagrams.cpp+325-349
- tests/008-conn_hooks.cpp+3-6
- tests/009-alpns.cpp+20-27
- tests/010-migration.cpp+15-19
- tests/011-manual_transmission.cpp+15-21
- tests/012-watermarks.cpp+20-25
- tests/013-eventhandler.cpp+8-60
- tests/014-0rtt.cpp+247
- tests/015-bt-encoding.cpp+194
- tests/016-stateless_reset.cpp+106
- tests/CLI11+1-1
- tests/CMakeLists.txt+33-18
- tests/Catch2+1-1
- tests/case_logger.cpp+3-16
- tests/dgram-speed-client.cpp+82-90
- tests/dgram-speed-server.cpp+88-45
- tests/main.cpp+11-9
- tests/ping-client.cpp+311
- tests/ping-server.cpp+112
- tests/speedtest-client.cpp+27-48
- tests/speedtest-server.cpp+23-43
- tests/unit_test.hpp+40
- tests/utils.cpp+436-11
- tests/utils.hpp+201-30
- utils/build_scripts/gnutls-android-timezone-t.patch+406
- utils/format.sh+1-1
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
62 | | - | |
| 62 | + | |
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
| 67 | + | |
| 68 | + | |
68 | 69 | | |
69 | 70 | | |
70 | 71 | | |
| |||
75 | 76 | | |
76 | 77 | | |
77 | 78 | | |
78 | | - | |
| 79 | + | |
| 80 | + | |
79 | 81 | | |
80 | 82 | | |
81 | 83 | | |
| |||
84 | 86 | | |
85 | 87 | | |
86 | 88 | | |
87 | | - | |
| 89 | + | |
| 90 | + | |
88 | 91 | | |
89 | 92 | | |
90 | 93 | | |
| |||
96 | 99 | | |
97 | 100 | | |
98 | 101 | | |
99 | | - | |
100 | | - | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
101 | 106 | | |
102 | 107 | | |
103 | 108 | | |
| |||
109 | 114 | | |
110 | 115 | | |
111 | 116 | | |
112 | | - | |
113 | | - | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
114 | 121 | | |
115 | 122 | | |
116 | 123 | | |
| |||
122 | 129 | | |
123 | 130 | | |
124 | 131 | | |
125 | | - | |
126 | | - | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
127 | 136 | | |
128 | 137 | | |
129 | 138 | | |
| |||
137 | 146 | | |
138 | 147 | | |
139 | 148 | | |
140 | | - | |
141 | | - | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
142 | 153 | | |
143 | 154 | | |
144 | 155 | | |
| |||
147 | 158 | | |
148 | 159 | | |
149 | 160 | | |
150 | | - | |
| 161 | + | |
| 162 | + | |
151 | 163 | | |
152 | 164 | | |
153 | 165 | | |
| |||
157 | 169 | | |
158 | 170 | | |
159 | 171 | | |
160 | | - | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
161 | 176 | | |
162 | 177 | | |
163 | 178 | | |
| |||
167 | 182 | | |
168 | 183 | | |
169 | 184 | | |
170 | | - | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
171 | 189 | | |
172 | 190 | | |
173 | 191 | | |
174 | 192 | | |
175 | 193 | | |
176 | 194 | | |
177 | 195 | | |
178 | | - | |
179 | | - | |
| 196 | + | |
| 197 | + | |
180 | 198 | | |
181 | 199 | | |
182 | 200 | | |
183 | | - | |
| 201 | + | |
184 | 202 | | |
185 | 203 | | |
186 | 204 | | |
187 | 205 | | |
188 | 206 | | |
189 | 207 | | |
190 | | - | |
| 208 | + | |
| 209 | + | |
191 | 210 | | |
192 | 211 | | |
193 | 212 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
111 | | - | |
| 111 | + | |
| 112 | + | |
112 | 113 | | |
113 | 114 | | |
114 | | - | |
| 115 | + | |
| 116 | + | |
115 | 117 | | |
116 | 118 | | |
117 | 119 | | |
| |||
124 | 126 | | |
125 | 127 | | |
126 | 128 | | |
127 | | - | |
| 129 | + | |
128 | 130 | | |
129 | 131 | | |
130 | 132 | | |
| |||
160 | 162 | | |
161 | 163 | | |
162 | 164 | | |
163 | | - | |
| 165 | + | |
164 | 166 | | |
165 | 167 | | |
166 | 168 | | |
| |||
231 | 233 | | |
232 | 234 | | |
233 | 235 | | |
234 | | - | |
| 236 | + | |
235 | 237 | | |
236 | 238 | | |
237 | | - | |
| 239 | + | |
| 240 | + | |
238 | 241 | | |
239 | 242 | | |
240 | 243 | | |
| |||
282 | 285 | | |
283 | 286 | | |
284 | 287 | | |
285 | | - | |
| 288 | + | |
286 | 289 | | |
287 | 290 | | |
288 | 291 | | |
| |||
292 | 295 | | |
293 | 296 | | |
294 | 297 | | |
295 | | - | |
| 298 | + | |
296 | 299 | | |
297 | 300 | | |
298 | 301 | | |
| |||
339 | 342 | | |
340 | 343 | | |
341 | 344 | | |
342 | | - | |
| 345 | + | |
343 | 346 | | |
344 | 347 | | |
345 | 348 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
274 | 274 | | |
275 | 275 | | |
276 | 276 | | |
277 | | - | |
278 | | - | |
279 | | - | |
280 | | - | |
281 | | - | |
| 277 | + | |
282 | 278 | | |
283 | 279 | | |
284 | 280 | | |
| |||
0 commit comments