summaryrefslogtreecommitdiff
path: root/apps/drwho/Comm_Manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/drwho/Comm_Manager.h')
-rw-r--r--apps/drwho/Comm_Manager.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/apps/drwho/Comm_Manager.h b/apps/drwho/Comm_Manager.h
deleted file mode 100644
index 0dfd6b7c72e..00000000000
--- a/apps/drwho/Comm_Manager.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// drwho
-//
-// = FILENAME
-// Comm_Manager.h
-//
-// = AUTHOR
-// Douglas C. Schmidt
-//
-// ============================================================================
-
-#if !defined (_COMM_MANAGER_H)
-#define _COMM_MANAGER_H
-
-#include "global.h"
-
-class Comm_Manager
-{
- // = 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 */