summaryrefslogtreecommitdiff
path: root/apps/drwho/global.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/drwho/global.h')
-rw-r--r--apps/drwho/global.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/apps/drwho/global.h b/apps/drwho/global.h
deleted file mode 100644
index d049bd3f43d..00000000000
--- a/apps/drwho/global.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// drwho
-//
-// = FILENAME
-// global.h
-//
-// = DESCRIPTION
-// Here are all the declarations that are needed throughout the program. */
-//
-// = AUTHOR
-// Douglas C. Schmidt
-//
-// ============================================================================
-
-#ifndef _GLOBAL_H
-#define _GLOBAL_H
-
-#include "ace/OS.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-// These constants are used throughout drwho.
-
-enum
-{
- MAXUSERIDNAMELEN = 8,
- MAX_USER_TIMEOUT = 300,
- MAX_HOST_TIMEOUT = 300,
- UDP_PACKET_SIZE = 1024 * 8,
- PORT_NUMBER = 12344
-};
-
-// Default name of file where friends info is stored.
-#define FRIEND_FILE ".friends.dta"
-
-// Default name where rwho info is stored.
-#define RWHODIR "/usr/spool/rwho"
-
-// Macros for handling message types.
-#define GET_PACKET_TYPE(P) (ntohs (*((short *) P)))
-#define SET_PACKET_TYPE(P,T) ((*(short *) P) = ntohs (T))
-#define SKIP_PACKET_TYPE(P) ((P) + sizeof (short))
-#define SUBTRACT_PACKET_TYPE(L) ((L) - sizeof (short))
-
-#endif /* _GLOBAL_H */