irssi/src/core/network-proxy-socks5.h
2014-10-03 23:30:37 +02:00

16 lines
286 B
C

#ifndef H_IRSSI_SRC_CORE_PROXY_SOCKS5_H
#define H_IRSSI_SRC_CORE_PROXY_SOCKS5_H
#include "network-proxy.h"
struct _network_proxy_socks5 {
struct network_proxy proxy;
const char *username;
const char *password;
};
struct network_proxy *_network_proxy_socks5_create(void);
#endif