]> git.proxmox.com Git - mirror_ovs.git/blame - lib/ofp-util.def
nicira-ext: New action "exit".
[mirror_ovs.git] / lib / ofp-util.def
CommitLineData
e23ae585
BP
1/* -*- c -*- */
2
3#ifndef OFPAT_ACTION
4#define OFPAT_ACTION(ENUM, STRUCT, NAME)
5#endif
6OFPAT_ACTION(OFPAT_OUTPUT, ofp_action_output, "output")
7OFPAT_ACTION(OFPAT_SET_VLAN_VID, ofp_action_vlan_vid, "mod_vlan_vid")
8OFPAT_ACTION(OFPAT_SET_VLAN_PCP, ofp_action_vlan_pcp, "mod_vlan_pcp")
9OFPAT_ACTION(OFPAT_STRIP_VLAN, ofp_action_header, "strip_vlan")
10OFPAT_ACTION(OFPAT_SET_DL_SRC, ofp_action_dl_addr, "mod_dl_src")
11OFPAT_ACTION(OFPAT_SET_DL_DST, ofp_action_dl_addr, "mod_dl_dst")
12OFPAT_ACTION(OFPAT_SET_NW_SRC, ofp_action_nw_addr, "mod_nw_src")
13OFPAT_ACTION(OFPAT_SET_NW_DST, ofp_action_nw_addr, "mod_nw_dst")
14OFPAT_ACTION(OFPAT_SET_NW_TOS, ofp_action_nw_tos, "mod_nw_tos")
15OFPAT_ACTION(OFPAT_SET_TP_SRC, ofp_action_tp_port, "mod_tp_src")
16OFPAT_ACTION(OFPAT_SET_TP_DST, ofp_action_tp_port, "mod_tp_dst")
17OFPAT_ACTION(OFPAT_ENQUEUE, ofp_action_enqueue, "enqueue")
18#undef OFPAT_ACTION
19
20#ifndef NXAST_ACTION
21#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)
22#endif
23NXAST_ACTION(NXAST_RESUBMIT, nx_action_resubmit, 0, "resubmit")
24NXAST_ACTION(NXAST_SET_TUNNEL, nx_action_set_tunnel, 0, "set_tunnel")
25NXAST_ACTION(NXAST_SET_QUEUE, nx_action_set_queue, 0, "set_queue")
26NXAST_ACTION(NXAST_POP_QUEUE, nx_action_pop_queue, 0, "pop_queue")
27NXAST_ACTION(NXAST_REG_MOVE, nx_action_reg_move, 0, "move")
28NXAST_ACTION(NXAST_REG_LOAD, nx_action_reg_load, 0, "load")
29NXAST_ACTION(NXAST_NOTE, nx_action_note, 1, "note")
30NXAST_ACTION(NXAST_SET_TUNNEL64, nx_action_set_tunnel64, 0, "set_tunnel64")
31NXAST_ACTION(NXAST_MULTIPATH, nx_action_multipath, 0, "multipath")
32NXAST_ACTION(NXAST_AUTOPATH, nx_action_autopath, 0, "autopath")
33NXAST_ACTION(NXAST_BUNDLE, nx_action_bundle, 1, "bundle")
34NXAST_ACTION(NXAST_BUNDLE_LOAD, nx_action_bundle, 1, "bundle_load")
35NXAST_ACTION(NXAST_RESUBMIT_TABLE, nx_action_resubmit, 0, NULL)
36NXAST_ACTION(NXAST_OUTPUT_REG, nx_action_output_reg, 0, NULL)
75a75043 37NXAST_ACTION(NXAST_LEARN, nx_action_learn, 1, "learn")
848e8809 38NXAST_ACTION(NXAST_EXIT, nx_action_header, 0, "exit")
e23ae585 39#undef NXAST_ACTION