This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-tfe/src/proxy.h

18 lines
357 B
C
Raw Normal View History

#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: */