1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Added room_chat module

This commit is contained in:
James Booth 2012-11-04 23:31:49 +00:00
parent c8fe2a4aca
commit a141a997f8
4 changed files with 72 additions and 1 deletions

View File

@ -7,7 +7,8 @@ profanity_SOURCES = src/command.c src/contact.c src/history.c src/jabber.h \
src/prof_history.c src/ui.h src/common.h src/ contact_list.h src/jabber.c \
src/main.c src/profanity.h src/prof_history.h src/chat_log.c \
src/chat_log.h src/tinyurl.c src/tinyurl.h src/chat_session.c \
src/chat_session.h src/release.c src/release.h
src/chat_session.h src/release.c src/release.h src/room_chat.c \
src/room_chat.h
TESTS = tests/testsuite
check_PROGRAMS = tests/testsuite

View File

@ -32,6 +32,7 @@
#include "log.h"
#include "preferences.h"
#include "profanity.h"
#include "room_chat.h"
#define PING_INTERVAL 120000 // 2 minutes
@ -292,6 +293,8 @@ jabber_join(const char * const room_jid, const char * const nick)
xmpp_stanza_set_attribute(presence, "to", to->str);
xmpp_send(jabber_conn.conn, presence);
xmpp_stanza_release(presence);
room_join(room_join, nick);
}
void

44
src/room_chat.c Normal file
View File

@ -0,0 +1,44 @@
/*
* room_chat.c
*
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
*
* This file is part of Profanity.
*
* Profanity is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Profanity is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <stdlib.h>
#include <string.h>
#include <glib.h>
typedef struct _muc_room_t {
char *jid;
char *nick;
} muc_room;
GSList *rooms;
void
room_join(const char * const jid, const char * const nick)
{
muc_room *new_room = malloc(sizeof(muc_room));
new_room->jid = strdup(jid);
new_room->nick = strdup(nick);
rooms = g_slist_append(rooms, new_room);
}

23
src/room_chat.h Normal file
View File

@ -0,0 +1,23 @@
/*
* room_chat.h
*
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
*
* This file is part of Profanity.
*
* Profanity is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Profanity is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
*
*/
void room_join(const char * const jid, const char * const nick);