mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 14:29:10 -07:00
Updated README. fix #102
This commit is contained in:
parent
74ec96e228
commit
bfd354e695
1 changed files with 7 additions and 0 deletions
|
@ -34,6 +34,13 @@ int main(void)
|
|||
|
||||
`Post`, `Put`, `Delete` and `Options` methods are also supported.
|
||||
|
||||
### Bind a socket to multiple interfaces and any available port
|
||||
|
||||
```cpp
|
||||
svr.bind_to_any_port("0.0.0.0");
|
||||
svr.listen_after_bind();
|
||||
```
|
||||
|
||||
### Method Chain
|
||||
|
||||
```cpp
|
||||
|
|
Loading…
Reference in a new issue