#ifndef TCPCONN_H #define TCPCONN_H /* * TCP/IP routines * * Bug reports should be sent to * * harald@os2point.ping.de * harald@haport.sesam.com * Fido: 2:2448/434 * */ #define ENABLE_RLOG 1 #define ENABLE_SLOG 2 extern void so_setlog(int f); extern int get_tcp_conn(char *host, char *serv); extern int so_puts(int s, char *line); extern int _cdecl so_printf(int s, char *format,...); extern int recv_line(int s, char *pline); extern int recv_bline(int s, char *pline); #endif