doubango/trunk/tinyMSRP/include/tinyMSRP/headers/tmsrp_header_To-Path.h

75 lines
2.3 KiB
C

/*
* Copyright (C) 2009 Mamadou Diop.
*
* Contact: Mamadou Diop <diopmamadou@yahoo.fr>
*
* 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.
*
*/
/**@file tmsrp_header_To_Path.h
* @brief MSRP 'To-Path' header.
*
* @author Mamadou Diop <diopmamadou(at)yahoo.fr>
*
* @date Created: Sat Nov 8 16:54:58 2009 mdiop
*/
#ifndef _TMSRP_HEADER_TO_PATH_H_
#define _TMSRP_HEADER_TO_PATH_H_
#include "tinyMSRP_config.h"
#include "tinyMSRP/headers/tmsrp_header.h"
#include "tinyMSRP/parsers/tmsrp_parser_uri.h"
TMSRP_BEGIN_DECLS
/**@def TMSRP_HEADER_TO_PATH_CREATE
* Creates new msrp To-Path header. You must call @ref TSK_OBJECT_SAFE_FREE to free the header.
* @sa TSK_OBJECT_SAFE_FREE.
*/
#define TMSRP_HEADER_TO_PATH_VA_ARGS(uri) tmsrp_header_To_Path_def_t, (const tmsrp_uri_t*)uri
#define TMSRP_HEADER_TO_PATH_CREATE(uri) tsk_object_new(TMSRP_HEADER_TO_PATH_VA_ARGS(uri))
#define TMSRP_HEADER_TO_PATH_CREATE_NULL() TMSRP_HEADER_TO_PATH_CREATE(TMSRP_NULL)
////////////////////////////////////////////////////////////////////////////////////////////////////
/// @struct
///
/// @brief MSRP 'To-Path' header.
///
/// @par ABNF : "To-Path:" SP MSRP-URI *( SP MSRP-URI )
///
////////////////////////////////////////////////////////////////////////////////////////////////////
typedef struct tmsrp_header_To_Path_s
{
TMSRP_DECLARE_HEADER;
tmsrp_uri_t *uri;
tmsrp_uris_L_t *otherURIs;
}
tmsrp_header_To_Path_t;
typedef tsk_list_t tmsrp_headers_To_Path_L_t;
tmsrp_header_To_Path_t *tmsrp_header_To_Path_parse(const char *data, size_t size);
TINYMSRP_GEXTERN const void *tmsrp_header_To_Path_def_t;
TMSRP_END_DECLS
#endif /* _TMSRP_HEADER_TO_PATH_H_ */