diff options
author | James Booth <boothj5@gmail.com> | 2014-01-18 01:45:05 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-18 01:45:05 +0000 |
commit | e7013408e5640cd41524a17c6f8f112eef1b54da (patch) | |
tree | 07f9e1aa8adb2f4bb2b0f5073f15c2621dc048d3 /src/xmpp | |
parent | b1de8a400525e685b1e1d24fcb790d523bcacecd (diff) | |
download | profani-tty-e7013408e5640cd41524a17c6f8f112eef1b54da.tar.gz |
WIP - Adding port to account options
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/connection.c | 22 | ||||
-rw-r--r-- | src/xmpp/xmpp.h | 2 |
2 files changed, 15 insertions, 9 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c index ad447767..dc015dd6 100644 --- a/src/xmpp/connection.c +++ b/src/xmpp/connection.c @@ -68,6 +68,7 @@ static struct { char *jid; char *passwd; char *altdomain; + int port; } saved_details; static GTimer *reconnect_timer; @@ -80,7 +81,7 @@ static void _xmpp_file_logger(void * const userdata, static xmpp_log_t * _xmpp_get_file_logger(); static jabber_conn_status_t _jabber_connect(const char * const fulljid, - const char * const passwd, const char * const altdomain); + const char * const passwd, const char * const altdomain, int port); static void _jabber_reconnect(void); static void _connection_handler(xmpp_conn_t * const conn, @@ -123,7 +124,7 @@ _jabber_connect_with_account(const ProfAccount * const account) // connect with fulljid Jid *jidp = jid_create_from_bare_and_resource(account->jid, account->resource); jabber_conn_status_t result = - _jabber_connect(jidp->fulljid, account->password, account->server); + _jabber_connect(jidp->fulljid, account->password, account->server, account->port); jid_destroy(jidp); return result; @@ -131,7 +132,7 @@ _jabber_connect_with_account(const ProfAccount * const account) static jabber_conn_status_t _jabber_connect_with_details(const char * const jid, - const char * const passwd, const char * const altdomain) + const char * const passwd, const char * const altdomain, int port) { assert(jid != NULL); assert(passwd != NULL); @@ -144,6 +145,11 @@ _jabber_connect_with_details(const char * const jid, } else { saved_details.altdomain = NULL; } + if (port != 0) { + saved_details.port = port; + } else { + saved_details.port = 0; + } // use 'profanity' when no resourcepart in provided jid Jid *jidp = jid_create(jid); @@ -158,7 +164,7 @@ _jabber_connect_with_details(const char * const jid, // connect with fulljid log_info("Connecting without account, JID: %s", saved_details.jid); - return _jabber_connect(saved_details.jid, passwd, saved_details.altdomain); + return _jabber_connect(saved_details.jid, passwd, saved_details.altdomain, saved_details.port); } static void @@ -377,7 +383,7 @@ connection_error_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, static jabber_conn_status_t _jabber_connect(const char * const fulljid, const char * const passwd, - const char * const altdomain) + const char * const altdomain, int port) { assert(fulljid != NULL); assert(passwd != NULL); @@ -421,7 +427,7 @@ _jabber_connect(const char * const fulljid, const char * const passwd, xmpp_conn_disable_tls(jabber_conn.conn); } - int connect_status = xmpp_connect_client(jabber_conn.conn, altdomain, 0, + int connect_status = xmpp_connect_client(jabber_conn.conn, altdomain, port, _connection_handler, jabber_conn.ctx); if (connect_status == 0) @@ -443,7 +449,7 @@ _jabber_reconnect(void) } else { char *fulljid = create_fulljid(account->jid, account->resource); log_debug("Attempting reconnect with account %s", account->name); - _jabber_connect(fulljid, saved_account.passwd, account->server); + _jabber_connect(fulljid, saved_account.passwd, account->server, account->port); free(fulljid); g_timer_start(reconnect_timer); } @@ -468,7 +474,7 @@ _connection_handler(xmpp_conn_t * const conn, // logged in without account, use details to create new account } else { log_debug("Connection handler: logged in with jid: %s", saved_details.name); - accounts_add(saved_details.name, saved_details.altdomain); + accounts_add(saved_details.name, saved_details.altdomain, saved_details.port); accounts_set_jid(saved_details.name, saved_details.jid); handle_login_account_success(saved_details.name); diff --git a/src/xmpp/xmpp.h b/src/xmpp/xmpp.h index 87cde006..86f585e4 100644 --- a/src/xmpp/xmpp.h +++ b/src/xmpp/xmpp.h @@ -85,7 +85,7 @@ void roster_init_module(void); // connection functions void (*jabber_init)(const int disable_tls); jabber_conn_status_t (*jabber_connect_with_details)(const char * const jid, - const char * const passwd, const char * const altdomain); + const char * const passwd, const char * const altdomain, int port); jabber_conn_status_t (*jabber_connect_with_account)(const ProfAccount * const account); void (*jabber_disconnect)(void); void (*jabber_shutdown)(void); |