1
0
mirror of https://github.com/moparisthebest/socat synced 2024-11-15 21:45:05 -05:00
socat/xio-socks.h

39 lines
1.2 KiB
C
Raw Permalink Normal View History

2008-01-28 16:37:16 -05:00
/* source: xio-socks.h */
2008-02-17 08:59:16 -05:00
/* Copyright Gerhard Rieger 2001-2007 */
2008-01-27 07:00:08 -05:00
/* Published under the GNU General Public License V.2, see file COPYING */
#ifndef __xio_socks_h_included
#define __xio_socks_h_included 1
2008-02-17 08:59:16 -05:00
#define SIZEOF_STRUCT_SOCKS4 sizeof(struct socks4head)
struct socks4request {
2008-01-27 07:00:08 -05:00
uint8_t version;
uint8_t action;
uint16_t port;
uint32_t dest;
char userid[1]; /* just to have access via this struct */
} ;
extern const struct optdesc opt_socksport;
extern const struct optdesc opt_socksuser;
2008-02-17 08:59:16 -05:00
extern const union xioaddr_desc *xioaddrs_socks4_connect[];
extern const union xioaddr_desc *xioaddrs_socks4a_connect[];
2008-01-27 07:00:08 -05:00
2008-02-17 08:59:16 -05:00
extern int _xioopen_socks4_prepare(const char *targetport, struct opt *opts, char **socksport, struct socks4request *sockhead, size_t *headlen);
2008-01-27 07:00:08 -05:00
extern int
_xioopen_socks4_connect0(struct single *xfd,
const char *hostname, /* socks target host */
int socks4a,
2008-02-17 08:59:16 -05:00
struct socks4request *sockhead,
2008-01-27 07:00:08 -05:00
ssize_t *headlen, /* get available space,
return used length*/
int level);
extern int _xioopen_socks4_connect(struct single *xfd,
2008-02-17 08:59:16 -05:00
struct socks4request *sockhead,
2008-01-27 07:00:08 -05:00
size_t headlen,
int level);
#endif /* !defined(__xio_socks_h_included) */