diff options
author | Michael Larson <slioch@eng-140.vyatta.com> | 2008-03-20 09:54:56 -0700 |
---|---|---|
committer | Michael Larson <slioch@eng-140.vyatta.com> | 2008-03-20 09:54:56 -0700 |
commit | db3ccf7834617fa5f278e512bb73b831acb407d3 (patch) | |
tree | bcf07c7f52890a76070e08e6c59dbc7da7a1a4a9 /src/lbdata.hh | |
parent | e1bc4714fd3049d928c8aa106ab698d51a5d315a (diff) | |
download | vyatta-wanloadbalance-db3ccf7834617fa5f278e512bb73b831acb407d3.tar.gz vyatta-wanloadbalance-db3ccf7834617fa5f278e512bb73b831acb407d3.zip |
modified configuration to mirror nat/firewall for port/address configuration. added port configuration support for common port
configuration validation. still needs additional validation for address configuration.
Diffstat (limited to 'src/lbdata.hh')
-rw-r--r-- | src/lbdata.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lbdata.hh b/src/lbdata.hh index 5072459..627507c 100644 --- a/src/lbdata.hh +++ b/src/lbdata.hh @@ -29,12 +29,12 @@ class LBRule { public: string _proto; string _s_addr; - string _s_net; string _s_port; + string _s_port_ipt; string _d_addr; - string _d_net; string _d_port; + string _d_port_ipt; InterfaceDistColl _iface_dist_coll; }; |