xmpp.go
changeset 32 4e68d8f89dc3
parent 30 a77fc342e013
child 33 571713f49494
--- 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{}