/****************************************************************/
/**                                                            **/
/**   Direct Communication Chat and Conferencing System        **/
/**   Created May 1993 out of complete boredom.                **/
/**   (c) 1993 Takoyaki Software Ltd.                          **/
/**                                                            **/
/**   Will only run in conjunction with Desqview/X.            **/
/**                                                            **/
/**   File:    SOCKVARS.H                                      **/
/**                                                            **/
/****************************************************************/

#define SOCKTIMEOUT 10
#define SOCKRETRIES 150

#define PACKETSIZE 250

struct packet
	{
	struct packet *next;
	struct packet *prev;
	unsigned long retries;
	unsigned long id;
	unsigned long timeout;
	char * mailbox;
	char *data;
	};


