mirror of
https://github.com/irssi/irssi.git
synced 2025-04-25 20:41:23 -05:00
14 lines
254 B
C
14 lines
254 B
C
#ifndef H_IRSSI_SRC_CORE_PROXY_HTTP_H
|
|
#define H_IRSSI_SRC_CORE_PROXY_HTTP_H
|
|
|
|
#include "network-proxy.h"
|
|
|
|
struct _network_proxy_http {
|
|
struct network_proxy proxy;
|
|
const char *password;
|
|
};
|
|
|
|
struct network_proxy *_network_proxy_http_create(void);
|
|
|
|
#endif
|