Start the Big Split...
[siplcs.git] / src / sipe-utils.h
blob65f3a0ef6f94a44f1a92b26d5f95bd8157baa69a
1 /**
2 * @file sipe-utils.h
4 * pidgin-sipe
6 * Copyright (C) 2009 SIPE Project <http://sipe.sourceforge.net/>
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 /**
24 * Generate Call ID
26 * @return Call ID. Must be g_free()'d.
28 gchar *gencallid(void);
30 /**
31 * Generate Tag
33 * @return Tag. Must be g_free()'d.
35 gchar *gentag(void);
37 /**
38 * Get contact information from SIPE account
40 * @param sip (in) SIPE account
42 * @return Contact. Must be g_free()'d.
44 gchar *get_contact(const struct sipe_account_data *sip);
46 /**
47 * Parses URI from SIP header
49 * @param hdr (in) To/From header
51 * @return URI with sip: prefix. Must be g_free()'d.
53 gchar *parse_from(const gchar *hdr);