aboutsummaryrefslogtreecommitdiffstats
path: root/src/ssl/socket.h
blob: 62ceed028464fbee5fe9182e7856f0705312db01 (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
/**
* Socket Interface 
* (C) 2004-2006 Jack Lloyd
*
* Released under the terms of the Botan license
*/

#ifndef BOTAN_TLS_SOCKET_H__
#define BOTAN_TLS_SOCKET_H__

#include <botan/types.h>
#include <string>

namespace Botan {

/**
* Socket Base Class
*/
class BOTAN_DLL Socket
   {
   public:
      virtual size_t read(byte[], size_t) = 0;
      virtual void write(const byte[], size_t) = 0;

      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