Commit f4e6d85
committed
fix: flags for ngtcp2 on IBM i
similar to aix IBM i does not support certain network flags
we are getting the following build errors:
```
../deps/ngtcp2/ngtcp2/examples/shared.cc:68:63: error: 'IPTOS_ECN_MASK' was not declared in this scope
68 | return *reinterpret_cast<uint8_t *>(CMSG_DATA(cmsg)) & IPTOS_ECN_MASK;
| ^~~~~~~~~~~~~~
../deps/ngtcp2/ngtcp2/examples/shared.cc:80:22: error: 'IPTOS_ECN_MASK' was not declared in this scope
80 | return tos & IPTOS_ECN_MASK;
| ^~~~~~~~~~~~~~
```1 parent 1d49478 commit f4e6d85
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
272 | 272 | | |
273 | 273 | | |
274 | 274 | | |
275 | | - | |
| 275 | + | |
276 | 276 | | |
277 | 277 | | |
278 | 278 | | |
| |||
330 | 330 | | |
331 | 331 | | |
332 | 332 | | |
333 | | - | |
| 333 | + | |
334 | 334 | | |
335 | 335 | | |
336 | 336 | | |
| |||
0 commit comments