From 8ab89c9b3b1590765c87dfa920f126a6e49528c3 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Mon, 13 Apr 2009 11:27:48 -0700 Subject: Check for conflicts when match is created This allows moving code out of the qos class code over to where match rules are handled. --- lib/Vyatta/Qos/Match.pm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/Vyatta/Qos/Match.pm b/lib/Vyatta/Qos/Match.pm index 0c45958..765bcb8 100644 --- a/lib/Vyatta/Qos/Match.pm +++ b/lib/Vyatta/Qos/Match.pm @@ -27,12 +27,13 @@ sub new { bless $self, $class; - $self->{_vif} = $config->returnValue("vif"); - $self->{_dev} = getIfIndex($config->returnValue("interface")); - foreach my $ip (qw(ip ipv6)) { next unless $config->exists($ip); + foreach my $t (qw(vif dev)) { + die "can not match on $ip and $t\n" if $config->exists($t); + } + # TODO make this data driven? my %fields; $fields{dsfield} = getDsfield( $config->returnValue("$ip dscp")); @@ -44,6 +45,9 @@ sub new { $self->{$ip} = \%fields; } + $self->{_vif} = $config->returnValue("vif"); + $self->{_dev} = getIfIndex($config->returnValue("interface")); + return $self; } -- cgit v1.2.3