-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Client Convert Merge Part 1 Utility Convert Merge Part 1 BREAKING CHANGE: MERGES IN PROGRESS DO NOT RUN
- Loading branch information
Universal Web
committed
Mar 14, 2023
1 parent
f229cc3
commit 2e84690
Showing
29 changed files
with
203 additions
and
1,022 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { configure } from '../utilities/logs.js'; | ||
function buildConfiguration(configuration) { | ||
const { | ||
ip, | ||
port | ||
} = this.service.ephemeral; | ||
configure.logImprt('CLIENT CONFIGURATION'); | ||
this.configuration = { | ||
ip, | ||
port: configuration.servicePort || port, | ||
maxMTU: 1000, | ||
encoding: 'binary', | ||
max: 1280, | ||
}; | ||
} |
Oops, something went wrong.