diff options
Diffstat (limited to 'src/lbdata.hh')
| -rw-r--r-- | src/lbdata.hh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lbdata.hh b/src/lbdata.hh index 532bc2f..5486e8c 100644 --- a/src/lbdata.hh +++ b/src/lbdata.hh @@ -23,7 +23,8 @@ class LBRule { typedef enum {ALL,ICMP,UDP,TCP} Protocol; LBRule() : - _proto("all") + _proto("all"), + _exclude(false) {} public: @@ -36,6 +37,8 @@ class LBRule { string _d_port; string _d_port_ipt; + bool _exclude; + string _in_iface; InterfaceDistColl _iface_dist_coll; }; |
