xmpp/xmpp.go
changeset 142 0ff033eed887
parent 141 f0d0f3b941a6
child 144 9d7fdb1d2fc1
equal deleted inserted replaced
141:f0d0f3b941a6 142:0ff033eed887
     1 // Copyright 2011 The Go Authors.  All rights reserved.
       
     2 // Use of this source code is governed by a BSD-style
       
     3 // license that can be found in the LICENSE file.
       
     4 
       
     5 // This package implements a simple XMPP client according to RFCs 3920
     1 // This package implements a simple XMPP client according to RFCs 3920
     6 // and 3921, plus the various XEPs at http://xmpp.org/protocols/. The
     2 // and 3921, plus the various XEPs at http://xmpp.org/protocols/. The
     7 // implementation is structured as a stack of layers, with TCP at the
     3 // implementation is structured as a stack of layers, with TCP at the
     8 // bottom and the application at the top. The application receives and
     4 // bottom and the application at the top. The application receives and
     9 // sends structures representing XMPP stanzas. Additional stanza
     5 // sends structures representing XMPP stanzas. Additional stanza