[cl-xmpp-cvs] CVS update: cl-xmpp/README
Erik Enge
eenge at common-lisp.net
Fri Nov 18 22:01:10 UTC 2005
Update of /project/cl-xmpp/cvsroot/cl-xmpp
In directory common-lisp.net:/tmp/cvs-serv29817
Modified Files:
README
Log Message:
Date: Fri Nov 18 23:01:09 2005
Author: eenge
Index: cl-xmpp/README
diff -u cl-xmpp/README:1.8 cl-xmpp/README:1.9
--- cl-xmpp/README:1.8 Sun Nov 13 03:55:46 2005
+++ cl-xmpp/README Fri Nov 18 23:01:08 2005
@@ -5,19 +5,11 @@
* (require :cl-xmpp)
- * (defvar connection (xmpp:connect "username" :hostname "jabber.org"))
-;; or use xmpp:connect-tls with the exact same arguments to initiate
-;; a TLS connection. there are operators in cl-xmpp-tls.lisp you
-;; can use manually if you want to check that this host supports
-;; TLS connections, first.
+ * (defvar *connection* (xmpp:connect :hostname "jabber.org"))
-;; authenticate (or use xmpp:register to make an account)
* (xmpp:auth connection "password" "resource")
-;; defaults to plain non-sasl authentication but sasl is also available
-
-;; let the server know you want to receive/send presence information
-;; (this makes you "come online" if others have a subscription with you)
- * (xmpp:presence connection)
+;; or pass :mechanism :sasl-plain, :digest-md5 or sasl-digest-md5
+;; if you loaded cl-xmpp-sasl.
;; send someone a message
* (xmpp:message connection "username at hostname" "what's going on?")
More information about the Cl-xmpp-cvs
mailing list