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