-
Notifications
You must be signed in to change notification settings - Fork 36.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net: split CConnman::SocketHandler()
`CConnman::SocketHandler()` does 3 things: 1. Check sockets for readiness 2. Process ready listening sockets 3. Process ready connected sockets Split the processing (2. and 3.) into separate methods to make the code easier to grasp. Also, move the processing of listening sockets after the processing of connected sockets to make it obvious that there is no dependency and also explicitly release the snapshot before dealing with listening sockets - it is only necessary for the connected sockets part.
- v28.1
- v28.1rc2
- v28.1rc1
- v28.0
- v28.0rc2
- v28.0rc1
- v27.2
- v27.2rc1
- v27.1
- v27.1rc1
- v27.0
- v27.0rc1
- v26.2
- v26.2rc1
- v26.1
- v26.1rc2
- v26.1rc1
- v26.0
- v26.0rc3
- v26.0rc2
- v26.0rc1
- v25.2
- v25.2rc2
- v25.2rc1
- v25.1
- v25.1rc1
- v25.0
- v25.0rc2
- v25.0rc1
- v24.2
- v24.2rc1
- v24.1
- v24.1rc3
- v24.1rc2
- v24.1rc1
- v24.0.1
- v24.0
- v24.0rc4
- v24.0rc3
- v24.0rc2
- v24.0rc1
- v23.2
- v23.2rc1
- v23.1
- v23.1rc2
- v23.1rc1
- v23.0
- v23.0rc5
- v23.0rc4
- v23.0rc3
- v23.0rc2
- v23.0rc1
- v23-final
Showing
2 changed files
with
57 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters