From 15a35ce4ffab2fb62285c0db696c1475d3dac472 Mon Sep 17 00:00:00 2001 From: Matt Goodall Date: Tue, 10 Jul 2012 17:25:25 +0100 Subject: [PATCH] Separate sections of attrs with useful comments. --- src/xmpp/xmpp.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/xmpp/xmpp.go b/src/xmpp/xmpp.go index fb5afda..da81578 100644 --- a/src/xmpp/xmpp.go +++ b/src/xmpp/xmpp.go @@ -12,8 +12,12 @@ type XMPP struct { // server during setup and so must be used for all messages. JID JID stream *Stream + + // Stanza channels. in chan interface{} out chan interface{} + + // Incoming stanza filters. nextFilterId FilterId filters map[FilterId]filter }