diff options
author | archie <archie@FreeBSD.org> | 2000-05-01 23:29:19 +0000 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 2000-05-01 23:29:19 +0000 |
commit | abe77c5239cbe13757b43c35aa32b9af5ea614a3 (patch) | |
tree | 67232cce2d5072dd6c8d278037a1f862498f6002 /sys/netgraph/netgraph.h | |
parent | b2d827cc6bf1568555935963da10224ae1323570 (diff) | |
download | FreeBSD-src-abe77c5239cbe13757b43c35aa32b9af5ea614a3.zip FreeBSD-src-abe77c5239cbe13757b43c35aa32b9af5ea614a3.tar.gz |
Use 'type_name' structure field instead of 'typename', which is
a C++ reserved work.
Add a ng_copy_meta() function.
Diffstat (limited to 'sys/netgraph/netgraph.h')
-rw-r--r-- | sys/netgraph/netgraph.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/netgraph/netgraph.h b/sys/netgraph/netgraph.h index 9c31d3c..25c2d28 100644 --- a/sys/netgraph/netgraph.h +++ b/sys/netgraph/netgraph.h @@ -256,6 +256,7 @@ int ng_bypass(hook_p hook1, hook_p hook2); void ng_cutlinks(node_p node); int ng_con_nodes(node_p node, const char *name, node_p node2, const char *name2); +meta_p ng_copy_meta(meta_p meta); void ng_destroy_hook(hook_p hook); hook_p ng_findhook(node_p node, const char *name); node_p ng_findname(node_p node, const char *name); |