summaryrefslogtreecommitdiffstats
path: root/tinySDP/include/tinysdp/headers/tsdp_header_M.h
diff options
context:
space:
mode:
Diffstat (limited to 'tinySDP/include/tinysdp/headers/tsdp_header_M.h')
-rwxr-xr-xtinySDP/include/tinysdp/headers/tsdp_header_M.h73
1 files changed, 36 insertions, 37 deletions
diff --git a/tinySDP/include/tinysdp/headers/tsdp_header_M.h b/tinySDP/include/tinysdp/headers/tsdp_header_M.h
index fad13b0..212be67 100755
--- a/tinySDP/include/tinysdp/headers/tsdp_header_M.h
+++ b/tinySDP/include/tinysdp/headers/tsdp_header_M.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.
*
@@ -25,7 +25,7 @@
*
* @author Mamadou Diop <diopmamadou(at)doubango[dot]org>
*
- *
+ *
*/
#ifndef _TSDP_HEADER_M_H_
#define _TSDP_HEADER_M_H_
@@ -61,7 +61,7 @@ TINYSDP_API tsdp_fmt_t* tsdp_fmt_create(const char* fmt);
//#define TSDP_HEADER_M_SET_NULL() (int)0x00
////////////////////////////////////////////////////////////////////////////////////////////////////
-/// @struct
+/// @struct
///
/// @brief SDP "m=" header (Media Descriptions).
///
@@ -72,44 +72,43 @@ TINYSDP_API tsdp_fmt_t* tsdp_fmt_create(const char* fmt);
/// key-field
/// attribute-fields)
///
-/// media-field = %x6d "=" media SP port ["/" integer] SP proto 1*(SP fmt) CRLF
-/// media = token
+/// media-field = %x6d "=" media SP port ["/" integer] SP proto 1*(SP fmt) CRLF
+/// media = token
/// port = 1*DIGIT
-/// proto = token *("/" token)
-/// fmt = token
-///
+/// proto = token *("/" token)
+/// fmt = token
+///
////////////////////////////////////////////////////////////////////////////////////////////////////
-typedef struct tsdp_header_M_s
-{
- TSDP_DECLARE_HEADER;
-
- char* media;
- uint32_t port;
- uint32_t nports; /**< <number of ports> */
- char* proto;
- tsk_fmts_L_t* FMTs;
-
- // Fields below will be set by the message parser.
- tsdp_header_I_t* I;
- tsdp_header_C_t* C;
- tsdp_headers_B_L_t* Bandwidths; // (zero or more bandwidth information lines)
- tsdp_header_K_t* K; // (encryption key)
- tsdp_headers_A_L_t* Attributes; // (zero or more media attribute lines)
+typedef struct tsdp_header_M_s {
+ TSDP_DECLARE_HEADER;
+
+ char* media;
+ uint32_t port;
+ uint32_t nports; /**< <number of ports> */
+ char* proto;
+ tsk_fmts_L_t* FMTs;
+
+ // Fields below will be set by the message parser.
+ tsdp_header_I_t* I;
+ tsdp_header_C_t* C;
+ tsdp_headers_B_L_t* Bandwidths; // (zero or more bandwidth information lines)
+ tsdp_header_K_t* K; // (encryption key)
+ tsdp_headers_A_L_t* Attributes; // (zero or more media attribute lines)
}
tsdp_header_M_t;
typedef enum tsdp_header_M_diff_e {
- tsdp_header_M_diff_none = 0x0000000,
- tsdp_header_M_diff_hold_resume = (0x0000001 << 0),
- tsdp_header_M_diff_index = (0x0000001 << 1),
- tsdp_header_M_diff_codecs = (0x0000001 << 2),
- tsdp_header_M_diff_network_info = (0x0000001 << 3),
- tsdp_header_M_diff_ice_enabled = (0x0000001 << 4),
- tsdp_header_M_diff_ice_restart = (0x0000001 << 5),
- tsdp_header_M_diff_dtls_fingerprint = (0x0000001 << 6),
- tsdp_header_M_diff_sdes_crypto = (0x0000001 << 7),
- tsdp_header_M_diff_media_type = (0x0000001 << 8),
- tsdp_header_M_diff_all = 0xFFFFFFFF
+ tsdp_header_M_diff_none = 0x0000000,
+ tsdp_header_M_diff_hold_resume = (0x0000001 << 0),
+ tsdp_header_M_diff_index = (0x0000001 << 1),
+ tsdp_header_M_diff_codecs = (0x0000001 << 2),
+ tsdp_header_M_diff_network_info = (0x0000001 << 3),
+ tsdp_header_M_diff_ice_enabled = (0x0000001 << 4),
+ tsdp_header_M_diff_ice_restart = (0x0000001 << 5),
+ tsdp_header_M_diff_dtls_fingerprint = (0x0000001 << 6),
+ tsdp_header_M_diff_sdes_crypto = (0x0000001 << 7),
+ tsdp_header_M_diff_media_type = (0x0000001 << 8),
+ tsdp_header_M_diff_all = 0xFFFFFFFF
}
tsdp_header_M_diff_t;
OpenPOWER on IntegriCloud