Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: cheungtifan on Jun 14th, 2012  |  syntax: JavaScript  |  size: 0.20 KB  |  hits: 29  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. function addIP(src_ip, dst_ip, src_geo, dst_geo)
  2. {
  3.     addMarker(src_geo);
  4.     addMarker(dst_geo);
  5.     addLine(src_geo, dst_geo);
  6.     addText(src_geo, "Source: " + src_ip + ", Destination: " + dst_ip);
  7. }