diff -r 1dc47df5c99f -r 4e68d8f89dc3 xmpp.go --- a/xmpp.go Thu Dec 29 11:17:52 2011 -0700 +++ b/xmpp.go Thu Dec 29 11:25:26 2011 -0700 @@ -68,6 +68,11 @@ // channel. Out chan<- Stanza xmlOut chan<- interface{} + // Features advertised by the remote. This will be updated + // asynchronously as new features are received throughout the + // connection process. It should not be updated once + // StartSession() returns. + Features *Features } var _ io.Closer = &Client{}