blob: 7108577f58398229e11c78fe2d2fa488ea04f152 [file] [log] [blame]
Benny Prijono9033e312005-11-21 02:08:39 +00001/* $Id$ */
2/*
Benny Prijono844653c2008-12-23 17:27:53 +00003 * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
Benny Prijono32177c02008-06-20 22:44:47 +00004 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
Benny Prijono9033e312005-11-21 02:08:39 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
Benny Prijono40f2f642006-01-30 18:40:05 +000020#ifndef __PJSIP_H__
21#define __PJSIP_H__
Benny Prijono9033e312005-11-21 02:08:39 +000022
Benny Prijono40f2f642006-01-30 18:40:05 +000023/* Base types. */
Benny Prijono9033e312005-11-21 02:08:39 +000024#include <pjsip/sip_types.h>
Benny Prijono9033e312005-11-21 02:08:39 +000025#include <pjsip/sip_errno.h>
Benny Prijono40f2f642006-01-30 18:40:05 +000026
27/* Messaging and parsing. */
28#include <pjsip/sip_uri.h>
29#include <pjsip/sip_tel_uri.h>
Benny Prijono9033e312005-11-21 02:08:39 +000030#include <pjsip/sip_msg.h>
Benny Prijono1c1d7342010-08-01 09:48:51 +000031#include <pjsip/sip_multipart.h>
Benny Prijono9033e312005-11-21 02:08:39 +000032#include <pjsip/sip_parser.h>
Benny Prijono40f2f642006-01-30 18:40:05 +000033
34/* Core */
35#include <pjsip/sip_event.h>
36#include <pjsip/sip_module.h>
37#include <pjsip/sip_endpoint.h>
38#include <pjsip/sip_util.h>
39
40/* Transport layer */
Benny Prijono9033e312005-11-21 02:08:39 +000041#include <pjsip/sip_transport.h>
Benny Prijono0ca04b62005-12-30 23:50:15 +000042#include <pjsip/sip_transport_udp.h>
Benny Prijonofa73e3e2006-01-05 23:35:46 +000043#include <pjsip/sip_transport_loop.h>
Benny Prijonoe93e2872006-06-28 16:46:49 +000044#include <pjsip/sip_transport_tcp.h>
Benny Prijono0875ae82006-12-26 00:11:48 +000045#include <pjsip/sip_transport_tls.h>
Benny Prijono40f2f642006-01-30 18:40:05 +000046#include <pjsip/sip_resolve.h>
Benny Prijono9033e312005-11-21 02:08:39 +000047
Benny Prijono40f2f642006-01-30 18:40:05 +000048/* Authentication. */
49#include <pjsip/sip_auth.h>
Benny Prijono7977f9f2007-10-10 11:37:56 +000050#include <pjsip/sip_auth_aka.h>
Benny Prijono40f2f642006-01-30 18:40:05 +000051
52/* Transaction layer. */
53#include <pjsip/sip_transaction.h>
54
55/* UA Layer. */
56#include <pjsip/sip_ua_layer.h>
57#include <pjsip/sip_dialog.h>
58
59
60#endif /* __PJSIP_H__ */
Benny Prijono9033e312005-11-21 02:08:39 +000061