mirror of
https://github.com/darkk/redsocks.git
synced 2025-08-28 04:35:30 +00:00
12 lines
399 B
C
12 lines
399 B
C
#ifndef SOCKS5_H
|
|
#define SOCKS5_H
|
|
|
|
struct evbuffer *socks5_mkmethods_plain(int do_password);
|
|
struct evbuffer *socks5_mkpassword_plain(const char *login, const char *password);
|
|
const char* socks5_is_known_auth_method(socks5_method_reply *reply, int do_password);
|
|
|
|
|
|
/* vim:set tabstop=4 softtabstop=4 shiftwidth=4: */
|
|
/* vim:set foldmethod=marker foldlevel=32 foldmarker={,}: */
|
|
#endif /* SOCKS5_H */
|