Exemplo n.º 1
0
def p_bgp_2(p):
    """
    bgp : FILTER LPAR expression RPAR
    """
    p[0] = Filter(p[3])
Exemplo n.º 2
0
def p_bgp_3(p):
    """
    bgp : FILTER express_rel 
    """
    p[0] = Filter(p[2])
Exemplo n.º 3
0
def p_bgp_service_3(p):
    """
    bgp_service : FILTER express_rel 
    """
    p[0] = Filter(p[2])