mirror of https://github.com/agdsn/xerxes.git
46 lines
771 B
C++
46 lines
771 B
C++
/**
|
|
* xerxes - mysql proxying
|
|
* ``Why do you persist in your loneliness?'' --Xerxes
|
|
* (c) 2008
|
|
* Jan Losinski <losinshi@wh2.tu-dresden.de>
|
|
* Maximilian Marx <mmarx@wh2.tu-dresden.de>
|
|
*/
|
|
|
|
#ifndef XERXES_EPOLL_HXX
|
|
#define XERXES_EPOLL_HXX
|
|
|
|
#include <stdexcept>
|
|
#include <utility>
|
|
#include <map>
|
|
#include <boost/utility.hpp>
|
|
#include <boost/shared_ptr.hpp>
|
|
#include <sys/types.h>
|
|
#include <sys/epoll.h>
|
|
#include "socket.hxx"
|
|
|
|
namespace xerxes
|
|
{
|
|
struct EPoll
|
|
{
|
|
EPoll();
|
|
|
|
virtual ~EPoll();
|
|
|
|
typedef boost::shared_ptr<epoll_event> event_t;
|
|
|
|
void
|
|
add(Socket const& source,
|
|
Socket const& target);
|
|
|
|
void
|
|
add(Socket const& socket);
|
|
|
|
void
|
|
del(Socket const& socket);
|
|
|
|
int fd;
|
|
std::map<int, event_t> events;
|
|
};
|
|
}
|
|
#endif
|