From bfd354e695fdd6ecc89f941cf95e4ec43da4c81e Mon Sep 17 00:00:00 2001 From: yhirose Date: Thu, 8 Nov 2018 11:46:53 +0900 Subject: [PATCH] Updated README. fix #102 --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 2dc38fa..16f8be5 100644 --- a/README.md +++ b/README.md @@ -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