/* ESDEFS.H   --   Common definitions for client and server. */


/* most of these defines should probably be in a header file so that they can 
   be included with the clients and server and modified in one place */

#define CR		'\015'
#define LF		'\012'
#define DLM		':'
/* #define EOM             ".\015\012"     */         /* dmh */
#define EOM             "$$EOM$$"                     /* dmh */
#define EOM_LEN         7                             /* dmh */
#define CRLF            "\015\012"
#define SBUFLEN		1000
#define FALSE           0
#define TRUE            1
#define HDR_SIZE        70
#define terminator(str) (!strncmp(str, EOM, EOM_LEN))
#define ES_SERVICE "rcmd"     /* for now anyways, might change this and 
				 get a new srvtab before going to production */
#define ES_SERVER "MITVMC.MIT.EDU" 
#define ES_OPEN   "MITVMC.MIT.EDU" /* for test on MITVMA with MITVMC srvtab */
#define ES_PORT   "9000"
#define PORT       9000            /* SERVER.C wants it as integer */

