/* Default name for Irit message port */
#define IRIT_SERVER_PORT "Irit"

/* These are the names of two environment variables created and destroyed on
   the fly. They're used to make sure that the server and the client know of
   each other's existence. yes, I know it's a kludge.
*/
#define SERVER_VAR	"IritRunning"
#define CLIENT_VAR	"ClientRunning"

/* max number of bytes contained in a message */
#define MSGSIZE 128

struct IritMessage {
  struct Message msg;
  short		 nbytes;
  unsigned char	 txt[MSGSIZE];
};
