Here you can find the source of getSYNTimeSeconds()
public static double getSYNTimeSeconds()
//package com.java2s; public class Main { /**//from w w w . j av a 2 s.com * get the SYN time in seconds. The SYN time is 0.01 seconds = 10000 microseconds * @return */ public static double getSYNTimeSeconds() { return 0.01; } }