[go: up one dir, main page]

Menu

[r15]: / gtimer / trunk / tcpt.h  Maximize  Restore  History

Download this file

111 lines (99 with data), 2.5 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
/*
**
** Classification: UNCLASSIFIED
**
** Copyright: (c) Copyright 1995 IBM Corporation
** This program is protected by the copyright law as an
** unpublished work.
**
** RCS Info: $Date: 1995/11/27 15:27:46 $ $Revision: 1.1 $
**
** $Id: Header.h,v 1.1 1995/11/27 15:27:46 baseline Exp $
**
** Filename: $Source: /Minerva/testing/minerva/src/templates/RCS/Header.h,v $
**
** Originator: Craig Knudsen
** t/l 335-6068
** knudsen@dev.infomkt.ibm.com
**
** Organization: IBM Corporation / infoMarket
** 3190 Fairview Park Drive
** Falls Church, VA 22042
** Ph: (703)205-5600 FAX: (703)205-5691
**
** Description:
**
** NewsTicker include file.
** Include file for using tcpt routines.
** Attempt to resolve some of the issues with dealing with
** winsock. See tcpt.c for more info on usage.
** Define sockfd to be an int on UNIX and SOCKET on Win32.
**
** Limitations:
**
** 1. None.
**
** Modification History:
**
** 12-Mar-96 cek Created
**
******************************************************************************/
#ifndef _TCPT_H
#define _TCPT_H
/*
** Define some handy definitions.
*/
#ifdef WIN32
#define sockfd SOCKET
#else
#define closesocket close
#define sockfd int
#endif
/*
** Error values
*/
typedef enum {
TCPT_NO_ERROR = 0,
TCPT_INIT_ERROR = 1,
TCPT_SOCKET_ERROR = 2,
TCPT_CONNECT_ERROR = 3,
TCPT_SOCKS_CONNECT_ERROR = 4,
TCPT_SOCKS_CONNECT_REFUSED = 5,
TCPT_INVALID_SOCKS_HOST = 6,
TCPT_SOCKS_CONNECT_TIMEOUT = 7,
TCPT_SOCKS_CONNECTION_REFUSED = 8,
TCPT_CONNECTION_REFUSED = 9
} tcptError;
/*
** tcptErrorString - Translate a tcptError into a text string.
*/
char *tcptErrorString (
#ifndef _NO_PROTO
tcptError error_num
#endif
);
/*
** tcptInit - Initialize the TCP/IP stack. Not needed in UNIX.
*/
tcptError tcptInit ();
/*
** tcptConnect - Connect a TCP/IP socket. Uses SOCKS if enabled.
*/
/*tcptError tcptConnect ( int sock, struct sockaddr *server, int size );*/
/*
** tcptCleanup - Shutdown the TCP/IP stack. Does nothing in UNIX.
*/
tcptError tcptCleanup ();
/*
** tcptEnableSocks - Enable the SOCKS server
*/
tcptError tcptEnableSocks (
#ifndef _NO_PROTO
char *server, int port
#endif
);
/*
** tcptDisableSocks - Disable the SOCKS server
*/
tcptError tcptDisableSocks ();
#endif /* _TCPT_H */