mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-10 09:39:39 +02:00
Introduce websocket module into smack
This commit is contained in:
parent
5d32735ad7
commit
7ed29b9d5f
39 changed files with 1943 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
digraph {
|
||||
"Disconnected" -> "LookupRemoteConnectionEndpoints";
|
||||
"LookupRemoteConnectionEndpoints" -> "EstablishingTcpConnection";
|
||||
"LookupRemoteConnectionEndpoints" -> "EstablishingTcpConnection" [xlabel="1"];
|
||||
"EstablishingTcpConnection" -> "EstablishTls (RFC 6120 § 5)" [xlabel="1"];
|
||||
"EstablishTls (RFC 6120 § 5)" -> "ConnectedButUnauthenticated";
|
||||
"ConnectedButUnauthenticated" -> "Bind2 (XEP-0386)" [xlabel="1"];
|
||||
|
@ -32,5 +32,7 @@ digraph {
|
|||
"ConnectedButUnauthenticated" -> "InstantShutdown" [xlabel="5"];
|
||||
"ConnectedButUnauthenticated" [ style=filled ]
|
||||
"EstablishingTcpConnection" -> "ConnectedButUnauthenticated" [xlabel="2"];
|
||||
"LookupRemoteConnectionEndpoints" -> "EstablishingWebsocketConnection" [xlabel="2"];
|
||||
"EstablishingWebsocketConnection" -> "ConnectedButUnauthenticated";
|
||||
"Disconnected" [ style=filled ]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue