Created
November 30, 2020 08:06
-
-
Save standinga/696ffdbb83546609c8af98ef55baae2a to your computer and use it in GitHub Desktop.
IOS/OSX Networking updated server
This file contains hidden or 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
listener.newConnectionHandler = { newConnection in | |
log("listener.newConnectionHandler \(newConnection)") | |
if sharedConnection == nil { | |
sharedConnection = Connection(connection: newConnection) | |
} else { | |
newConnection.cancel() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment