1 /****************************************************************************** 2 (c) 2000-2004 Christine Caulfield christine.caulfield@googlemail.com 3 4 This program is free software; you can redistribute it and/or modify 5 it under the terms of the GNU General Public License as published by 6 the Free Software Foundation; either version 2 of the License, or 7 any later version. 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License for more details. 13 ******************************************************************************/ 14 15 /* Definitions of LATCP commands */ 16 17 const int LATCP_STARTLAT = 1; 18 const int LATCP_SHUTDOWN = 2; 19 const int LATCP_SETRESPONDER = 3; 20 const int LATCP_SETRATING = 4; 21 const int LATCP_SETNODENAME = 5; 22 const int LATCP_SETMULTICAST = 6; 23 const int LATCP_ZEROCOUNTS = 7; 24 const int LATCP_VERSION = 8; 25 const int LATCP_ADDSERVICE = 9; 26 const int LATCP_REMSERVICE = 10; 27 const int LATCP_SHOWCHAR = 11; 28 const int LATCP_SHOWSERVICE = 12; 29 const int LATCP_ADDPORT = 14; 30 const int LATCP_REMPORT = 15; 31 const int LATCP_ACK = 16; 32 const int LATCP_SETRETRANS = 17; 33 const int LATCP_SETKEEPALIVE = 18; 34 const int LATCP_UNLOCK = 19; 35 const int LATCP_SETIDENT = 20; 36 const int LATCP_PURGE = 21; 37 const int LATCP_SETSERVERGROUPS = 22; 38 const int LATCP_UNSETSERVERGROUPS = 23; 39 const int LATCP_SETUSERGROUPS = 24; 40 const int LATCP_UNSETUSERGROUPS = 25; 41 const int LATCP_TERMINALSESSION = 26; 42 const int LATCP_SHOWNODES = 27; 43 const int LATCP_ERRORMSG = 99; // Fatal 44 45 46 47