fixed doc
This commit is contained in:
parent
c4a8783b7d
commit
66fb79ffe2
@ -135,7 +135,7 @@ include(CPack)
|
||||
|
||||
file(
|
||||
GLOB_RECURSE PROJECT_FILES FOLLOW_SYMLINKS
|
||||
*.txt *.c *.cpp *.hpp *.h *.in *.cmake *.sh Makefile *.md
|
||||
*.txt *.c *.cpp *.hpp *.h *.in *.cmake *.sh *.md AUTHORS
|
||||
)
|
||||
|
||||
add_custom_target(
|
||||
|
||||
@ -253,7 +253,8 @@ Federico Bertolucci aka [lessness](https://github.com/lessness)<br/>
|
||||
Luca Martini aka [lordlukas](https://github.com/lucamartini)<br/>
|
||||
Elia Mazzuoli aka [Zikoel](https://github.com/Zikoel)<br/>
|
||||
Francesco De Felice aka [fradefe](https://github.com/fradefe)<br/>
|
||||
Tushar Maheshwari aka [tusharpm](https://github.com/tusharpm)
|
||||
Tushar Maheshwari aka [tusharpm](https://github.com/tusharpm)<br/>
|
||||
Paolo Monteverde aka [morbo84](https://github.com/morbo84)
|
||||
|
||||
If you want to contribute, please send patches as pull requests against the branch master.
|
||||
|
||||
|
||||
@ -209,7 +209,7 @@ public:
|
||||
/**
|
||||
* @brief Starts listening for incoming connections.
|
||||
*
|
||||
* When a new incoming connection is received, a ConnectEvent event is
|
||||
* When a new incoming connection is received, a ListenEvent event is
|
||||
* emitted.<br/>
|
||||
* An ErrorEvent event will be emitted in case of errors.
|
||||
*
|
||||
@ -224,15 +224,15 @@ public:
|
||||
* @brief Accepts incoming connections.
|
||||
*
|
||||
* This call is used in conjunction with `listen()` to accept incoming
|
||||
* connections. Call this function after receiving a ConnectEvent event to
|
||||
* connections. Call this function after receiving a ListenEvent event to
|
||||
* accept the connection. Before calling this function, the submitted handle
|
||||
* must be initialized.<br>
|
||||
* An ErrorEvent event will be emitted in case of errors.
|
||||
*
|
||||
* When the ConnectEvent event is emitted it is guaranteed that this
|
||||
* When the ListenEvent event is emitted it is guaranteed that this
|
||||
* function will complete successfully the first time. If you attempt to use
|
||||
* it more than once, it may fail.<br/>
|
||||
* It is suggested to only call this function once per ConnectEvent event.
|
||||
* It is suggested to only call this function once per ListenEvent event.
|
||||
*
|
||||
* **Note**: both the handles must be running on the same loop.
|
||||
*
|
||||
|
||||
Loading…
Reference in New Issue
Block a user