mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-05 10:09:30 +00:00
Fix result of some mechanical change that I did some time ago, when
writing this node.
This commit is contained in:
parent
abc010b6a0
commit
b0dc008358
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=163297
@ -86,14 +86,14 @@ NETGRAPH_INIT(nat, &typestruct);
|
||||
MODULE_DEPEND(ng_nat, libalias, 1, 1, 1);
|
||||
|
||||
/* Information we store for each node. */
|
||||
struct ng_priv_priv {
|
||||
struct ng_nat_priv {
|
||||
node_p node; /* back pointer to node */
|
||||
hook_p in; /* hook for demasquerading */
|
||||
hook_p out; /* hook for masquerading */
|
||||
struct libalias *lib; /* libalias handler */
|
||||
uint32_t flags; /* status flags */
|
||||
};
|
||||
typedef struct ng_priv_priv *priv_p;
|
||||
typedef struct ng_nat_priv *priv_p;
|
||||
|
||||
/* Values of flags */
|
||||
#define NGNAT_READY 0x1 /* We have everything to work */
|
||||
|
Loading…
Reference in New Issue
Block a user