tcp: Change timestamp factor from 1024 to 1000.
It is the conversion factor between the milliseconds tcp time and the microseconds system time, so 1024 does not make much sense.
This commit is contained in:
@@ -321,7 +321,8 @@ enum {
|
||||
};
|
||||
|
||||
|
||||
static const int kTimestampFactor = 1024;
|
||||
static const int kTimestampFactor = 1000;
|
||||
// conversion factor between usec system time and msec tcp time
|
||||
|
||||
|
||||
static inline bigtime_t
|
||||
|
||||
Reference in New Issue
Block a user