xmpp.go
branch20120108-close
changeset 67 e8ad85bb6608
parent 65 3d69b31c3839
child 72 53f15893a1a7
equal deleted inserted replaced
66:4558994ab3b3 67:e8ad85bb6608
     3 // license that can be found in the LICENSE file.
     3 // license that can be found in the LICENSE file.
     4 
     4 
     5 // This package implements a simple XMPP client according to RFCs 3920
     5 // This package implements a simple XMPP client according to RFCs 3920
     6 // and 3921, plus the various XEPs at http://xmpp.org/protocols/.
     6 // and 3921, plus the various XEPs at http://xmpp.org/protocols/.
     7 package xmpp
     7 package xmpp
     8 
       
     9 // BUG(cjyar) Figure out why the library doesn't exit when the server
       
    10 // closes its stream to us.
       
    11 
     8 
    12 import (
     9 import (
    13 	"bytes"
    10 	"bytes"
    14 	"fmt"
    11 	"fmt"
    15 	"io"
    12 	"io"