pistacheio / pistache

A high-performance REST toolkit written in C++
https://pistacheio.github.io/pistache/
Apache License 2.0
3.12k stars 685 forks source link

Endpoint::Options::backlog_ is not used #1194

Closed jiankyu closed 4 months ago

jiankyu commented 4 months ago

The Endpoint::Options struct has a member called "backlog_", this member is not passed down to listener::init(). As a result, the default argument in the method declaration is used, which is always 128.

kiplingw commented 4 months ago

Thanks @jiankyu. If you'd like to submit a PR we'll have a look.

jiankyu commented 4 months ago

Yes, will submit a PR to fix this. Thanks!