/* * $Source$ * $Author$ * $Header$ * * Copyright (C) 1987 by the Massachusetts Institute of Technology * * $Log$ * Revision 1.2 1987-06-28 05:28:18 spook * Added domain name to 'sms'... * * Revision 1.1 87/06/16 17:48:47 wesommer * Initial revision * */ #include #include #include typedef struct sms_params { u_long sms_size; u_long sms_version_no; union { u_long procno; /* for call */ u_long status; /* for reply */ } u; #define sms_procno u.procno #define sms_status u.status int sms_argc; char **sms_argv; int *sms_argl; char *sms_flattened; int sms_state; } sms_params; extern int sms_start_recv(), sms_start_send(); #define SMS_GDB_SERV "sms.mit.edu:sms_db" /* * Local Variables: * mode: c * c-indent-level: 4 * c-continued-statement-offset: 4 * c-brace-offset: -4 * c-argdecl-indent: 4 * c-label-offset: -4 * End: */