Add support to register with a room
`/affiliation register` can now be used to register a nickname with a MUC. Tested with a server without forms. Couldn't find a server which supports forms yet. Implements https://github.com/profanity-im/profanity/issues/1210
This commit is contained in:
@@ -409,15 +409,22 @@ iq_register_change_password(const char* const user, const char* const password)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
iq_muc_register_nick(const char* const roomjid)
|
||||
{
|
||||
}
|
||||
|
||||
// caps functions
|
||||
void
|
||||
caps_add_feature(char* feature)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
caps_remove_feature(char* feature)
|
||||
{
|
||||
}
|
||||
|
||||
EntityCapabilities*
|
||||
caps_lookup(const char* const jid)
|
||||
{
|
||||
@@ -428,14 +435,17 @@ void
|
||||
caps_close(void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
caps_destroy(EntityCapabilities* caps)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
caps_reset_ver(void)
|
||||
{
|
||||
}
|
||||
|
||||
gboolean
|
||||
caps_jid_has_feature(const char* const jid, const char* const feature)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user