about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/jid.c19
-rw-r--r--src/xmpp/jid.h1
-rw-r--r--src/xmpp/session.c4
3 files changed, 23 insertions, 1 deletions
diff --git a/src/xmpp/jid.c b/src/xmpp/jid.c
index 51e1fa3c..49bf7b9c 100644
--- a/src/xmpp/jid.c
+++ b/src/xmpp/jid.c
@@ -194,3 +194,22 @@ jid_fulljid_or_barejid(Jid *jid)
         return jid->barejid;
     }
 }
+
+char*
+jid_random_resource(void)
+{
+    GRand *prng;
+    char rand[5];
+    char alphabet[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
+
+    prng = g_rand_new();
+
+    int i;
+    for (i = 0; i < 4; i++) {
+        rand[i] = alphabet[g_rand_int_range(prng, 0, sizeof(alphabet))];
+    }
+    rand[4] = '\0';
+    g_rand_free(prng);
+
+    return g_strdup_printf("profanity.%s", rand);
+}
diff --git a/src/xmpp/jid.h b/src/xmpp/jid.h
index fc0e388f..4af0e381 100644
--- a/src/xmpp/jid.h
+++ b/src/xmpp/jid.h
@@ -57,5 +57,6 @@ char* create_fulljid(const char *const barejid, const char *const resource);
 char* get_nick_from_full_jid(const char *const full_room_jid);
 
 char* jid_fulljid_or_barejid(Jid *jid);
+char* jid_random_resource(void);
 
 #endif
diff --git a/src/xmpp/session.c b/src/xmpp/session.c
index 675f23af..67cbb17f 100644
--- a/src/xmpp/session.c
+++ b/src/xmpp/session.c
@@ -173,7 +173,9 @@ session_connect_with_details(const char *const jid, const char *const passwd, co
     Jid *jidp = jid_create(jid);
     if (jidp->resourcepart == NULL) {
         jid_destroy(jidp);
-        jidp = jid_create_from_bare_and_resource(jid, "profanity");
+        char *resource = jid_random_resource();
+        jidp = jid_create_from_bare_and_resource(jid, resource);
+        free(resource);
         saved_details.jid = strdup(jidp->fulljid);
     } else {
         saved_details.jid = strdup(jid);