Skip to content

Commit

Permalink
fix missing unit in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens Elkner committed Feb 6, 2024
1 parent 6980c5b commit d0acd7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/ns_turn_server.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ extern "C" {

//////////// defines //////////////

// Even if a single threaded app handles on average about 1 session/s
// Even if a single threaded app handles on average about 1k session/s
// this means, the counter lasts ~ 31.7 years before it wraps to 0 and even
// than it is unlikely, that a session last that long and a collision occures.
#define TURN_SESSION_ID_FACTOR (1000000000LL)
#define TURN_SESSION_ID_FACTOR (100000000LL)

//////////// ALTERNATE-SERVER /////////////

Expand Down

0 comments on commit d0acd7a

Please sign in to comment.