I am having an increasingly hard time using the void *ptr in the epoll_event. I can just link this to a struct? For example, can I do something like this? Because I am trying todo something like this but it does not work, the first loop on the listen socket is good, but after another event comes in it crashes. Can someone help me out in understanding how to use data.ptr?
struct client {
int fd;
int connection_status;
};
struct epoll_event *events = NULL;
struct epoll_event ev;
struct client *c = new client;
struct client *event_c = NULL;
c.fd = (socket);
int efd = epoll_create1(0);
ev.data.fd = c.fd;
ev.events = EPOLLIN;
ev.data.ptr = c;
epoll_ctl ( efd , EPOLL_CTL_ADD , c.fd , &ev );
events = (struct epoll_event*)calloc ( XXX , sizeof event );
while(1) {
int n = epoll_wait ( efd , events , XXX , -1 );
for ( int i = 0 ; i < n ; i++ ) {
event_c = (struct client*) events[i].data.ptr;
cout << "SOCKET: " << event_c->fd << endl;
if (c->fd == events[i].data.fd ) {
struct client *new_c = new client;
struct epoll_event new_ev;
struct sockaddr inaddr;
sockletn_t in_len;
int nfd = accept ( c->fd , &inaddr , &in_len );
/* make socket non-blocking ... / error checking */
new_c->fd = nfd;
new_c->connection_status = 1;
new_ev.data.fd = nfd;
new_ev.events = EPOLLIN;
new_ev.data.ptr = client;
int r = epoll_ctl ( efd , EPOLL_CTL_ADD , nfd , &new_ev );
continue;
} else {
ssize_t count;
char buf[512];
int count = read ( events[i].data.fd , buf , sizeof buf );
// ... error checking blah blah blah
int rc = write ( 1 , buf , count );
}
}
}