summaryrefslogtreecommitdiff
path: root/include/socket.h
blob: 051d9a4533f9f845bf8be7d12eb86df8dd2f3b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*       +------------------------------------+
 *       | Inspire Internet Relay Chat Daemon |
 *       +------------------------------------+
 *
 *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
 *                       E-mail:
 *                <brain@chatspike.net>
 *           	  <Craig@chatspike.net>
 *     
 * Written by Craig Edwards, Craig McLure, and others.
 * This program is free but copyrighted software; see
 *            the file COPYING for details.
 *
 * ---------------------------------------------------
 */

#ifndef __INSP_SOCKET_H__
#define __INSP_SOCKET_H__

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

enum InspSocketState { I_DISCONNECTED, I_CONNECTING, I_CONNECTED, I_LISTENING, I_ERROR };
enum InspSocketError { I_ERR_TIMEOUT, I_ERR_SOCKET, I_ERR_CONNECT };

class InspSocket
{
private:
        int fd;
	std::string host;
	int port;
	InspSocketState state;
        sockaddr_in addr;
        in_addr addy;
        time_t timeout_end;
        bool timeout;
	pollfd polls;
	char ibuf[1024];
public:
	InspSocket();
	InspSocket(std::string host, int port, bool listening, unsigned long maxtime);
	virtual bool OnConnected();
	virtual void OnError(InspSocketError e);
	virtual int OnDisconnect();
	virtual bool OnDataReady();
	virtual void OnTimeout();
	virtual void OnClose();
	virtual char* Read();
	virtual int Write(std::string data);
	virtual int OnIncomingConnection();
	void SetState(InspSocketState s);
	bool Poll();
	virtual void Close();
	virtual ~InspSocket();
};

#endif