Skip to content
Snippets Groups Projects
Commit 5a4c767e authored by Alex Reimers's avatar Alex Reimers
Browse files

Fix a typo that incorrectly identified the TCP/UDP dst port in Static Flow Pusher's DB tables.

parent 8443d519
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ public class StaticFlowEntryPusher
// netmask, e.g.
// "128.8.128.0/24"
public static final String COLUMN_NW_DST = "nw_dst";
public static final String COLUMN_TP_DST = "tp_src";
public static final String COLUMN_TP_DST = "tp_dst";
public static final String COLUMN_TP_SRC = "tp_src";
public static final String COLUMN_ACTIONS = "actions";
public static String ColumnNames[] = { COLUMN_NAME, COLUMN_SWITCH,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment