-
Notifications
You must be signed in to change notification settings - Fork 0
Implement connection types #6
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request
Milestone
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request
Previously the method of identifying whether a connection was another server or a client would be done per message with the
scopeidentifier but this will lead to ambiguities.I want to perhaps introduce that upon connection the protocol spec (
v2) will have to incorporate the following:If the
"scope"field is set to"client"then another field"authentication"must be present, else the connection gets closed.If the
"scope"field is set to"server"then no authentication is required and the connection can be handled.