mirror of
https://github.com/opnsense/src.git
synced 2026-03-03 13:51:30 -05:00
16 lines
455 B
C
16 lines
455 B
C
/*-
|
|
* The code in this file was written by Eivind Eklund <perhaps@yes.no>,
|
|
* who places it in the public domain without restriction.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
struct cmdargs;
|
|
|
|
extern int nat_RedirectPort(struct cmdargs const *);
|
|
extern int nat_RedirectAddr(struct cmdargs const *);
|
|
extern int nat_ProxyRule(struct cmdargs const *);
|
|
extern int nat_Pptp(struct cmdargs const *);
|
|
extern int nat_SetTarget(struct cmdargs const *);
|
|
|
|
extern struct layer natlayer;
|