Update client.go
This commit is contained in:
parent
daf37cf5a8
commit
e62b7fa0c7
|
@ -207,6 +207,10 @@ func (c *Client) Resume(state SMState) error {
|
|||
|
||||
func (c *Client) Disconnect() {
|
||||
// TODO : Wait for server response for clean disconnect
|
||||
presence := stanza.NewPresence(stanza.Attrs{From: c.config.Jid})
|
||||
presence.Type = stanza.PresenceTypeUnavailable
|
||||
c.Send(presence)
|
||||
c.SendRaw(stanza.StreamClose)
|
||||
if c.transport != nil {
|
||||
_ = c.transport.Close()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue