소스 검색

Updated README. fix #102

yhirose 7 년 전
부모
커밋
bfd354e695
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      README.md

+ 7 - 0
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