Skip to content

Instantly share code, notes, and snippets.

@standinga
Created November 30, 2020 08:06
Show Gist options
  • Save standinga/696ffdbb83546609c8af98ef55baae2a to your computer and use it in GitHub Desktop.
Save standinga/696ffdbb83546609c8af98ef55baae2a to your computer and use it in GitHub Desktop.
IOS/OSX Networking updated server
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