doubango/trunk/tinyHTTP/include/tinyHTTP/headers/thttp_header_Content_Type.h

87 lines
2.9 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 thttp_header_Content_Type.h
* @brief HTTP header 'Content-Type'.
*
* @author Mamadou Diop <diopmamadou(at)yahoo.fr>
*
* @date Created: Sat Nov 8 16:54:58 2009 mdiop
*/
#ifndef _THTTP_HEADER_CONTENT_TYPE_H_
#define _THTTP_HEADER_CONTENT_TYPE_H_
#include "tinyhttp_config.h"
#include "tinyhttp/headers/thttp_header.h"
THTTP_BEGIN_DECLS
/**@def THTTP_HEADER_CONTENT_TYPE_CREATE
* Creates new http 'Content-Type' header. You must call @ref TSK_OBJECT_SAFE_FREE to free the header.
* @sa TSK_OBJECT_SAFE_FREE.
*/
#define THTTP_HEADER_CONTENT_TYPE_VA_ARGS(type) thttp_header_Content_Type_def_t, (const char*)type
#define THTTP_HEADER_CONTENT_TYPE_CREATE(type) tsk_object_new(THTTP_HEADER_CONTENT_TYPE_VA_ARGS(type))
#define THTTP_HEADER_CONTENT_TYPE_CREATE_NULL() THTTP_HEADER_CONTENT_TYPE_CREATE(THTTP_NULL)
////////////////////////////////////////////////////////////////////////////////////////////////////
/// @struct
///
/// @brief HTTP header 'Content-Type'.
/// @author Mamadou
/// @date 12/3/2009
///
/// @par ABNF= Content-Type
/// Content-Type = ( "Content-Type" / "c" ) HCOLON media-type
/// media-type = m-type SLASH m-subtype *( SEMI m-parameter)
/// m-type = discrete-type / composite-type
/// discrete-type = "text" / "image" / "audio" / "video" / "application" / extension-token
/// composite-type = "message" / "multipart" / extension-token
/// extension-token = ietf-token / x-token
/// ietf-token = token
/// x-token = "x-" token
/// m-subtype = extension-token / iana-token
/// iana-token = token
/// m-parameter = m-attribute EQUAL m-value
/// m-attribute = token
/// m-value = token / quoted-string
///
////////////////////////////////////////////////////////////////////////////////////////////////////
typedef struct thttp_header_Content_Type_s
{
THTTP_DECLARE_HEADER;
char* type;
}
thttp_header_Content_Type_t;
thttp_header_Content_Type_t *thttp_header_Content_Type_parse(const char *data, size_t size);
TINYHTTP_GEXTERN const void *thttp_header_Content_Type_def_t;
THTTP_END_DECLS
#endif /* _THTTP_HEADER_CONTENT_TYPE_H_ */