doc: use code snippets in sample app guides
[dpdk.git] / examples / qos_meter / main.h
index ab20151..864f019 100644 (file)
@@ -12,12 +12,14 @@ enum policer_action {
                DROP = 3,
 };
 
+/* Policy implemented as a static structure. 8< */
 enum policer_action policer_table[RTE_COLORS][RTE_COLORS] =
 {
        { GREEN, RED, RED},
        { DROP, YELLOW, RED},
        { DROP, DROP, RED}
 };
+/* >8 End of policy implemented as a static structure. */
 
 #if APP_MODE == APP_MODE_FWD