summaryrefslogtreecommitdiff
path: root/sleekxmpp
diff options
context:
space:
mode:
authorTom Nichols <tmnichols@gmail.com>2010-07-09 16:15:18 -0400
committerTom Nichols <tmnichols@gmail.com>2010-07-09 16:15:18 -0400
commit969c4652a4f4b5ad3a095bc746f42472abe3171c (patch)
tree4c2fb5e180400907170264e83440587efe470474 /sleekxmpp
parent9506970042b0654d8c2639af5995e5aef2adf48f (diff)
downloadslixmpp-969c4652a4f4b5ad3a095bc746f42472abe3171c.tar.gz
slixmpp-969c4652a4f4b5ad3a095bc746f42472abe3171c.tar.bz2
slixmpp-969c4652a4f4b5ad3a095bc746f42472abe3171c.tar.xz
slixmpp-969c4652a4f4b5ad3a095bc746f42472abe3171c.zip
wait, shouldn't 'port' default to 5222?? Would seem logical to me.
Diffstat (limited to 'sleekxmpp')
-rw-r--r--sleekxmpp/xmlstream/xmlstream.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py
index 5c24de5b..3b3163c7 100644
--- a/sleekxmpp/xmlstream/xmlstream.py
+++ b/sleekxmpp/xmlstream/xmlstream.py
@@ -52,7 +52,7 @@ DEFAULT_KEEPALIVE = 300 # send a single byte every 5 minutes
class XMLStream(object):
"A connection manager with XML events."
- def __init__(self, socket=None, host='', port=0, escape_quotes=False):
+ def __init__(self, socket=None, host='', port=5222, escape_quotes=False):
global ssl_support
self.ssl_support = ssl_support
self.escape_quotes = escape_quotes
@@ -101,7 +101,7 @@ class XMLStream(object):
def setFileSocket(self, filesocket):
self.filesocket = filesocket
- def connect(self, host='', port=0, use_ssl=None):
+ def connect(self, host='', port=5222, use_ssl=None):
"Establish a socket connection to the given XMPP server."
if not self.state.transition('disconnected','connected',
@@ -117,7 +117,7 @@ class XMLStream(object):
# TODO currently a caller can't distinguish between "connection failed" and
# "we're already trying to connect from another thread"
- def connectTCP(self, host='', port=0, use_ssl=None, reattempt=True):
+ def connectTCP(self, host='', port=5222, use_ssl=None, reattempt=True):
"Connect and create socket"
# Note that this is thread-safe by merit of being called solely from connect() which