cleanup the code and remove unused files.

This commit is contained in:
bossiel 2010-03-13 06:22:28 +00:00
parent 85ec416b2c
commit 8842591ee4
261 changed files with 701 additions and 710 deletions

View File

@ -216,6 +216,7 @@ int thttp_message_parse(tsk_ragel_state_t *state, thttp_message_t **result, int
if( state->cs < %%{ write first_final; }%% )
{
TSK_DEBUG_ERROR("Failed to parse HTTP message.");
TSK_OBJECT_SAFE_FREE(*result);
return -2;
}

View File

@ -179,7 +179,7 @@ const thttp_header_t *thttp_message_get_header(const thttp_message_t *self, thtt
int thttp_message_tostring(const thttp_message_t *self, tsk_buffer_t *output)
{
if(!self){
if(!self || !output){
return -1;
}

View File

@ -206,6 +206,10 @@
RelativePath=".\test_auth.h"
>
</File>
<File
RelativePath=".\test_messages.h"
>
</File>
<File
RelativePath=".\test_stack.h"
>

View File

@ -63,7 +63,7 @@ void test_messages()
/* serialize the message */
thttp_message_tostring(message, buffer);
TSK_DEBUG_INFO("Response=\n%s", TSK_BUFFER_TO_STRING(buffer));
TSK_DEBUG_INFO("HTTP Message=\n%s", TSK_BUFFER_TO_STRING(buffer));
TSK_OBJECT_SAFE_FREE(buffer);
}

View File

@ -336,7 +336,7 @@
</References>
<Files>
<Filter
Name="src"
Name="source(*.c)"
>
<File
RelativePath=".\src\thttp.c"
@ -420,7 +420,7 @@
</Filter>
</Filter>
<Filter
Name="include"
Name="include(*.h)"
>
<File
RelativePath=".\include\thttp.h"
@ -508,7 +508,7 @@
</Filter>
</Filter>
<Filter
Name="abnf"
Name="abnf(*.abnf)"
>
<File
RelativePath=".\abnf\http.abnf"
@ -524,7 +524,7 @@
</File>
</Filter>
<Filter
Name="ragel"
Name="ragel(*.rl)"
>
<File
RelativePath=".\ragel\thttp_machine_header.rl"

View File

@ -174,7 +174,7 @@
</References>
<Files>
<Filter
Name="source"
Name="source(*.c)"
>
<File
RelativePath=".\src\tipsec.c"
@ -198,7 +198,7 @@
</File>
</Filter>
<Filter
Name="include"
Name="include(*.h)"
>
<File
RelativePath=".\src\tinyipsec_config.h"

View File

@ -336,7 +336,7 @@
</References>
<Files>
<Filter
Name="source"
Name="source(*.c)"
>
<File
RelativePath=".\src\tnet.c"
@ -524,7 +524,7 @@
</Filter>
</Filter>
<Filter
Name="include"
Name="include(*.h)"
>
<File
RelativePath=".\src\tinyNET_config.h"
@ -719,22 +719,6 @@
</File>
</Filter>
</Filter>
<Filter
Name="smc"
>
<File
RelativePath=".\smc\ice.sm"
>
</File>
<File
RelativePath=".\smc\stun.sm"
>
</File>
<File
RelativePath=".\smc\turn.sm"
>
</File>
</Filter>
</Files>
<Globals>
</Globals>

View File

@ -53,6 +53,9 @@ TSK_BEGIN_DECLS
*/
#define TSK_LIST_IS_EMPTY(self) (self ? (!self->head) : 1)
#define TSK_LIST_IS_FIRST(self, item) (self ? (self->head == item) : 0)
#define TSK_LIST_IS_LAST(self, item) (self ? (self->tail == item) : 0)
/**@ingroup tsk_list_group
* Item for linked list.
*/

View File

@ -55,12 +55,12 @@ tsk_object_header_t;
* Creates new object. The object MUST be declared using @ref TSK_DECLARE_OBJECT macro.
* @param objdef The object meta-data (definition). For more infomation see @ref tsk_object_def_t.
* @param ... List of parameters to pass to the constructor(defined in the meta-data).
* @retval The newly calloc()ed object with a reference counter equal to 1.
* @retval @ref tsk_object_t object with a reference counter equal to 1.
* @sa @ref tsk_object_new2.
*/
void* tsk_object_new(const tsk_object_def_t *objdef, ...)
tsk_object_t* tsk_object_new(const tsk_object_def_t *objdef, ...)
{
void *newobj = tsk_calloc(1, objdef->size);
tsk_object_t *newobj = tsk_calloc(1, objdef->size);
if(newobj)
{
(*(const tsk_object_def_t **) newobj) = objdef;
@ -91,12 +91,12 @@ void* tsk_object_new(const tsk_object_def_t *objdef, ...)
* Creates new object. The object MUST be declared using @ref TSK_DECLARE_OBJECT macro.
* @param objdef The object meta-data (definition). For more infomation see @ref tsk_object_def_t.
* @param ap Variable argument list to pass to the constructor(defined in the meta-data).
* @retval The newly calloc()ed object with a reference counter equal to 1.
* @retval @ref tsk_object_t object with a reference counter equal to 1.
* @sa @ref tsk_object_new.
*/
void* tsk_object_new2(const tsk_object_def_t *objdef, va_list* ap)
tsk_object_t* tsk_object_new2(const tsk_object_def_t *objdef, va_list* ap)
{
void *newobj = tsk_calloc(1, objdef->size);
tsk_object_t *newobj = tsk_calloc(1, objdef->size);
if(newobj)
{
(*(const tsk_object_def_t **) newobj) = objdef;
@ -121,7 +121,7 @@ void* tsk_object_new2(const tsk_object_def_t *objdef, va_list* ap)
* The object MUST be declared using @ref TSK_DECLARE_OBJECT macro and created using @ref tsk_object_new or @ref tsk_object_new2.
* @retval The size of the object.
*/
size_t tsk_object_sizeof(const void *self)
size_t tsk_object_sizeof(const tsk_object_t *self)
{
const tsk_object_def_t **objdef = (const tsk_object_def_t **)self;
if(objdef && *objdef){
@ -141,7 +141,7 @@ size_t tsk_object_sizeof(const void *self)
* @retval Zero if the two object are equal.
* Positive value if @a object1 is greater than @a object2 and a negative value otherwise.
*/
int tsk_object_cmp(const void *object1, const void *object2)
int tsk_object_cmp(const tsk_object_t *object1, const tsk_object_t *object2)
{
const tsk_object_def_t **objdef = (const tsk_object_def_t **)object1;
@ -159,7 +159,7 @@ int tsk_object_cmp(const void *object1, const void *object2)
* @retval The new object (incremented).
* @sa tsk_object_unref.
*/
void* tsk_object_ref(void *self)
tsk_object_t* tsk_object_ref(tsk_object_t *self)
{
if(self){
TSK_OBJECT_HEADER_GET(self)->refCount++;
@ -177,7 +177,7 @@ void* tsk_object_ref(void *self)
* @sa ref tsk_object_ref.
* @sa ref TSK_OBJECT_SAFE_FREE.
*/
void* tsk_object_unref(void *self)
tsk_object_t* tsk_object_unref(tsk_object_t *self)
{
if(self)
{
@ -196,7 +196,7 @@ void* tsk_object_unref(void *self)
* @param self The object to delete.
* @sa @ref TSK_OBJECT_SAFE_FREE.
*/
void tsk_object_delete(void *self)
void tsk_object_delete(tsk_object_t *self)
{
const tsk_object_def_t ** objdef = self;
if(self && *objdef)

View File

@ -37,6 +37,11 @@
TSK_BEGIN_DECLS
/**@ingroup tsk_object_group
* Plain object.
*/
typedef void tsk_object_t;
/**@ingroup tsk_object_group
* Safely free any object created using @ref tsk_object_new and declared using @ref TSK_DECLARE_OBJECT. If the reference count of the object was equal to 1 then this
* object will be freed otherwise the refrence counter will be decremented.
@ -142,19 +147,19 @@ TSK_BEGIN_DECLS
typedef struct tsk_object_def_s
{
size_t size; /**< The size of the object. */
void* (* constructor) (void *self, va_list *app); /**< Pointer to the constructor. */
void* (* destructor) (void *); /**< Pointer to the destructor. */
int (* objcmp) (const void *object1, const void *object2); /**< Pointer to the comparator. */
void* (* constructor) (tsk_object_t *, va_list *); /**< Pointer to the constructor. */
void* (* destructor) (tsk_object_t *); /**< Pointer to the destructor. */
int (* objcmp) (const tsk_object_t *, const tsk_object_t *); /**< Pointer to the comparator. */
}
tsk_object_def_t;
TINYSAK_API void* tsk_object_new(const tsk_object_def_t *objdef, ...);
TINYSAK_API void* tsk_object_new2(const tsk_object_def_t *objdef, va_list* ap);
TINYSAK_API size_t tsk_object_sizeof(const void *self);
TINYSAK_API int tsk_object_cmp(const void *self, const void *object);
TINYSAK_API void* tsk_object_ref(void *self);
TINYSAK_API void* tsk_object_unref(void *self);
TINYSAK_API void tsk_object_delete(void *self);
TINYSAK_API tsk_object_t* tsk_object_new(const tsk_object_def_t *objdef, ...);
TINYSAK_API tsk_object_t* tsk_object_new2(const tsk_object_def_t *objdef, va_list* ap);
TINYSAK_API size_t tsk_object_sizeof(const void *tsk_object_t);
TINYSAK_API int tsk_object_cmp(const void *self, const tsk_object_t *object);
TINYSAK_API tsk_object_t* tsk_object_ref(tsk_object_t *self);
TINYSAK_API tsk_object_t* tsk_object_unref(tsk_object_t *self);
TINYSAK_API void tsk_object_delete(tsk_object_t *self);
TSK_END_DECLS

View File

@ -45,7 +45,7 @@
Name="VCCLCompilerTool"
Optimization="0"
AdditionalIncludeDirectories="&quot;$(DOUBANGO_HOME)\thirdparties\win32\include&quot;"
PreprocessorDefinitions="DEBUG_LEVEL=DEBUG_LEVEL_INFO;WIN32;_DEBUG;_WINDOWS;_USRDLL;TINYSAK_EXPORTS;_WIN32_WINNT 0x0501"
PreprocessorDefinitions="DEBUG_LEVEL=DEBUG_LEVEL_INFO;WIN32;_DEBUG;_WINDOWS;_USRDLL;TINYSAK_EXPORTS;_WIN32_WINNT=0x0501"
MinimalRebuild="true"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
@ -342,7 +342,7 @@
</References>
<Files>
<Filter
Name="include"
Name="include(*.h)"
Filter="h;hpp;hxx;hm;inl;inc;xsd"
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
>
@ -472,7 +472,7 @@
</File>
</Filter>
<Filter
Name="source"
Name="source(*.c)"
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
>

View File

@ -30,9 +30,9 @@
#ifndef TINYSIP_TSIP_MESSAGE_H
#define TINYSIP_TSIP_MESSAGE_H
#include "tinysip_config.h"
#include "tinySIP_config.h"
#include "tinysip/tsip_event.h"
#include "tinySIP/tsip_event.h"
TSIP_BEGIN_DECLS

View File

@ -30,9 +30,9 @@
#ifndef TINYSIP_TSIP_PUBLISH_H
#define TINYSIP_TSIP_PUBLISH_H
#include "tinysip_config.h"
#include "tinySIP_config.h"
#include "tinysip/tsip_event.h"
#include "tinySIP/tsip_event.h"
TSIP_BEGIN_DECLS

View File

@ -30,9 +30,9 @@
#ifndef TINYSIP_TSIP_REGISTER_H
#define TINYSIP_TSIP_REGISTER_H
#include "tinysip_config.h"
#include "tinySIP_config.h"
#include "tinysip/tsip_event.h"
#include "tinySIP/tsip_event.h"
TSIP_BEGIN_DECLS

View File

@ -30,9 +30,9 @@
#ifndef TINYSIP_TSIP_SUBSCRIBE_H
#define TINYSIP_TSIP_SUBSCRIBE_H
#include "tinysip_config.h"
#include "tinySIP_config.h"
#include "tinysip/tsip_event.h"
#include "tinySIP/tsip_event.h"
TSIP_BEGIN_DECLS

View File

@ -30,14 +30,14 @@
#ifndef TINYSIP_AUTHENTICATION_CHALLENGE_H
#define TINYSIP_AUTHENTICATION_CHALLENGE_H
#include "tinysip_config.h"
#include "tinySIP_config.h"
#include "tsip.h"
#include "tinysip/tsip_message.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP/tsip_message.h"
#include "tinySIP/headers/tsip_header.h"
#include "tinysip/authentication/tsip_milenage.h"
#include "tinySIP/authentication/tsip_milenage.h"
#include "tinyhttp/auth/thttp_auth.h"

View File

@ -56,7 +56,7 @@
#ifndef TINYSIP_AUTHENTICATION_MILENAGE_H
#define TINYSIP_AUTHENTICATION_MILENAGE_H
#include "tinysip_config.h"
#include "tinySIP_config.h"
TSIP_BEGIN_DECLS

View File

@ -59,7 +59,7 @@
#ifndef TINYSIP_AUTHENTICATION_RIJNDAEL_H
#define TINYSIP_AUTHENTICATION_RIJNDAEL_H
#include "tinysip_config.h"
#include "tinySIP_config.h"
TSIP_BEGIN_DECLS

View File

@ -30,15 +30,15 @@
#ifndef TINYSIP_DIALOG_H
#define TINYSIP_DIALOG_H
#include "tinysip_config.h"
#include "tinySIP_config.h"
#include "tsip.h"
#include "tinysip/tsip_uri.h"
#include "tinysip/tsip_timers.h"
#include "tinysip/tsip_message.h"
#include "tinysip/tsip_operation.h"
#include "tinySIP/tsip_uri.h"
#include "tinySIP/tsip_timers.h"
#include "tinySIP/tsip_message.h"
#include "tinySIP/tsip_operation.h"
#include "tinysip/authentication/tsip_challenge.h"
#include "tinySIP/authentication/tsip_challenge.h"
#include "tsk_safeobj.h"
#include "tsk_list.h"

View File

@ -30,10 +30,10 @@
#ifndef TINYSIP_DIALOG_LAYER_H
#define TINYSIP_DIALOG_LAYER_H
#include "tinysip_config.h"
#include "tinySIP_config.h"
#include "tsip.h"
#include "tinysip/dialogs/tsip_dialog.h"
#include "tinySIP/dialogs/tsip_dialog.h"
#include "tsk_safeobj.h"
#include "tsk_list.h"

View File

@ -30,8 +30,8 @@
#ifndef TINYSIP_DIALOG_MESSAGE_H
#define TINYSIP_DIALOG_MESSAGE_H
#include "tinysip_config.h"
#include "tinysip/dialogs/tsip_dialog.h"
#include "tinySIP_config.h"
#include "tinySIP/dialogs/tsip_dialog.h"
#include "tsk_fsm.h"

View File

@ -30,8 +30,8 @@
#ifndef TINYSIP_DIALOG_PUBLISH_H
#define TINYSIP_DIALOG_PUBLISH_H
#include "tinysip_config.h"
#include "tinysip/dialogs/tsip_dialog.h"
#include "tinySIP_config.h"
#include "tinySIP/dialogs/tsip_dialog.h"
#include "tsk_fsm.h"

View File

@ -30,8 +30,8 @@
#ifndef TINYSIP_DIALOG_REGISTER_H
#define TINYSIP_DIALOG_REGISTER_H
#include "tinysip_config.h"
#include "tinysip/dialogs/tsip_dialog.h"
#include "tinySIP_config.h"
#include "tinySIP/dialogs/tsip_dialog.h"
#include "tsk_fsm.h"

View File

@ -30,8 +30,8 @@
#ifndef TINYSIP_DIALOG_SUBSCRIBE_H
#define TINYSIP_DIALOG_SUBSCRIBE_H
#include "tinysip_config.h"
#include "tinysip/dialogs/tsip_dialog.h"
#include "tinySIP_config.h"
#include "tinySIP/dialogs/tsip_dialog.h"
#include "tsk_fsm.h"

View File

@ -30,7 +30,7 @@
#ifndef TINYSIP_HEADER_H
#define TINYSIP_HEADER_H
#include "tinysip_config.h"
#include "tinySIP_config.h"
#include "tsk_ragel_state.h"
@ -44,10 +44,11 @@
TSIP_BEGIN_DECLS
#define TSIP_HEADER(self) ((tsip_header_t*)(self))
#define TSIP_HEADER_PARAMS(self) (TSIP_HEADER(self)->params)
#define TSIP_HEADER(self) ((tsip_header_t*)(self))
#define TSIP_HEADER_PARAMS(self) (TSIP_HEADER(self)->params)
#define TSIP_HEADER_VALUE_TOSTRING_F(self) ((tsip_header_value_tostring_f)(self))
typedef int (*tsip_header_value_tostring)(const void* header/*FIXME*/, tsk_buffer_t* output);
typedef int (*tsip_header_value_tostring_f)(const struct tsip_header_s* header, tsk_buffer_t* output);
/**
* @enum tsip_header_type_e
@ -158,7 +159,7 @@ typedef struct tsip_header_s
{
TSK_DECLARE_OBJECT;
tsip_header_type_t type;
tsip_header_value_tostring tostring;
tsip_header_value_tostring_f tostring;
tsk_params_L_t *params;
}
tsip_header_t;

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_ACCEPT_CONTACT_H_
#define _TSIP_HEADER_ACCEPT_CONTACT_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_ACCEPT_ENCODING_H_
#define _TSIP_HEADER_ACCEPT_ENCODING_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_ACCEPT_LANGUAGE_H_
#define _TSIP_HEADER_ACCEPT_LANGUAGE_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_ACCEPT_RESOURCE_PRIORITY_H_
#define _TSIP_HEADER_ACCEPT_RESOURCE_PRIORITY_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_ALERT_INFO_H_
#define _TSIP_HEADER_ALERT_INFO_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_ALLOW_H_
#define _TSIP_HEADER_ALLOW_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_ALLOW_EVENTS_H_
#define _TSIP_HEADER_ALLOW_EVENTS_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_AUTHENTICATION_INFO_H_
#define _TSIP_HEADER_AUTHENTICATION_INFO_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_AUTHORIZATION_H_
#define _TSIP_HEADER_AUTHORIZATION_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_CSEQ_H_
#define _TSIP_HEADER_CSEQ_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_CALL_ID_H_
#define _TSIP_HEADER_CALL_ID_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
#include "tsk_uuid.h"

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_CALL_INFO_H_
#define _TSIP_HEADER_CALL_INFO_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,9 +30,9 @@
#ifndef _TSIP_HEADER_CONTACT_H_
#define _TSIP_HEADER_CONTACT_H_
#include "tinysip_config.h"
#include "tinysip/tsip_uri.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/tsip_uri.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_CONTENT_DISPOSITION_H_
#define _TSIP_HEADER_CONTENT_DISPOSITION_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_CONTENT_ENCODING_H_
#define _TSIP_HEADER_CONTENT_ENCODING_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_CONTENT_LANGUAGE_H_
#define _TSIP_HEADER_CONTENT_LANGUAGE_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
/// @struct

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_CONTENT_LENGTH_H_
#define _TSIP_HEADER_CONTENT_LENGTH_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_CONTENT_TYPE_H_
#define _TSIP_HEADER_CONTENT_TYPE_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_DATE_H_
#define _TSIP_HEADER_DATE_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_DUMMY_H_
#define _TSIP_HEADER_DUMMY_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_ERROR_INFO_H_
#define _TSIP_HEADER_ERROR_INFO_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_EVENT_H_
#define _TSIP_HEADER_EVENT_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_EXPIRES_H_
#define _TSIP_HEADER_EXPIRES_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,9 +30,9 @@
#ifndef _TSIP_HEADER_FROM_H_
#define _TSIP_HEADER_FROM_H_
#include "tinysip_config.h"
#include "tinysip/tsip_uri.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/tsip_uri.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_HISTORY_INFO_H_
#define _TSIP_HEADER_HISTORY_INFO_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_IDENTITY_H_
#define _TSIP_HEADER_IDENTITY_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_IDENTITY_INFO_H_
#define _TSIP_HEADER_IDENTITY_INFO_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_IN_REPLY_TO_H_
#define _TSIP_HEADER_IN_REPLY_TO_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_JOIN_H_
#define _TSIP_HEADER_JOIN_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_MIME_VERSION_H_
#define _TSIP_HEADER_MIME_VERSION_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_MAX_FORWARDS_H_
#define _TSIP_HEADER_MAX_FORWARDS_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_MIN_EXPIRES_H_
#define _TSIP_HEADER_MIN_EXPIRES_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_MIN_SE_H_
#define _TSIP_HEADER_MIN_SE_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_ORGANIZATION_H_
#define _TSIP_HEADER_ORGANIZATION_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_ACCESS_NETWORK_INFO_H_
#define _TSIP_HEADER_P_ACCESS_NETWORK_INFO_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_ANSWER_STATE_H_
#define _TSIP_HEADER_P_ANSWER_STATE_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,10 +30,10 @@
#ifndef _TSIP_HEADER_P_ASSERTED_IDENTITY_H_
#define _TSIP_HEADER_P_ASSERTED_IDENTITY_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
#include "tinysip/tsip_uri.h"
#include "tinySIP/tsip_uri.h"
TSIP_BEGIN_DECLS

View File

@ -30,10 +30,10 @@
#ifndef _TSIP_HEADER_P_ASSOCIATED_URI_H_
#define _TSIP_HEADER_P_ASSOCIATED_URI_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
#include "tinysip/tsip_uri.h"
#include "tinySIP/tsip_uri.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_CALLED_PARTY_ID_H_
#define _TSIP_HEADER_P_CALLED_PARTY_ID_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_CHARGING_FUNCTION_ADDRESSES_H_
#define _TSIP_HEADER_P_CHARGING_FUNCTION_ADDRESSES_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_CHARGING_VECTOR_H_
#define _TSIP_HEADER_P_CHARGING_VECTOR_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_DCS_BILLING_INFO_H_
#define _TSIP_HEADER_P_DCS_BILLING_INFO_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_DCS_LAES_H_
#define _TSIP_HEADER_P_DCS_LAES_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_DCS_OSPS_H_
#define _TSIP_HEADER_P_DCS_OSPS_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_DCS_REDIRECT_H_
#define _TSIP_HEADER_P_DCS_REDIRECT_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_DCS_TRACE_PARTY_ID_H_
#define _TSIP_HEADER_P_DCS_TRACE_PARTY_ID_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_EARLY_MEDIA_H_
#define _TSIP_HEADER_P_EARLY_MEDIA_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_MEDIA_AUTHORIZATION_H_
#define _TSIP_HEADER_P_MEDIA_AUTHORIZATION_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,9 +30,9 @@
#ifndef _TSIP_HEADER_P_PREFERRED_IDENTITY_H_
#define _TSIP_HEADER_P_PREFERRED_IDENTITY_H_
#include "tinysip_config.h"
#include "tinysip/tsip_uri.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/tsip_uri.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_PROFILE_KEY_H_
#define _TSIP_HEADER_P_PROFILE_KEY_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_USER_DATABASE_H_
#define _TSIP_HEADER_P_USER_DATABASE_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_P_VISITED_NETWORK_ID_H_
#define _TSIP_HEADER_P_VISITED_NETWORK_ID_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,10 +30,10 @@
#ifndef _TSIP_HEADER_PATH_H_
#define _TSIP_HEADER_PATH_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
#include "tinysip/tsip_uri.h"
#include "tinySIP/tsip_uri.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_PRIORITY_H_
#define _TSIP_HEADER_PRIORITY_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_PRIVACY_H_
#define _TSIP_HEADER_PRIVACY_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_PROXY_AUTHENTICATE_H_
#define _TSIP_HEADER_PROXY_AUTHENTICATE_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_PROXY_AUTHORIZATION_H_
#define _TSIP_HEADER_PROXY_AUTHORIZATION_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_PROXY_REQUIRE_H_
#define _TSIP_HEADER_PROXY_REQUIRE_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_RACK_H_
#define _TSIP_HEADER_RACK_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_RSEQ_H_
#define _TSIP_HEADER_RSEQ_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_REASON_H_
#define _TSIP_HEADER_REASON_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_RECORD_ROUTE_H_
#define _TSIP_HEADER_RECORD_ROUTE_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_REFER_SUB_H_
#define _TSIP_HEADER_REFER_SUB_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_REFER_TO_H_
#define _TSIP_HEADER_REFER_TO_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_REFERRED_BY_H_
#define _TSIP_HEADER_REFERRED_BY_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_REJECT_CONTACT_H_
#define _TSIP_HEADER_REJECT_CONTACT_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_REPLACES_H_
#define _TSIP_HEADER_REPLACES_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_REPLY_TO_H_
#define _TSIP_HEADER_REPLY_TO_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_REQUEST_DISPOSITION_H_
#define _TSIP_HEADER_REQUEST_DISPOSITION_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_REQUIRE_H_
#define _TSIP_HEADER_REQUIRE_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_RESOURCE_PRIORITY_H_
#define _TSIP_HEADER_RESOURCE_PRIORITY_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

View File

@ -30,8 +30,8 @@
#ifndef _TSIP_HEADER_RETRY_AFTER_H_
#define _TSIP_HEADER_RETRY_AFTER_H_
#include "tinysip_config.h"
#include "tinysip/headers/tsip_header.h"
#include "tinySIP_config.h"
#include "tinySIP/headers/tsip_header.h"
TSIP_BEGIN_DECLS

Some files were not shown because too many files have changed in this diff Show More