h2o / picotls

TLS 1.3 implementation in C (master supports RFC8446 as well as draft-26, -27, -28)
540 stars 143 forks source link

Add the `u` option to the getopt arg to parse #538

Closed nak3 closed 6 hours ago

nak3 commented 2 months ago

As reported by https://github.com/h2o/picotls/issues/521, the args of getopt() misses u and so it does not parse the -u option even though it is implemented.

This patch parses the -u option via getopt.

Fix https://github.com/h2o/picotls/issues/521

kazuho commented 6 hours ago

Thank you for the fix!