Skip to content

Commit

Permalink
Merge pull request #69 from JNU-econovation/fix_arp_log
Browse files Browse the repository at this point in the history
fix: Arp 로그 맥과 아이피 거꾸로 저장되는 버그 수정
  • Loading branch information
inferior3x authored Dec 1, 2024
2 parents 0723b93 + 2cc627b commit 03eeaaf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public boolean validate(String log){

public ManagedLog parse(String log){
String[] splited = log.split("\t");

return new ManagedLog(splited[0], splited[1], null);
//ip mac devicename
return new ManagedLog(splited[1], splited[0], null);
}
}

0 comments on commit 03eeaaf

Please sign in to comment.