summaryrefslogtreecommitdiffstats
path: root/tinySIP/include/tinysip/tsip_message.h
diff options
context:
space:
mode:
Diffstat (limited to 'tinySIP/include/tinysip/tsip_message.h')
-rwxr-xr-xtinySIP/include/tinysip/tsip_message.h135
1 files changed, 67 insertions, 68 deletions
diff --git a/tinySIP/include/tinysip/tsip_message.h b/tinySIP/include/tinysip/tsip_message.h
index d0442ea..16ad164 100755
--- a/tinySIP/include/tinysip/tsip_message.h
+++ b/tinySIP/include/tinysip/tsip_message.h
@@ -2,19 +2,19 @@
* Copyright (C) 2010-2011 Mamadou Diop.
*
* Contact: Mamadou Diop <diopmamadou(at)doubango[dot]org>
-*
+*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
-*
+*
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
-*
+*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*
@@ -57,8 +57,8 @@ TSIP_BEGIN_DECLS
///**
// * @struct tsip_request_line_t
// *
-// * @brief Defines SIP request header line.
-// * ABNF: Request-Line = Method SP Request-URI SP SIP-Version CRLF
+// * @brief Defines SIP request header line.
+// * ABNF: Request-Line = Method SP Request-URI SP SIP-Version CRLF
// * Ref: RFC 3261 subclause 7.1.
// * @sa tsip_status_line_t.
// *
@@ -77,9 +77,9 @@ TSIP_BEGIN_DECLS
///**
// * @struct tsip_status_line_t
// *
-// * @brief Defines SIP response status line.
-// * ABNF: Status-Line = SIP-Version SP Status-Code SP Reason-Phrase CRLF
-// * Ref: RFC 3261 subclause 7.2.
+// * @brief Defines SIP response status line.
+// * ABNF: Status-Line = SIP-Version SP Status-Code SP Reason-Phrase CRLF
+// * Ref: RFC 3261 subclause 7.2.
// * @sa tsip_request_line_t.
// *
// * @author Mamadou
@@ -96,60 +96,59 @@ TSIP_BEGIN_DECLS
* @struct tsip_message_t
*
* @brief Represents a SIP message. A SIP message is either a request from a client to a server,
- * or a response from a server to a client. See RFC 3261 suc-bclause 7.
+ * or a response from a server to a client. See RFC 3261 suc-bclause 7.
* You must call @ref tsip_message_create to create a sip message and TSK_OBJECT_SAFE_FREE to free the message.
*
* @author Mamadou
* @date 12/2/2009
**/
-typedef struct tsip_message_s
-{
- TSK_DECLARE_OBJECT;
-
- char *sip_version; /**< The SIP version. Only 'SIP/2.0' is supported. */
- tsip_message_type_t type; /**< The type of this SIP message. */
-
- /* Request Line */
- union{
- struct{
- char *method; /**< SIP method name. e.g REGISTER, ACK or INVITE.*/
- tsip_uri_t *uri; /**< The Request-URI is a SIP or SIPS URI as described in Section 19.1 or a general URI (RFC 2396 [5]). It indicates
+typedef struct tsip_message_s {
+ TSK_DECLARE_OBJECT;
+
+ char *sip_version; /**< The SIP version. Only 'SIP/2.0' is supported. */
+ tsip_message_type_t type; /**< The type of this SIP message. */
+
+ /* Request Line */
+ union {
+ struct {
+ char *method; /**< SIP method name. e.g REGISTER, ACK or INVITE.*/
+ tsip_uri_t *uri; /**< The Request-URI is a SIP or SIPS URI as described in Section 19.1 or a general URI (RFC 2396 [5]). It indicates
the user or service to which this request is being addressed. The Request-URI MUST NOT contain unescaped spaces or control
characters and MUST NOT be enclosed in "<>". */
- tsip_request_type_t request_type;
- } request;
- struct{
- short status_code; /**< 3-digit integer result code that indicates the outcome of an attempt to understand and satisfy a request. */
- char *reason_phrase; /**< Textual description related to the status code. */
- } response;
- } line;
-
-
- /*== MOST COMMON HEADERS. */
- tsip_header_Via_t *firstVia; /**< First Via header. */
- tsip_header_From_t *From;
- tsip_header_To_t *To;
- tsip_header_Contact_t *Contact;
- tsip_header_Call_ID_t *Call_ID;
- tsip_header_CSeq_t *CSeq;
- tsip_header_Expires_t *Expires;
-
- tsip_header_Content_Type_t *Content_Type;
- tsip_header_Content_Length_t *Content_Length;
- tsk_buffer_t *Content;
-
- /*== OTHER HEADERS*/
- tsip_headers_L_t *headers;
-
- /*== to hack the message */
- char* sigcomp_id;
- tnet_fd_t local_fd;
- struct sockaddr_storage remote_addr; // Only valid for Dgram
- tsk_bool_t update;
- enum tnet_socket_type_e src_net_type;
- enum tnet_socket_type_e dst_net_type;
- char* dst_address;
- tnet_port_t dst_port;
+ tsip_request_type_t request_type;
+ } request;
+ struct {
+ short status_code; /**< 3-digit integer result code that indicates the outcome of an attempt to understand and satisfy a request. */
+ char *reason_phrase; /**< Textual description related to the status code. */
+ } response;
+ } line;
+
+
+ /*== MOST COMMON HEADERS. */
+ tsip_header_Via_t *firstVia; /**< First Via header. */
+ tsip_header_From_t *From;
+ tsip_header_To_t *To;
+ tsip_header_Contact_t *Contact;
+ tsip_header_Call_ID_t *Call_ID;
+ tsip_header_CSeq_t *CSeq;
+ tsip_header_Expires_t *Expires;
+
+ tsip_header_Content_Type_t *Content_Type;
+ tsip_header_Content_Length_t *Content_Length;
+ tsk_buffer_t *Content;
+
+ /*== OTHER HEADERS*/
+ tsip_headers_L_t *headers;
+
+ /*== to hack the message */
+ char* sigcomp_id;
+ tnet_fd_t local_fd;
+ struct sockaddr_storage remote_addr; // Only valid for Dgram
+ tsk_bool_t update;
+ enum tnet_socket_type_e src_net_type;
+ enum tnet_socket_type_e dst_net_type;
+ char* dst_address;
+ tnet_port_t dst_port;
}
tsip_message_t;
@@ -163,19 +162,19 @@ TINYSIP_API int tsip_message_add_content(tsip_message_t *self, const char* conte
#if defined(__SYMBIAN32__) && 0
static void TSIP_MESSAGE_ADD_HEADER(tsip_message_t *self, ...)
- {
- va_list ap;
- tsip_header_t *header;
- const tsk_object_def_t *objdef;
-
- va_start(ap, self);
- objdef = va_arg(ap, const tsk_object_def_t*);
- header = (tsip_header_t *)tsk_object_new_2(objdef, &ap);
- va_end(ap);
-
- tsip_message_add_header(self, header);
- tsk_object_unref(header);
- }
+{
+ va_list ap;
+ tsip_header_t *header;
+ const tsk_object_def_t *objdef;
+
+ va_start(ap, self);
+ objdef = va_arg(ap, const tsk_object_def_t*);
+ header = (tsip_header_t *)tsk_object_new_2(objdef, &ap);
+ va_end(ap);
+
+ tsip_message_add_header(self, header);
+ tsk_object_unref(header);
+}
#else
#define TSIP_MESSAGE_ADD_HEADER(self, objdef, ...) \
{ \
OpenPOWER on IntegriCloud