Add a simple readme

This commit is contained in:
R. Tyler Croy 2013-03-24 18:34:34 -07:00
parent 5ae889f380
commit 8d556f678e
1 changed files with 11 additions and 0 deletions

11
epollecho/README.md Normal file
View File

@ -0,0 +1,11 @@
# epoll echo
Simple example of building a little epoll(7)-based server
### Known Issues
* This code is ugly.
* The `Accept_Socket` code will not handle multiple clients connecting at the
same time. This is easily accomplished by having a loop that would accept
incoming connections and then bail out on an `EAGAIN` or `EWOULDBLOCK`.