mirror of
https://github.com/moparisthebest/socat
synced 2024-11-16 05:55:11 -05:00
39 lines
1.2 KiB
C
39 lines
1.2 KiB
C
/* source: xio-socks.h */
|
|
/* Copyright Gerhard Rieger 2001-2007 */
|
|
/* Published under the GNU General Public License V.2, see file COPYING */
|
|
|
|
#ifndef __xio_socks_h_included
|
|
#define __xio_socks_h_included 1
|
|
|
|
#define SIZEOF_STRUCT_SOCKS4 sizeof(struct socks4head)
|
|
|
|
struct socks4request {
|
|
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;
|
|
|
|
extern const union xioaddr_desc *xioaddrs_socks4_connect[];
|
|
extern const union xioaddr_desc *xioaddrs_socks4a_connect[];
|
|
|
|
extern int _xioopen_socks4_prepare(const char *targetport, struct opt *opts, char **socksport, struct socks4request *sockhead, size_t *headlen);
|
|
extern int
|
|
_xioopen_socks4_connect0(struct single *xfd,
|
|
const char *hostname, /* socks target host */
|
|
int socks4a,
|
|
struct socks4request *sockhead,
|
|
ssize_t *headlen, /* get available space,
|
|
return used length*/
|
|
int level);
|
|
extern int _xioopen_socks4_connect(struct single *xfd,
|
|
struct socks4request *sockhead,
|
|
size_t headlen,
|
|
int level);
|
|
|
|
#endif /* !defined(__xio_socks_h_included) */
|