40 lines
1.1 KiB
C
Executable File
40 lines
1.1 KiB
C
Executable File
/******************************************************************************
|
|
*
|
|
* TCPIP.h - standard Network daemon data definitions
|
|
*
|
|
* Module %M% Version %I% Date %H%
|
|
*
|
|
* (c) Copyright 1998 Ardent Software Inc. - All Rights Reserved
|
|
* This is unpublished proprietary source code of Ardent Software Inc.
|
|
* The copyright notice above does not evidence any actual or intented
|
|
* publication of such source code.
|
|
*
|
|
*******************************************************************************
|
|
*
|
|
* Maintenence log - insert most recent change descriptions at top
|
|
*
|
|
* Date.... GTAR# WHO Description.........................................
|
|
* 10/14/98 23801 SAP Change copyrights.
|
|
* 08/17/90 4944 TMC added netdb.h to includes.h
|
|
* 06/28/89 -- GPS New file
|
|
*
|
|
*****************************************************************************/
|
|
/*
|
|
Following files are used by alfa for TCP/IP
|
|
|
|
<sys/aux/auxtypes.h>
|
|
<sys/h/socket.h>
|
|
<sys/netinet/in.h>
|
|
<sys/arpa/inet.h>
|
|
<netdb.h>
|
|
|
|
*/
|
|
#include SOCKET_H
|
|
#include IN_H
|
|
#include INET_H
|
|
#include NETDB_H
|
|
#define UV_NETPORT 0xace5
|
|
#define SIN_ADDRLEN 16
|
|
#define MAX_LISTEN 5
|
|
|