ip-lib.h
上传用户:julian
上传日期:2007-01-04
资源大小:22k
文件大小:1k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.     File: tcpproxy/ip-lib.h
  3.     Version: 1.0
  4.     Copyright (C) 1999  Wolfgang Zekoll  <wzk@quietsche-entchen.de>
  5.   
  6.     This software is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation; either version 2 of the License, or
  9.     (at your option) any later version.
  10.   
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.   
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program; if not, write to the Free Software
  18.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20. #ifndef _IP_LIB_INCLUDED
  21. #define _IP_LIB_INCLUDED
  22. extern char *program;
  23. extern int ip_lib_error;
  24. char *get_error(int code);
  25. FILE *ip_open(char *server, unsigned int port);
  26. unsigned int getportnum(char *name);
  27. unsigned int get_port(char *server, unsigned int def_port);
  28. int bind_to_port(char *interface, unsigned int port);
  29. int accept_loop(int sock);
  30. #endif