Skip to content

Commit

Permalink
ShowScannedStationsStatistics Improvement
Browse files Browse the repository at this point in the history
ShowScannedStationsStatistics Improvement, shows if the non-Wi-5
equipment is AP or STA using FROM_DS flag
  • Loading branch information
rubenmunilla committed Jul 25, 2017
1 parent e4574d0 commit c87481d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,13 @@ public void run() {
if (isWi5Lvap) {
continue;
}
System.out.println("\t\tAP of client: none");
System.out.println("\t\tChannel of AP: none");
System.out.println("\t\tCode: non-Wi-5 Equipment");
System.out.println("\t\tAP of client: unknown");
System.out.println("\t\tChannel of AP: unknown");
if(vals_entry_rx.getValue().get("equipment").equals("AP")){
System.out.println("\t\tCode: non-Wi-5 AP");
}else{
System.out.println("\t\tCode: non-Wi-5 STA");
}
System.out.println("");
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ class OdinAgent implements IOdinAgent {
private final String detectionAgentIP = setDetectorIpAddress();
private static final String DETECTION_AGENT_ELEMENT = "detectionagent";

private final int TX_STAT_NUM_PROPERTIES = 7;
private final int RX_STAT_NUM_PROPERTIES = 7;
private final int TX_STAT_NUM_PROPERTIES = 8;
private final int RX_STAT_NUM_PROPERTIES = 8;
private final int MTX_DISTANCE_RX_STAT_NUM_PROPERTIES = 1;
private final int ODIN_AGENT_PORT = 6777;

Expand Down

0 comments on commit c87481d

Please sign in to comment.