blob: 82123f2fd823f95cf31ba97e5afcb37f7c0c3dc5 (
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
|
#ifndef ISOCKETCONNECTION_H_
#define ISOCKETCONNECTION_H_
#include <vector>
class ISocketConnection {
public:
ISocketConnection() {}
virtual ~ISocketConnection() {}
virtual void write(int i) = 0;
virtual unsigned char read() = 0;
virtual void flush() = 0;
virtual void write(const std::vector<unsigned char>& b, int length) = 0;
virtual void write(const std::vector<unsigned char>& bytes, int offset, int length) = 0;
virtual int read(unsigned char*, int length) = 0;
virtual int read(std::vector<unsigned char>& b, int off, int length) = 0;
virtual void makeNonBlock() = 0;
virtual int waitForRead() = 0;
virtual void forceShutdown() = 0;
virtual void dump(const void *buf, int length) = 0;
virtual void log(const char *str) = 0;
};
#endif /* ISOCKETCONNECTION_H_ */
|