00001 /********************************************************************** 00002 * Copyright 2002 Jeff Rush <jrush@taupro.com> 00003 * Original Copyright 1979-2002 Udanax.com 00004 * 00005 * This file is part of the Udanax xanalogical storage system. 00006 * 00007 * Udanax is free software; you can redistribute it and/or modify it 00008 * under the terms of the GNU General Public License as published by 00009 * the Free Software Foundation; either version 2 of the License, or 00010 * (at your option) any later version. 00011 * 00012 * Udanax is distributed in the hope that it will be useful, but 00013 * WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License 00018 * along with Udanax; if not, write to the Free Software Foundation, 00019 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00020 **********************************************************************/ 00021 00030 /* Modification History: 00031 * $Log: port.h,v $ 00032 * Revision 1.2 2002/05/28 03:58:42 jrush 00033 * Sources modified to comply with GPL licensing. 00034 * 00035 * Revision 1.1 2002/04/12 09:39:59 jrush 00036 * Moved include/port.h to server/port.h 00037 * 00038 * Revision 1.4 2002/02/14 05:40:42 jrush 00039 * Cleaned up source: 00040 * 00041 * 1. ran thru the indent tool to achieve a standard look, 00042 * 2. added structured comments at top for use with DOxygen reporting 00043 * as well as CVS keywords, 00044 * 3. added #ifndef/#defines to prevent duplicate inclusions, 00045 * 4. insured all struct/union defs have names, 00046 * 5. centralized prototypes in protos.h, removing incomplete ones, 00047 * 6. cleaned up use of bool/BOOLEAN type to suit C++ type, 00048 * 7. fixed initializer nesting in tumbler constants. 00049 * 00050 */ 00051 00052 #ifndef __UDANAX_PORT_H__ 00053 #define __UDANAX_PORT_H__ 00054 00055 /* 00056 * ** Port for POKER. */ 00057 00058 # define PORT 55146 00059 # define HOST "localhost" 00060 00061 #endif /* !__UDANAX_PORT_H__*/
1.3.4