2 * @file si.h SI transfer functions
6 * Copyright (C) 2003 Nathan Walp <faceprint@faceprint.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
22 #ifndef PURPLE_JABBER_SI_H_
23 #define PURPLE_JABBER_SI_H_
29 void jabber_bytestreams_parse(JabberStream *js, const char *from,
30 JabberIqType type, const char *id, xmlnode *query);
31 void jabber_si_parse(JabberStream *js, const char *from, JabberIqType type,
32 const char *id, xmlnode *si);
33 PurpleXfer *jabber_si_new_xfer(PurpleConnection *gc, const char *who);
34 void jabber_si_xfer_send(PurpleConnection *gc, const char *who, const char *file);
35 void jabber_si_init(void);
36 void jabber_si_uninit(void);
38 #endif /* PURPLE_JABBER_SI_H_ */