- the socket client connect the server, then client send the data to server
- the server print the client data in stdout
- the zero copy echo server and client
- dup socket fd to STDOUT_FILENO clinet
- splice the client message to server local file
- nonblocking i/o echo server and client with select or epoll
- reuse port
- half-sync/half-reactive pattern server with epoll
- use task queue dispatcher the read/write event
- the main-thread epoll_wait the event
- the works-thread deal with handle
- high efficiency half-sync/half-async pattern server with epoll
- the main-thread just epoll_wait the listen socket
- dispatcher the event use pipe to works-thread
- the works-thread epoll_wait read/write event
- leader/follower pattern server with epoll
- get the network infomation ipaddress gateway netmask is_dhcp mac broadcast
- and config the network