Asterisk - The Open Source Telephony Project  18.5.0
chan_pjsip.h
Go to the documentation of this file.
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (C) 2013, Digium, Inc.
5  *
6  * See http://www.asterisk.org for more information about
7  * the Asterisk project. Please do not directly contact
8  * any of the maintainers of this project for assistance;
9  * the project provides a web site, mailing lists and IRC
10  * channels for your use.
11  *
12  * This program is free software, distributed under the terms of
13  * the GNU General Public License Version 2. See the LICENSE file
14  * at the top of the source tree.
15  */
16 
17 /*!
18  * \file
19  * \brief PJSIP Channel Driver shared data structures
20  */
21 
22 #ifndef _CHAN_PJSIP_HEADER
23 #define _CHAN_PJSIP_HEADER
24 
26 
27 /*!
28  * \brief Transport information stored in transport_info datastore
29  */
31  /*! \brief The address that sent the request */
32  pj_sockaddr remote_addr;
33  /*! \brief Our address that received the request */
34  pj_sockaddr local_addr;
35 };
36 
37 
38 /*!
39  * \brief The PJSIP channel driver pvt, stored in the \ref ast_sip_channel_pvt
40  * data structure
41  */
43 };
44 
45 #endif /* _CHAN_PJSIP_HEADER */
pj_sockaddr local_addr
Our address that received the request.
Definition: chan_pjsip.h:34
Transport information stored in transport_info datastore.
Definition: chan_pjsip.h:30
pj_sockaddr remote_addr
The address that sent the request.
Definition: chan_pjsip.h:32
The PJSIP channel driver pvt, stored in the ast_sip_channel_pvt data structure.
Definition: chan_pjsip.h:42
A structure containing SIP session media information.