File: connection.hh

package info (click to toggle)
mailfilter 0.8.6-2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 3,280 kB
  • ctags: 2,501
  • sloc: cpp: 2,452; sh: 1,393; ansic: 1,259; lex: 570; yacc: 468; makefile: 167; perl: 72
file content (43 lines) | stat: -rw-r--r-- 1,516 bytes parent folder | download | duplicates (7)
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
// connection.hh - source file for the mailfilter program
// Copyright (c) 2003 - 2009  Andreas Bauer <baueran@gmail.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
// USA.

#ifndef CONNECTION_HH
#define CONNECTION_HH

#include <string>

// Right now this class is only a dummy, but later it can be useful to
// derive, e.g. a Windoze Socks connection class from it.

using namespace std;

class Connection
{
public:
  virtual               ~Connection   (void) { }
  virtual int           c_open        (const char* host_name,
			 	       int port,
				       int time_out,
				       int protocol) = 0;
  virtual int           c_close       (void) const = 0;
  virtual int           c_read        (bool = false) = 0;
  virtual int           c_write       (const char* msg) = 0;
  virtual const string* c_reply       (void) const = 0;
};

#endif