mirror of
				https://github.com/KartKrewDev/RingRacers.git
				synced 2025-10-30 08:01:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			989 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			989 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// Emacs style mode select   -*- C++ -*-
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
//
 | 
						|
// MSERV SDK
 | 
						|
//
 | 
						|
// Copyright (C) 1998-2000 by DooM Legacy Team.
 | 
						|
// Adapted by Oogaland.
 | 
						|
//
 | 
						|
// This program is free software; you can redistribute it and/or
 | 
						|
// modify it under the terms of the GNU General Public License
 | 
						|
// as published by the Free Software Foundation; either version 2
 | 
						|
// of the License, or (at your option) any later version.
 | 
						|
//
 | 
						|
// This program is distributed in the hope that it will be useful,
 | 
						|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
// GNU General Public License for more details.
 | 
						|
//
 | 
						|
//
 | 
						|
//
 | 
						|
// DESCRIPTION:
 | 
						|
//      Header file for the TCP/IP routines
 | 
						|
//
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
 | 
						|
 | 
						|
#ifndef _I_TCP_H_
 | 
						|
#define _I_TCP_H_
 | 
						|
 | 
						|
extern int sock_port;
 | 
						|
 | 
						|
void I_InitTcpDriver(void);
 | 
						|
 | 
						|
#endif	// !defined(_I_TCP_H_)
 |