Wed, 19 Mar 2014 14:13:02 +0400 Stiletto Fix panic when connection is reset immediately after establishing. default tip
Thu, 20 Feb 2014 15:55:19 -0700 Chris Jones Added support for SASL PLAIN, from "Ildar Hizbulin" <hizel@vyborg.ru>.
Sun, 09 Feb 2014 09:52:28 -0700 Chris Jones Merge.
Sun, 09 Feb 2014 09:50:38 -0700 Chris Jones Added a license (and my email address).
Sat, 09 Nov 2013 12:37:49 -0700 Chris Jones Forgot to change the type of RosterItem.Jid to JID.
Sat, 09 Nov 2013 12:33:25 -0700 Chris Jones Changed the type of structure fields which hold JIDs from string to JID.
Sat, 09 Nov 2013 12:22:01 -0700 Chris Jones Added a JID.Bare() function, to product the bare JID as defined in the RFC.
Sat, 09 Nov 2013 12:09:37 -0700 Chris Jones Changed the JID type to be an alias of string, rather than a struct. This allows it to be used as a key in a map, among other benefits.
Wed, 06 Nov 2013 20:40:50 -0700 Chris Jones Updated to-do list.
Wed, 06 Nov 2013 20:39:36 -0700 Chris Jones Merge.
Wed, 06 Nov 2013 20:38:03 -0700 Chris Jones Allow the client to specify a host and port to connect to, rather than using SRV records.
Sun, 20 Oct 2013 15:40:20 -0600 Chris Jones Doc cleanup.
Fri, 18 Oct 2013 18:54:35 -0600 Chris Jones Removed a completed to-do item.
Fri, 18 Oct 2013 18:31:18 -0600 Chris Jones Removed uses of Generic from the Stanza types.
Thu, 17 Oct 2013 22:41:08 -0600 Chris Jones Doc fix.
Wed, 16 Oct 2013 20:52:05 -0600 Chris Jones Trying to be smarter about closing channels: Ask the application not to close the Send channel, but let us do that from Close() instead.
Wed, 16 Oct 2013 20:41:14 -0600 Chris Jones Make an attempt to only close the send channel if it's still open.
Wed, 16 Oct 2013 20:29:29 -0600 Chris Jones Don't call Close() twice.
Wed, 16 Oct 2013 20:05:02 -0600 Chris Jones Expose the Status.Fatal function.
Wed, 02 Oct 2013 23:22:27 -0600 Chris Jones Moved some code around.
Mon, 30 Sep 2013 20:35:17 -0600 Chris Jones gofmt
Mon, 30 Sep 2013 20:33:50 -0600 Chris Jones Changed order of operations in setError() so that the underlying error is reported.
Mon, 30 Sep 2013 20:31:25 -0600 Chris Jones Removed the weirdo logging facility. There's now a Debug variable which can be set which replaces the former debug log. NewClient() will return an error if something goes wrong setting up the connection.
Mon, 30 Sep 2013 18:59:37 -0600 Chris Jones Added a Close() function and fixed a couple of shutdown bugs.
Sun, 29 Sep 2013 21:56:19 -0600 Chris Jones gofmt
Sun, 29 Sep 2013 21:55:08 -0600 Chris Jones to-do update.
Sun, 29 Sep 2013 21:54:38 -0600 Chris Jones Listen for XMPP connection status changes, and print them out.
Sun, 29 Sep 2013 21:37:14 -0600 Chris Jones Renamed Extension.StanzaHandlers to StanzaTypes, and updated the doc comment.
Sun, 29 Sep 2013 21:33:03 -0600 Chris Jones Don't keep the password around after we've used it.
Sat, 28 Sep 2013 13:15:32 -0600 Chris Jones To-do list updates.
Sat, 28 Sep 2013 13:11:44 -0600 Chris Jones gofmt
Sat, 28 Sep 2013 13:03:51 -0600 Chris Jones Updated to-do list.
Sat, 28 Sep 2013 13:02:17 -0600 Chris Jones Simplified the API: There's only one constructor, and it does everything necessary to initiate the stream. StartSession() and Roster.Update() have both been eliminated.
Sun, 22 Sep 2013 17:43:34 -0500 Chris Jones Updated to-do list.
Sun, 15 Sep 2013 16:41:20 -0600 Chris Jones gofmt
Sun, 15 Sep 2013 16:41:02 -0600 Chris Jones Code reorder and doc cleanup.
Sun, 15 Sep 2013 16:30:55 -0600 Chris Jones Removed an unused parameter.
Sun, 15 Sep 2013 16:18:20 -0600 Chris Jones Made layers 1 and 3 more modular, shrinking the surface area of the coupling between them.
Sun, 15 Sep 2013 13:09:26 -0600 Chris Jones Function renames and improved doc.
Sun, 15 Sep 2013 12:42:49 -0600 Chris Jones Changed the inputControl channel to send a custom type.
Sun, 15 Sep 2013 12:31:59 -0600 Chris Jones gofmt
Sun, 15 Sep 2013 12:31:37 -0600 Chris Jones Renamed HandleStanza to SetCallback.
Sun, 15 Sep 2013 12:00:17 -0600 Chris Jones Split stream.go into layer1, layer2, layer3, and sasl.
Sun, 15 Sep 2013 11:34:35 -0600 Chris Jones Removed copyright statements.
Sun, 15 Sep 2013 11:23:06 -0600 Chris Jones Doc update.
Wed, 11 Sep 2013 17:17:50 -0600 Chris Jones Don't close the wrong end of a channel. But if we get an error, we can close the underlying socket.
Mon, 09 Sep 2013 04:27:53 +0100 Chris Jones Initial roster contents look like a result iq.
Mon, 09 Sep 2013 04:18:29 +0100 Chris Jones Doc update.
Mon, 09 Sep 2013 04:17:06 +0100 Chris Jones Start reading from the recv channel earlier.
Mon, 09 Sep 2013 04:16:16 +0100 Chris Jones Simplified and debugged the filter logic.
Mon, 09 Sep 2013 02:13:07 +0100 Chris Jones Fixed another logic error, caused by a shadowed variable name.
Sun, 08 Sep 2013 14:40:35 -0700 Chris Jones Fixed some logic errors and initialized some things that needed to be initialized.
Sun, 08 Sep 2013 14:37:56 -0700 Chris Jones Removed some unused code.
Sat, 07 Sep 2013 19:53:58 -0700 Chris Jones Fixed reversed-logic error in checking for duplicate stanza extension types.
Sat, 07 Sep 2013 19:49:57 -0700 Chris Jones Address a bug that can happen if no SRV records can be found.
Sat, 07 Sep 2013 14:43:54 -0700 Chris Jones Pass the TLS config as a parameter to the Client constructor. Updated the example program.
Sat, 07 Sep 2013 11:46:42 -0700 Chris Jones Moved the tls.Config from a package-level variable to a client instance variable.
Sat, 07 Sep 2013 11:19:29 -0700 Chris Jones Use reflection instead of constructor functions to create extended stanza structures.
Sat, 07 Sep 2013 10:30:22 -0700 Chris Jones Renamed client.In and client.Out to Recv and Send, respectively.
Sat, 07 Sep 2013 10:04:44 -0700 Chris Jones Moved the library code into an xmpp directory.
(0) -100 -60 tip