forked from chteufleur/go-xmpp
Separate sections of attrs with useful comments.
This commit is contained in:
parent
cf45380866
commit
15a35ce4ff
|
|
@ -12,8 +12,12 @@ type XMPP struct {
|
||||||
// server during setup and so must be used for all messages.
|
// server during setup and so must be used for all messages.
|
||||||
JID JID
|
JID JID
|
||||||
stream *Stream
|
stream *Stream
|
||||||
|
|
||||||
|
// Stanza channels.
|
||||||
in chan interface{}
|
in chan interface{}
|
||||||
out chan interface{}
|
out chan interface{}
|
||||||
|
|
||||||
|
// Incoming stanza filters.
|
||||||
nextFilterId FilterId
|
nextFilterId FilterId
|
||||||
filters map[FilterId]filter
|
filters map[FilterId]filter
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue