blob: 6edfda8978d2780403d4110578c7f77afe3171d7 [file] [log] [blame]
Benny Prijonoe0312a72005-11-18 00:16:43 +00001/* $Id$ */
Benny Prijonoe7224612005-11-13 19:40:44 +00002/*
Benny Prijonoe0312a72005-11-18 00:16:43 +00003 * Copyright (C) 2003-2006 Benny Prijono <benny@prijono.org>
Benny Prijonoe7224612005-11-13 19:40:44 +00004 *
Benny Prijonoe0312a72005-11-18 00:16:43 +00005 * 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.
Benny Prijonoe7224612005-11-13 19:40:44 +00009 *
Benny Prijonoe0312a72005-11-18 00:16:43 +000010 * This program is distributed in the hope that it will be useful,
Benny Prijonoe7224612005-11-13 19:40:44 +000011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Benny Prijonoe0312a72005-11-18 00:16:43 +000012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Benny Prijonoe7224612005-11-13 19:40:44 +000014 *
Benny Prijonoe0312a72005-11-18 00:16:43 +000015 * 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
Benny Prijonoe7224612005-11-13 19:40:44 +000018 */
19#ifndef __PJSIP_CORE_H__
20#define __PJSIP_CORE_H__
21
22#include <pjsip/sip_types.h>
Benny Prijonoa3273a32005-11-20 19:58:10 +000023#include <pjsip/sip_auth.h>
Benny Prijonoe7224612005-11-13 19:40:44 +000024#include <pjsip/sip_endpoint.h>
Benny Prijonoa3273a32005-11-20 19:58:10 +000025#include <pjsip/sip_errno.h>
Benny Prijonoe7224612005-11-13 19:40:44 +000026#include <pjsip/sip_event.h>
Benny Prijonoe7224612005-11-13 19:40:44 +000027#include <pjsip/sip_module.h>
28#include <pjsip/sip_msg.h>
29#include <pjsip/sip_parser.h>
30#include <pjsip/sip_resolve.h>
31#include <pjsip/sip_transaction.h>
32#include <pjsip/sip_transport.h>
33#include <pjsip/sip_uri.h>
Benny Prijonoa3273a32005-11-20 19:58:10 +000034#include <pjsip/sip_util.h>
Benny Prijonoe7224612005-11-13 19:40:44 +000035
36#endif /* __PJSIP_CORE_H__ */
37