mirror of
https://github.com/irssi/irssi.git
synced 2026-08-24 11:02:21 +02:00
16 lines
311 B
C
16 lines
311 B
C
#ifndef H_IRSSI_SRC_CORE_PROXY_SIMPLE_H
|
|
#define H_IRSSI_SRC_CORE_PROXY_SIMPLE_H
|
|
|
|
#include "network-proxy.h"
|
|
|
|
struct _network_proxy_simple {
|
|
struct network_proxy proxy;
|
|
|
|
const char *string_after;
|
|
const char *string;
|
|
const char *password;
|
|
};
|
|
|
|
struct network_proxy *_network_proxy_simple_create(void);
|
|
|
|
#endif
|