comparison mcabber/src/xmpp_muc.c @ 1599:dcd5d4c75199

Update/Add headers
author Mikael Berthe <mikael@lilotux.net>
date Sun, 11 Oct 2009 15:39:32 +0200
parents a087125d8fc8
children 351427ef0b4b
comparison
equal deleted inserted replaced
1598:a087125d8fc8 1599:dcd5d4c75199
1 /* See xmpp.c file for copyright and license details. */ 1 /*
2 * xmpp_muc.c -- Jabber MUC protocol handling
3 *
4 * Copyright (C) 2008-2009 Frank Zschockelt <mcabber@freakysoft.de>
5 * Copyright (C) 2005-2009 Mikael Berthe <mikael@lilotux.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or (at
10 * your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 * USA
21 */
2 22
3 static void decline_invitation(event_muc_invitation *invitation, char *reason) 23 static void decline_invitation(event_muc_invitation *invitation, char *reason)
4 { 24 {
5 // cut and paste from xmpp_room_invite 25 // cut and paste from xmpp_room_invite
6 LmMessage *m; 26 LmMessage *m;
674 // handle status code = 170 ( changement de config ) 694 // handle status code = 170 ( changement de config )
675 // 10.2.1 Notification of Configuration Changes 695 // 10.2.1 Notification of Configuration Changes
676 // declined invitation 696 // declined invitation
677 } 697 }
678 698
699 /* vim: set expandtab cindent cinoptions=>2\:2(0: For Vim users... */