aboutsummaryrefslogtreecommitdiff
path: root/acceptor.h
blob: 8432ef64cd17f3fd3cd166d44866664f1c9ea3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "tsocket.h"
#include "eventloop.h"

#ifndef __ACCEPTOR_H
#define __ACCEPTOR_H

struct connAcceptor {
    struct tsocket *sock;
    struct eventLoop *el;
};

struct event *connAcceptorNewEvent(struct tsocket *sock, struct eventLoop *el);

#endif