mirror of
https://github.com/irssi/irssi.git
synced 2026-08-23 02:22:36 +02:00
14 lines
261 B
C
14 lines
261 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 {
|
|
char *string_after;
|
|
char *string;
|
|
char *password;
|
|
};
|
|
|
|
struct network_proxy *network_proxy_simple_create(void);
|
|
|
|
#endif
|