add host and port in configuration

This commit is contained in:
Aleksej 2022-06-14 01:05:39 +02:00
parent 77abee6c5a
commit 414174985b
No known key found for this signature in database
GPG Key ID: 4DB9C85100A6D17F

View File

@ -130,6 +130,6 @@ if __name__ == '__main__':
xmpp.register_plugin('xep_0199') # XMPP Ping
# Connect to the XMPP server and start processing XMPP stanzas.
xmpp.connect(address=("localhost",25222))
xmpp.connect(address=("127.0.0.1",25222))
xmpp.process(forever=False)