diff -r eadf15a06ff5 -r 2d948fcbb5d7 xmpp/structs.go --- a/xmpp/structs.go Sun Sep 29 21:33:03 2013 -0600 +++ b/xmpp/structs.go Sun Sep 29 21:37:14 2013 -0600 @@ -269,7 +269,7 @@ var bindExt Extension = Extension{} func init() { - bindExt.StanzaHandlers = make(map[xml.Name]reflect.Type) + bindExt.StanzaTypes = make(map[xml.Name]reflect.Type) bName := xml.Name{Space: NsBind, Local: "bind"} - bindExt.StanzaHandlers[bName] = reflect.TypeOf(bindIq{}) + bindExt.StanzaTypes[bName] = reflect.TypeOf(bindIq{}) }