blob: ca358919cbdf7a12e9f0633697850fb0cd86df62 (
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
|
/**
* Socket Interface Header File
* (C) 2004-2006 Jack Lloyd
*
* Released under the terms of the Botan license
*/
#ifndef BOTAN_SOCKET_H__
#define BOTAN_SOCKET_H__
#include <botan/types.h>
#include <string>
namespace Botan {
/**
* Socket Base Class
*/
class BOTAN_DLL Socket
{
public:
virtual u32bit read(byte[], u32bit) = 0;
virtual void write(const byte[], u32bit) = 0;
u32bit read(byte& x) { return read(&x, 1); }
void write(byte x) { write(&x, 1); }
virtual std::string peer_id() const = 0;
virtual void close() = 0;
virtual ~Socket() {}
};
/**
* Server Socket Base Class
*/
class BOTAN_DLL Server_Socket
{
public:
virtual Socket* accept() = 0;
virtual void close() = 0;
virtual ~Server_Socket() {}
};
}
#endif
|