blob: c7e8348b5422c6b3eb8c0914597ecfa5c74ab21c (
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
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// drwho
//
// = FILENAME
// Comm_Manager.h
//
// = AUTHOR
// Douglas C. Schmidt
//
// ============================================================================
#ifndef _COMM_MANAGER_H
#define _COMM_MANAGER_H
#include "global.h"
#include "ace/os_include/netinet/os_in.h"
class Comm_Manager
{
public:
virtual ~Comm_Manager (void);
// = TITLE
// Provides a virtual communcations layer for the drwho program.
protected:
char recv_packet_[UDP_PACKET_SIZE];
char send_packet_[UDP_PACKET_SIZE];
sockaddr_in sin_;
int sokfd_;
virtual int mux (char *packet, int &packet_length) = 0;
virtual int demux (char *packet, int &packet_length) = 0;
virtual int open (short port_number) = 0;
virtual int receive (int timeout = 0) = 0;
virtual int send (void) = 0;
};
#endif /* _COMM_MANAGER_H */
|