def loxi_apply_actions_to_ofp_instruction(lo): return pb2.ofp_instruction( type=pb2.OFPIT_APPLY_ACTIONS, actions=pb2.ofp_instruction_actions( actions=[to_grpc(a) for a in lo.actions]))
def loxi_apply_actions_to_ofp_instruction(lo): return pb2.ofp_instruction(type=pb2.OFPIT_APPLY_ACTIONS, actions=pb2.ofp_instruction_actions( actions=[to_grpc(a) for a in lo.actions]))
def loxi_write_actions_to_ofp_instruction(lo): return pb2.ofp_instruction(type=pb2.OFPIT_WRITE_ACTIONS, actions=pb2.ofp_instruction_actions( actions=[to_grpc(a) for a in lo.actions]))