head 1.1; access; symbols; locks alexis:1.1; strict; comment @ * @; 1.1 date 97.01.31.14.43.34; author alexis; state Exp; branches; next ; desc @MILEPOST - MAY NOT WORK @ 1.1 log @Initial revision @ text @#include /* needed for NULL */ #include "pppld_msgids.h" /* needed for struct def */ /* * This data structure contains various message IDs and their number * of parameters. It is not specifically associated with the pppld * server. Since it is referenced from other files that don't know * the overall size of the array, it is important that the last element * is a 'end-of-data' marker. */ static char *rcs_id = "$Id$"; struct msginfrec svrmsginfdat[] = { { MSGID_EXEC_PPPD, 0, "exec pppd" }, { MSGID_OK_PPPD, 0, "ok pppd" }, { MSGID_NOK_PPPD, 0, "nok pppd" }, { MSGID_SET_QUIT, 0, "set quit" }, { MSGID_EXEC_IPUP, 0, "exec ipup" }, { MSGID_EXEC_QTEST, 0, "ok qtest" }, { MSGID_OK_QTEST, 0, "ok qtest" }, { MSGID_NOK_QTEST, 0, "nok qtest" }, { MSGID_EXEC_SNDMAIL, 0, "exec sndmail" }, { MSGID_OK_SNDMAIL, 0, "ok sndmail" }, { MSGID_NOK_SNDMAIL, 0, "nok sndmail" }, { MSGID_EXEC_SNDNEWS, 0, "exec sndnews" }, { MSGID_OK_SNDNEWS, 0, "ok sndnews" }, { MSGID_NOK_SNDNEWS, 0, "nok sndnews" }, { MSGID_EXEC_GETMAIL, 0, "exec getmail" }, { MSGID_OK_GETMAIL, 0, "ok getmail" }, { MSGID_NOK_GETMAIL, 0, "nok getmail" }, { MSGID_EXEC_GETNEWS, 0, "exec getnews" }, { MSGID_OK_GETNEWS, 0, "ok getnews" }, { MSGID_NOK_GETNEWS, 0, "nok getnews" }, { MSGID_EXEC_IDLECHECK, 0, "exec idle" }, { MSGID_OK_IDLECHECK, 0, "ok idle" }, { MSGID_NOK_IDLECHECK, 0, "nok idle" }, { MSGID_EXEC_IPDOWN, 0, "exec ipdown" }, { MSGID_SET_IDLECHECK, 0, "set idlecheck" }, { MSGID_SET_QUALITYCHECK, 1, "set qcheck" }, { MSGID_SET_DONEWS, 0, "set donews" }, { MSGID_UNSET_IDLECHECK, 0, "unset idlecheck" }, { MSGID_UNSET_QUALITYCHECK, 0, "unset qcheck" }, { MSGID_UNSET_DONEWS, 0, "unset donews" }, { MSGID_NOACTION, 0, "no action" }, { MSGID_HANGUP, 0, "hangup" }, { MSGID_REDIAL, 0, "redial" }, { MSGID_INFO, 1, "info" }, { MSGID_LOAD_CONFIG, 0, "load config" }, { MSGID_SET_DEBUG, 1, "set debug" }, { MSGID_LAST_MARKER, 0, NULL } }; @