18 lines
357 B
C
18 lines
357 B
C
|
|
|
||
|
|
#ifndef PROXY_H
|
||
|
|
#define PROXY_H
|
||
|
|
|
||
|
|
#include "opts.h"
|
||
|
|
#include "attrib.h"
|
||
|
|
|
||
|
|
typedef struct tfe_proxy tfe_proxy;
|
||
|
|
|
||
|
|
tfe_proxy * tfe_proxy_new(struct tfe_config *) NONNULL(1) MALLOC;
|
||
|
|
void tfe_proxy_run(tfe_proxy *) NONNULL(1);
|
||
|
|
void proxy_loopbreak(tfe_proxy *) NONNULL(1);
|
||
|
|
void proxy_free(tfe_proxy *) NONNULL(1);
|
||
|
|
|
||
|
|
#endif /* !PROXY_H */
|
||
|
|
|
||
|
|
/* vim: set noet ft=c: */
|