home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / header45.zip / socks.h < prev    next >
Text File  |  1999-05-11  |  4KB  |  97 lines

  1. /*-----------------------------------------------------------------
  2. Copyright (c) 1989 Regents of the University of California.
  3. All rights reserved.
  4.  
  5. Redistribution and use in source and binary forms, with or without
  6. modification, are permitted provided that the following conditions
  7. are met:
  8. 1. Redistributions of source code must retain the above copyright
  9.    notice, this list of conditions and the following disclaimer.
  10. 2. Redistributions in binary form must reproduce the above copyright
  11.    notice, this list of conditions and the following disclaimer in the
  12.    documentation and/or other materials provided with the distribution.
  13. 3. All advertising materials mentioning features or use of this software
  14.    must display the following acknowledgement:
  15.         This product includes software developed by the University of
  16.         California, Berkeley and its contributors.
  17. 4. Neither the name of the University nor the names of its contributors
  18.    may be used to endorse or promote products derived from this software
  19.    without specific prior written permission.
  20.  
  21. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27. OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30. OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. SUCH DAMAGE.
  32.  
  33. -----------------------------------------------------------------
  34. Portions Copyright (c) 1993, 1994 by NEC Systems Laboratory.
  35.  
  36. Permission to use, copy, modify, and distribute this software for
  37. any purpose with or without fee is hereby granted, provided that
  38. the above copyright notice and this permission notice appear in all
  39. copies, and that the name of NEC Systems Laboratory not be used in
  40. advertising or publicity pertaining to distribution of the document
  41. or software without specific, written prior permission.
  42.  
  43. THE SOFTWARE IS PROVIDED ``AS IS'' AND NEC SYSTEMS LABORATORY DISCLAIMS
  44. ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
  45. WARRANTIES OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL NEC
  46. SYSTEMS LABORATORY BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
  47. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  48. OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  49. OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  50. OR PERFORMANCE OF THIS SOFTWARE.
  51.  
  52. -----------------------------------------------------------------*/
  53. #include <netinet\in.h>
  54.  
  55. /*
  56.  * Default port number for SOCKS services.
  57.  */
  58. #define SOCKS_DEF_PORT  1080
  59.  
  60. /* Current SOCKS protocol version */
  61. #define SOCKS_VERSION   4
  62.  
  63. /*
  64. **  Response commands/codes
  65. */
  66. #define SOCKS_CONNECT   1
  67. #define SOCKS_BIND      2
  68. #define SOCKS_RESULT    90
  69. #define SOCKS_FAIL      91
  70. #define SOCKS_NO_IDENTD 92 /* Failed to connect to Identd on client machine */
  71. #define SOCKS_BAD_ID    93 /* Client's Identd reported a different user-id */
  72.  
  73. typedef unsigned long u_int32;
  74.  
  75. typedef struct {
  76.         u_int32                 host; /* in network byte order */
  77.         unsigned short          port; /* in network byte oreder */
  78.         unsigned char           version;
  79.         unsigned char           cmd;
  80. } Socks_t;
  81.  
  82. typedef struct socksdata {
  83.    /* the following feilds are for socks */
  84.    char * socks_server;
  85.    char * socks_serverlist;
  86.    int direct;
  87.    struct sockaddr_in cursin;
  88.    int socks_conn_sock;
  89.    unsigned short socks_port;
  90.    unsigned short socks_conn_port;
  91.    unsigned short socks_last_conn_port;
  92.    unsigned long  socks_conn_host;
  93.    unsigned long  socks_last_conn_host;
  94.    struct sockaddr_in socks_nsin;
  95.    struct sockaddr_in me;
  96. } SD;
  97.