-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove client code and move server into src
- Loading branch information
1 parent
264ce2a
commit 01ec7bc
Showing
26 changed files
with
187 additions
and
993 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
'use strict' | ||
|
||
exports.MAX_NS_LENGTH = 255 | ||
exports.MAX_DISCOVER_LIMIT = 1000 | ||
exports.MAX_PEER_REGISTRATIONS = 1000 | ||
exports.MIN_TTL = 7.2e6 | ||
exports.MAX_TTL = 2.592e+8 | ||
exports.PROTOCOL_MULTICODEC = '/rendezvous/1.0.0' | ||
exports.MAX_DISCOVER_LIMIT = 50 | ||
exports.GC_BOOT_DELAY = 10e6 | ||
exports.GC_INTERVAL = 7.2e6 | ||
exports.GC_MIN_INTERVAL = 3e6 | ||
exports.GC_MIN_REGISTRATIONS = 1000 | ||
exports.GC_MAX_REGISTRATIONS = 10e6 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
'use strict' | ||
|
||
exports.codes = { | ||
INVALID_NAMESPACE: 'ERR_INVALID_NAMESPACE', | ||
NO_CONNECTED_RENDEZVOUS_SERVERS: 'ERR_NO_CONNECTED_RENDEZVOUS_SERVERS' | ||
INVALID_COOKIE: 'ERR_INVALID_COOKIE' | ||
} |
Oops, something went wrong.