|
|||
|
|||
|
#include <vector>#include <string>#include <map>#include "inspircd_config.h"#include "base.h"Include dependency graph for socketengine.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Classes | |
| class | EventHandler |
| This class is a basic I/O handler class. More... | |
| class | SocketEngine |
| Provides basic file-descriptor-based I/O support. More... | |
Enumerations | |
| enum | EventType { EVENT_READ = 0, EVENT_WRITE = 1, EVENT_ERROR = 2 } |
| Types of event an EventHandler may receive. More... | |
|
|
Types of event an EventHandler may receive. EVENT_READ is a readable file descriptor, and EVENT_WRITE is a writeable file descriptor. EVENT_ERROR can always occur, and indicates a write error or read error on the socket, e.g. EOF condition or broken pipe. Definition at line 30 of file socketengine.h. 00031 { 00033 EVENT_READ = 0, 00035 EVENT_WRITE = 1, 00037 EVENT_ERROR = 2 00038 };
|