libpurple/protocols/ircv3/purpleircv3protocolim.h

Wed, 16 Nov 2022 22:31:08 -0600

author
Gary Kramlich <grim@reaperworld.com>
date
Wed, 16 Nov 2022 22:31:08 -0600
changeset 41916
4ee9cb957595
child 42229
605f8cba9704
permissions
-rw-r--r--

Implement sending im's for IRCv3

Also fix an issue on receiving on IM's where we were creating a conversation
with the target, not the source.

Testing Done:
Sent im's between pidgin2 and pidgin3 using a local ergo server.

Reviewed at https://reviews.imfreedom.org/r/2062/

/*
 * Purple - Internet Messaging Library
 * Copyright (C) Pidgin Developers <devel@pidgin.im>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <https://www.gnu.org/licenses/>.
 */

#ifndef PURPLE_IRCV3_PROTOCOL_IM_H
#define PURPLE_IRCV3_PROTOCOL_IM_H

#include <glib.h>

#include <purple.h>

G_GNUC_INTERNAL void purple_ircv3_protocol_im_init(PurpleProtocolIMInterface *iface);

#endif /* PURPLE_IRCV3_PROTOCOL_IM_H */

mercurial