/* accept_buf.h */

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>

struct accept_buf {
    int					fd;
    struct sockaddr 	addr;
};


