From f6b0884b3d6f82154ae3ae0bbc7dac5f3f218916 Mon Sep 17 00:00:00 2001 From: bossiel Date: Tue, 23 Feb 2010 21:28:29 +0000 Subject: [PATCH] Update MAC OSX support --- trunk/tinyHTTP/include/tinyhttp_config.h | 6 + trunk/tinyIPSec/src/tipsec_common.c | 158 +- trunk/tinyNET/src/dns/tnet_dns_rr.c | 1010 ++--- trunk/tinyNET/src/tnet_transport_poll.c | 98 +- trunk/tinyNET/src/tnet_transport_win32.c | 15 +- trunk/tinyNET/src/tnet_utils.c | 5 +- .../tinysip/transports/tsip_transport_ipsec.h | 101 +- trunk/tinySIP/test/test/test_stack.h | 55 +- .../tinySIP.xcodeproj/diopmamadou.pbxuser | 1702 +++++++- .../diopmamadou.perspectivev3 | 297 +- .../tinySIP/tinySIP.xcodeproj/project.pbxproj | 3561 ++++++++++------- 11 files changed, 4579 insertions(+), 2429 deletions(-) diff --git a/trunk/tinyHTTP/include/tinyhttp_config.h b/trunk/tinyHTTP/include/tinyhttp_config.h index 7bd1d594..a3a49bc2 100644 --- a/trunk/tinyHTTP/include/tinyhttp_config.h +++ b/trunk/tinyHTTP/include/tinyhttp_config.h @@ -64,6 +64,12 @@ # define _CRT_SECURE_NO_WARNINGS #endif +/* Detecting C99 compilers + */ +#if (__STDC_VERSION__ == 199901L) && !defined(__C99__) +# define __C99__ +#endif + #include #ifdef __SYMBIAN32__ #include diff --git a/trunk/tinyIPSec/src/tipsec_common.c b/trunk/tinyIPSec/src/tipsec_common.c index 75bd8f80..fce69406 100644 --- a/trunk/tinyIPSec/src/tipsec_common.c +++ b/trunk/tinyIPSec/src/tipsec_common.c @@ -1,60 +1,100 @@ -/* -* Copyright (C) 2009 Mamadou Diop. -* -* Contact: Mamadou Diop -* -* 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 tipsec_common.c - * @brief IPSec common functions. - * - * @author Mamadou Diop - * - * @date Created: Sat Nov 8 16:54:58 2009 mdiop - */ -#include "tipsec_common.h" - -#include "tsk_debug.h" - -#if !HAVE_IPSEC_VISTA && !HAVE_IPSEC_XP && !HAVE_IPSEC_RACOON - -int tipsec_start(tipsec_context_t* ctx) -{ - TSK_DEBUG_ERROR("No IPSec implementation found."); - return -1; -} - -int tipsec_set_local(tipsec_context_t* ctx, const char* addr_local, const char* addr_remote, tipsec_port_t port_uc, tipsec_port_t port_us) -{ - TSK_DEBUG_ERROR("No IPSec implementation found."); - return -1; -} - -int tipsec_set_remote(tipsec_context_t* ctx, tipsec_spi_t spi_pc, tipsec_spi_t spi_ps, tipsec_port_t port_pc, tipsec_port_t port_ps) -{ - TSK_DEBUG_ERROR("No IPSec implementation found."); - return -1; -} - -int tipsec_stop(tipsec_context_t* ctx) -{ - TSK_DEBUG_ERROR("No IPSec implementation found."); - return -1; -} - +/* +* Copyright (C) 2009 Mamadou Diop. +* +* Contact: Mamadou Diop +* +* 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 tipsec_common.c + * @brief IPSec common functions. + * + * @author Mamadou Diop + * + * @date Created: Sat Nov 8 16:54:58 2009 mdiop + */ +#include "tipsec_common.h" + +#include "tsk_debug.h" + +#if !HAVE_IPSEC_VISTA && !HAVE_IPSEC_XP && !HAVE_IPSEC_RACOON + +int tipsec_start(tipsec_context_t* ctx) +{ + TSK_DEBUG_ERROR("No IPSec implementation found."); + return -1; +} + +int tipsec_set_local(tipsec_context_t* ctx, const char* addr_local, const char* addr_remote, tipsec_port_t port_uc, tipsec_port_t port_us) +{ + TSK_DEBUG_ERROR("No IPSec implementation found."); + return -1; +} + +int tipsec_set_remote(tipsec_context_t* ctx, tipsec_spi_t spi_pc, tipsec_spi_t spi_ps, tipsec_port_t port_pc, tipsec_port_t port_ps, tipsec_lifetime_t lifetime) +{ + TSK_DEBUG_ERROR("No IPSec implementation found."); + return -1; +} + +int tipsec_stop(tipsec_context_t* ctx) +{ + TSK_DEBUG_ERROR("No IPSec implementation found."); + return -1; +} + + + +//================================================================================================= +// IPSec context object definition +// +static void* tipsec_context_create(void * self, va_list * app) +{ + tipsec_context_t *context = self; + if(context) + { + } +bail: + return self; +} + +static void* tipsec_context_destroy(void * self) +{ + tipsec_context_t *context = self; + if(context) + { + } + + return self; +} + +static int tipsec_context_cmp(const void *obj1, const void *obj2) +{ + return-1; +} + +static const tsk_object_def_t tipsec_context_def_s = +{ +sizeof(tipsec_context_t), +tipsec_context_create, +tipsec_context_destroy, +tipsec_context_cmp, +}; + + +const void *tipsec_context_def_t = &tipsec_context_def_s; #endif \ No newline at end of file diff --git a/trunk/tinyNET/src/dns/tnet_dns_rr.c b/trunk/tinyNET/src/dns/tnet_dns_rr.c index 27e57072..f750c8fa 100644 --- a/trunk/tinyNET/src/dns/tnet_dns_rr.c +++ b/trunk/tinyNET/src/dns/tnet_dns_rr.c @@ -1,504 +1,506 @@ -/* -* Copyright (C) 2009 Mamadou Diop. -* -* Contact: Mamadou Diop -* -* 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 tnet_dns_rr.c - * @brief DNS Resource Record (RFC 1034 and 1035). - * - * @author Mamadou Diop - * - * @date Created: Sat Nov 8 16:54:58 2009 mdiop - */ -#include "tnet_dns_rr.h" - -#include "tnet_dns_a.h" -#include "tnet_dns_aaaa.h" -#include "tnet_dns_cname.h" -#include "tnet_dns_mx.h" -#include "tnet_dns_naptr.h" -#include "tnet_dns_ns.h" -#include "tnet_dns_opt.h" -#include "tnet_dns_ptr.h" -#include "tnet_dns_soa.h" -#include "tnet_dns_srv.h" -#include "tnet_dns_txt.h" - -#include "../tnet_types.h" - -#include "tsk_memory.h" -#include "tsk_debug.h" -#include "tsk_string.h" - -int tnet_dns_rr_init(tnet_dns_rr_t *rr, tnet_dns_qtype_t qtype, tnet_dns_qclass_t qclass) -{ - if(rr) - { - if(!rr->initialized) - { - rr->qtype = qtype; - rr->qclass = qclass; - - rr->initialized = 1; - return 0; - } - return -2; - } - return -1; -} - -int tnet_dns_rr_deinit(tnet_dns_rr_t *rr) -{ - if(rr) - { - if(rr->initialized) - { - TSK_FREE(rr->name); - TSK_FREE(rr->rpdata); - - rr->initialized = 0; - return 0; - } - return -2; - } - return -1; -} - -int tnet_dns_rr_charstring_deserialize(const void* data, size_t size, char** charstring, size_t *offset) -{ - /* RFC 1035 - 3.3. Standard RRs - is a single length octet followed by that number of characters. - is treated as binary information, and can be up to 256 characters in - length (including the length octet). - */ - uint8_t* dataPtr = (((uint8_t*)data)+ *offset); - uint8_t length = *dataPtr; - - if(length < size) - { - *charstring = tsk_strndup((dataPtr + 1), length); - *offset += (1 + length); - - return 0; - } - else return -1; -} - - -int tnet_dns_rr_qname_deserialize(const void* data, size_t size, char** name, size_t *offset) -{ - /* RFC 1035 - 4.1.4. Message compression - - The pointer takes the form of a two octet sequence: - +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ - | 1 1| OFFSET | - +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ - */ - uint8_t* dataPtr = (((uint8_t*)data) + *offset); - uint8_t* dataEnd = (dataPtr + size); - unsigned usingPtr = 0; /* Do not change. */ - - while(*dataPtr) - { - usingPtr = ((*dataPtr & 0xC0) == 0xC0); - - if(usingPtr) - { - size_t ptr_offset = (*dataPtr & 0x3F); - ptr_offset = ptr_offset << 8 | *(dataPtr+1); - - *offset += 2; - return tnet_dns_rr_qname_deserialize(data, size, name, &ptr_offset); - } - else - { - uint8_t length; - - if(*name) - { - tsk_strcat(name, "."); - } - - length = *dataPtr; - *offset+=1, dataPtr++; - - tsk_strncat(name, dataPtr, length); - *offset += length, dataPtr += length; - } - } - - *offset+=1; - - return 0; -} - -//int tnet_dns_rr_qname_deserialize(const void* data, size_t size, char** name, size_t *offset) -//{ -// /* RFC 1035 - 4.1.4. Message compression -// -// The pointer takes the form of a two octet sequence: -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 1 1| OFFSET | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// */ -// uint8_t* dataPtr = (((uint8_t*)data) + *offset); -// uint8_t* dataEnd = (dataPtr + size); -// unsigned usingPtr = 0; /* Do not change. */ -// unsigned islast = 0; -// -// while(!islast) -// { -// usingPtr = ((*dataPtr & 0xC0) == 0xC0); -// -// if(usingPtr) -// { -// uint8_t *Ptr; -// uint16_t ptr_offset = (*dataPtr & 0x3F); -// ptr_offset = ptr_offset << 8 | *(dataPtr+1); -// Ptr = ((uint8_t*)data) + ptr_offset; -// -// tnet_qname_label_parse(Ptr, (dataEnd - Ptr), name, &islast); -// *offset += 2, dataPtr += 2; -// } -// else -// { -// size_t length = tnet_qname_label_parse(dataPtr, size, name, &islast); -// *offset += length, dataPtr += length; -// } -// } -// -// *offset += usingPtr ? 0 : 1; -// -// return 0; -//} - -int tnet_dns_rr_qname_serialize(const char* qname, tsk_buffer_t* output) -{ - /* - QNAME a domain name represented as a sequence of labels, where - each label consists of a length octet followed by that - number of octets. The domain name terminates with the - zero length octet for the null label of the root. Note - that this field may be an odd number of octets; no - padding is used. - - Example: "doubango.com" ==> 8doubango3comNULL - */ - static uint8_t null = 0; - - if(qname) - { - char* _qname = tsk_strdup(qname); - char* label = strtok(_qname, "."); - - while(label) - { - uint8_t length = strlen(label); - tsk_buffer_append(output, &length, 1); - tsk_buffer_append(output, label, strlen(label)); - - label = strtok (0, "."); - } - - TSK_FREE(_qname); - } - - /* terminates domain name */ - tsk_buffer_append(output, &null, 1); - - return 0; -} - -tnet_dns_rr_t* tnet_dns_rr_deserialize(const void* data, size_t size, size_t* offset) -{ - tnet_dns_rr_t *rr = 0; - uint8_t* dataStart = (uint8_t*)data; - uint8_t* dataPtr = (dataStart + *offset); - uint8_t* dataEnd = (dataPtr+size); - tnet_dns_qtype_t qtype; - tnet_dns_qclass_t qclass; - uint32_t ttl; - uint16_t rdlength; - char* qname = 0; - - /* Check validity */ - if(!dataPtr || !size) - { - goto bail; - } - - /* == Parse QNAME - */ - tnet_dns_rr_qname_deserialize(dataStart, size, &qname, offset); - dataPtr = (dataStart + *offset); - /* == Parse QTYPE - */ - qtype = (tnet_dns_qtype_t)ntohs(*((uint16_t*)dataPtr)); - dataPtr += 2, *offset += 2; - /* == Parse QCLASS - */ - qclass = (tnet_dns_qclass_t)ntohs(*((uint16_t*)dataPtr)); - dataPtr += 2, *offset += 2; - /* == Parse TTL - */ - ttl = ntohl(*((uint32_t*)dataPtr)); - dataPtr += 4, *offset += 4; - /* == Parse RDLENGTH - */ - rdlength = ntohs(*((uint16_t*)dataPtr)); - dataPtr += 2, *offset += 2; - - switch(qtype) - { - case qtype_a: - { - rr = TNET_DNS_A_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); - break; - } - - case qtype_aaaa: - { - rr = TNET_DNS_AAAA_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); - break; - } - - case qtype_cname: - { - rr = TNET_DNS_CNAME_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); - break; - } - - case qtype_mx: - { - rr = TNET_DNS_MX_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); - break; - } - - case qtype_naptr: - { - rr = TNET_DNS_NAPTR_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); - break; - } - - case qtype_ns: - { - rr = TNET_DNS_NS_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); - break; - } - - case qtype_opt: - { - unsigned payload_size = qclass; - rr = TNET_DNS_OPT_CREATE(payload_size); - break; - } - - case qtype_ptr: - { - rr = TNET_DNS_PTR_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); - break; - } - - case qtype_soa: - { - rr = TNET_DNS_SOA_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); - break; - } - - case qtype_srv: - { - rr = TNET_DNS_SRV_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); - break; - } - - case qtype_txt: - { - rr = TNET_DNS_TXT_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); - break; - } - - default: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - } - -bail: - TSK_FREE(qname); - - *offset += rdlength; - return rr; -} - - -int tnet_dns_rr_serialize(const tnet_dns_rr_t* rr, tsk_buffer_t *output) -{ - if(!rr || !output) - { - return -1; - } - - /* NAME - */ - { - tnet_dns_rr_qname_serialize(rr->name, output); - } - - /* TYPE - */ - { - uint16_t qtype = htons(rr->qtype); - tsk_buffer_append(output, &(qtype), 2); - } - - /* CLASS - */ - { - uint16_t qclass = htons(rr->qclass); - tsk_buffer_append(output, &(qclass), 2); - } - - /* TTL - */ - { - uint32_t ttl = htonl(rr->ttl); - tsk_buffer_append(output, &(ttl), 4); - } - - /* RDLENGTH - */ - { - uint16_t length = htons(rr->rdlength); - tsk_buffer_append(output, &(length), 2); - } - - /* RDATA - */ - - switch(rr->qtype) - { - case qtype_a: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - - case qtype_aaaa: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - - case qtype_cname: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - - case qtype_mx: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - - case qtype_naptr: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - - case qtype_ns: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - - case qtype_opt: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - - case qtype_ptr: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - - case qtype_soa: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - - case qtype_srv: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - - case qtype_txt: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - - default: - { - TSK_DEBUG_ERROR("NOT IMPLEMENTED"); - break; - } - } - - return -1; -} - - -//================================================================================================= -// [[DNS RR]] object definition -// -static void* tnet_dns_rr_create(void * self, va_list * app) -{ - tnet_dns_rr_t *rr = self; - if(rr) - { - tnet_dns_rr_init(rr, qtype_any, qclass_any); - } - return self; -} - -static void* tnet_dns_rr_destroy(void * self) -{ - tnet_dns_rr_t *rr = self; - if(rr) - { - tnet_dns_rr_deinit(rr); - } - return self; -} - -static const tsk_object_def_t tnet_dns_rr_def_s = -{ - sizeof(tnet_dns_rr_t), - tnet_dns_rr_create, - tnet_dns_rr_destroy, - 0, -}; -const void *tnet_dns_rr_def_t = &tnet_dns_rr_def_s; +/* +* Copyright (C) 2009 Mamadou Diop. +* +* Contact: Mamadou Diop +* +* 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 tnet_dns_rr.c + * @brief DNS Resource Record (RFC 1034 and 1035). + * + * @author Mamadou Diop + * + * @date Created: Sat Nov 8 16:54:58 2009 mdiop + */ +#include "tnet_dns_rr.h" + +#include "tnet_dns_a.h" +#include "tnet_dns_aaaa.h" +#include "tnet_dns_cname.h" +#include "tnet_dns_mx.h" +#include "tnet_dns_naptr.h" +#include "tnet_dns_ns.h" +#include "tnet_dns_opt.h" +#include "tnet_dns_ptr.h" +#include "tnet_dns_soa.h" +#include "tnet_dns_srv.h" +#include "tnet_dns_txt.h" + +#include "../tnet_types.h" + +#include "tsk_memory.h" +#include "tsk_debug.h" +#include "tsk_string.h" + +#include /* strtok, strlen ... */ + +int tnet_dns_rr_init(tnet_dns_rr_t *rr, tnet_dns_qtype_t qtype, tnet_dns_qclass_t qclass) +{ + if(rr) + { + if(!rr->initialized) + { + rr->qtype = qtype; + rr->qclass = qclass; + + rr->initialized = 1; + return 0; + } + return -2; + } + return -1; +} + +int tnet_dns_rr_deinit(tnet_dns_rr_t *rr) +{ + if(rr) + { + if(rr->initialized) + { + TSK_FREE(rr->name); + TSK_FREE(rr->rpdata); + + rr->initialized = 0; + return 0; + } + return -2; + } + return -1; +} + +int tnet_dns_rr_charstring_deserialize(const void* data, size_t size, char** charstring, size_t *offset) +{ + /* RFC 1035 - 3.3. Standard RRs + is a single length octet followed by that number of characters. + is treated as binary information, and can be up to 256 characters in + length (including the length octet). + */ + uint8_t* dataPtr = (((uint8_t*)data)+ *offset); + uint8_t length = *dataPtr; + + if(length < size) + { + *charstring = tsk_strndup((const char*)(dataPtr + 1), length); + *offset += (1 + length); + + return 0; + } + else return -1; +} + + +int tnet_dns_rr_qname_deserialize(const void* data, size_t size, char** name, size_t *offset) +{ + /* RFC 1035 - 4.1.4. Message compression + + The pointer takes the form of a two octet sequence: + +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ + | 1 1| OFFSET | + +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ + */ + uint8_t* dataPtr = (((uint8_t*)data) + *offset); + uint8_t* dataEnd = (dataPtr + size); + unsigned usingPtr = 0; /* Do not change. */ + + while(*dataPtr) + { + usingPtr = ((*dataPtr & 0xC0) == 0xC0); + + if(usingPtr) + { + size_t ptr_offset = (*dataPtr & 0x3F); + ptr_offset = ptr_offset << 8 | *(dataPtr+1); + + *offset += 2; + return tnet_dns_rr_qname_deserialize(data, size, name, &ptr_offset); + } + else + { + uint8_t length; + + if(*name) + { + tsk_strcat(name, "."); + } + + length = *dataPtr; + *offset+=1, dataPtr++; + + tsk_strncat(name, (const char*)dataPtr, length); + *offset += length, dataPtr += length; + } + } + + *offset+=1; + + return 0; +} + +//int tnet_dns_rr_qname_deserialize(const void* data, size_t size, char** name, size_t *offset) +//{ +// /* RFC 1035 - 4.1.4. Message compression +// +// The pointer takes the form of a two octet sequence: +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 1 1| OFFSET | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// */ +// uint8_t* dataPtr = (((uint8_t*)data) + *offset); +// uint8_t* dataEnd = (dataPtr + size); +// unsigned usingPtr = 0; /* Do not change. */ +// unsigned islast = 0; +// +// while(!islast) +// { +// usingPtr = ((*dataPtr & 0xC0) == 0xC0); +// +// if(usingPtr) +// { +// uint8_t *Ptr; +// uint16_t ptr_offset = (*dataPtr & 0x3F); +// ptr_offset = ptr_offset << 8 | *(dataPtr+1); +// Ptr = ((uint8_t*)data) + ptr_offset; +// +// tnet_qname_label_parse(Ptr, (dataEnd - Ptr), name, &islast); +// *offset += 2, dataPtr += 2; +// } +// else +// { +// size_t length = tnet_qname_label_parse(dataPtr, size, name, &islast); +// *offset += length, dataPtr += length; +// } +// } +// +// *offset += usingPtr ? 0 : 1; +// +// return 0; +//} + +int tnet_dns_rr_qname_serialize(const char* qname, tsk_buffer_t* output) +{ + /* + QNAME a domain name represented as a sequence of labels, where + each label consists of a length octet followed by that + number of octets. The domain name terminates with the + zero length octet for the null label of the root. Note + that this field may be an odd number of octets; no + padding is used. + + Example: "doubango.com" ==> 8doubango3comNULL + */ + static uint8_t null = 0; + + if(qname) + { + char* _qname = tsk_strdup(qname); + char* label = strtok(_qname, "."); + + while(label) + { + uint8_t length = strlen(label); + tsk_buffer_append(output, &length, 1); + tsk_buffer_append(output, label, strlen(label)); + + label = strtok (0, "."); + } + + TSK_FREE(_qname); + } + + /* terminates domain name */ + tsk_buffer_append(output, &null, 1); + + return 0; +} + +tnet_dns_rr_t* tnet_dns_rr_deserialize(const void* data, size_t size, size_t* offset) +{ + tnet_dns_rr_t *rr = 0; + uint8_t* dataStart = (uint8_t*)data; + uint8_t* dataPtr = (dataStart + *offset); + uint8_t* dataEnd = (dataPtr+size); + tnet_dns_qtype_t qtype; + tnet_dns_qclass_t qclass; + uint32_t ttl; + uint16_t rdlength; + char* qname = 0; + + /* Check validity */ + if(!dataPtr || !size) + { + goto bail; + } + + /* == Parse QNAME + */ + tnet_dns_rr_qname_deserialize(dataStart, size, &qname, offset); + dataPtr = (dataStart + *offset); + /* == Parse QTYPE + */ + qtype = (tnet_dns_qtype_t)ntohs(*((uint16_t*)dataPtr)); + dataPtr += 2, *offset += 2; + /* == Parse QCLASS + */ + qclass = (tnet_dns_qclass_t)ntohs(*((uint16_t*)dataPtr)); + dataPtr += 2, *offset += 2; + /* == Parse TTL + */ + ttl = ntohl(*((uint32_t*)dataPtr)); + dataPtr += 4, *offset += 4; + /* == Parse RDLENGTH + */ + rdlength = ntohs(*((uint16_t*)dataPtr)); + dataPtr += 2, *offset += 2; + + switch(qtype) + { + case qtype_a: + { + rr = TNET_DNS_A_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); + break; + } + + case qtype_aaaa: + { + rr = TNET_DNS_AAAA_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); + break; + } + + case qtype_cname: + { + rr = TNET_DNS_CNAME_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); + break; + } + + case qtype_mx: + { + rr = TNET_DNS_MX_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); + break; + } + + case qtype_naptr: + { + rr = TNET_DNS_NAPTR_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); + break; + } + + case qtype_ns: + { + rr = TNET_DNS_NS_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); + break; + } + + case qtype_opt: + { + unsigned payload_size = qclass; + rr = TNET_DNS_OPT_CREATE(payload_size); + break; + } + + case qtype_ptr: + { + rr = TNET_DNS_PTR_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); + break; + } + + case qtype_soa: + { + rr = TNET_DNS_SOA_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); + break; + } + + case qtype_srv: + { + rr = TNET_DNS_SRV_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); + break; + } + + case qtype_txt: + { + rr = TNET_DNS_TXT_CREATE(qname, qclass, ttl, rdlength, dataStart, *offset); + break; + } + + default: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + } + +bail: + TSK_FREE(qname); + + *offset += rdlength; + return rr; +} + + +int tnet_dns_rr_serialize(const tnet_dns_rr_t* rr, tsk_buffer_t *output) +{ + if(!rr || !output) + { + return -1; + } + + /* NAME + */ + { + tnet_dns_rr_qname_serialize(rr->name, output); + } + + /* TYPE + */ + { + uint16_t qtype = htons(rr->qtype); + tsk_buffer_append(output, &(qtype), 2); + } + + /* CLASS + */ + { + uint16_t qclass = htons(rr->qclass); + tsk_buffer_append(output, &(qclass), 2); + } + + /* TTL + */ + { + uint32_t ttl = htonl(rr->ttl); + tsk_buffer_append(output, &(ttl), 4); + } + + /* RDLENGTH + */ + { + uint16_t length = htons(rr->rdlength); + tsk_buffer_append(output, &(length), 2); + } + + /* RDATA + */ + + switch(rr->qtype) + { + case qtype_a: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + + case qtype_aaaa: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + + case qtype_cname: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + + case qtype_mx: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + + case qtype_naptr: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + + case qtype_ns: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + + case qtype_opt: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + + case qtype_ptr: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + + case qtype_soa: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + + case qtype_srv: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + + case qtype_txt: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + + default: + { + TSK_DEBUG_ERROR("NOT IMPLEMENTED"); + break; + } + } + + return -1; +} + + +//================================================================================================= +// [[DNS RR]] object definition +// +static void* tnet_dns_rr_create(void * self, va_list * app) +{ + tnet_dns_rr_t *rr = self; + if(rr) + { + tnet_dns_rr_init(rr, qtype_any, qclass_any); + } + return self; +} + +static void* tnet_dns_rr_destroy(void * self) +{ + tnet_dns_rr_t *rr = self; + if(rr) + { + tnet_dns_rr_deinit(rr); + } + return self; +} + +static const tsk_object_def_t tnet_dns_rr_def_s = +{ + sizeof(tnet_dns_rr_t), + tnet_dns_rr_create, + tnet_dns_rr_destroy, + 0, +}; +const void *tnet_dns_rr_def_t = &tnet_dns_rr_def_s; diff --git a/trunk/tinyNET/src/tnet_transport_poll.c b/trunk/tinyNET/src/tnet_transport_poll.c index 6411050f..d34a4272 100644 --- a/trunk/tinyNET/src/tnet_transport_poll.c +++ b/trunk/tinyNET/src/tnet_transport_poll.c @@ -45,6 +45,7 @@ typedef struct transport_socket_s { tnet_fd_t fd; unsigned connected:1; + unsigned owner:1; } transport_socket_t; @@ -60,9 +61,9 @@ typedef struct transport_context_s } transport_context_t; -static void transport_socket_add(tnet_fd_t fd, transport_context_t *context); -static void transport_socket_set_connected(tnet_fd_t fd, transport_context_t *context, int connected); -static void transport_socket_remove(int index, transport_context_t *context); +static void addSocket(tnet_fd_t fd, transport_context_t *context, int take_ownership); +static void setConnected(tnet_fd_t fd, transport_context_t *context, int connected); +static void removeSocket(int index, transport_context_t *context); /* Checks if socket is connected */ int tnet_transport_isconnected(const tnet_transport_handle_t *handle, tnet_fd_t fd) @@ -90,23 +91,21 @@ int tnet_transport_isconnected(const tnet_transport_handle_t *handle, tnet_fd_t return 0; } -int tnet_transport_add_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd) +int tnet_transport_add_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd, int take_ownership) { tnet_transport_t *transport = (tnet_transport_t*)handle; transport_context_t *context; int ret = -1; - if(!transport) - { + if(!transport){ TSK_DEBUG_ERROR("Invalid server handle."); return ret; } - context = (transport_context_t*)transport->context; - if(context) - { + + if((context = (transport_context_t*)transport->context)){ static char c = '\0'; - transport_socket_add(fd, context); + addSocket(fd, context, take_ownership); // signal ret = write(context->pipeW, &c, 1); @@ -118,6 +117,46 @@ int tnet_transport_add_socket(const tnet_transport_handle_t *handle, tnet_fd_t f return -1; } +/* Remove socket + */ +int tnet_transport_remove_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd) +{ + tnet_transport_t *transport = (tnet_transport_t*)handle; + transport_context_t *context; + int ret = -1; + size_t i; + int found = 0; + + if(!transport){ + TSK_DEBUG_ERROR("Invalid server handle."); + return ret; + } + + if(!(context = (transport_context_t*)transport->context)){ + TSK_DEBUG_ERROR("Invalid context."); + return -2; + } + + for(i=0; icount; i++){ + if(context->sockets[i]->fd == fd){ + removeSocket(i, context); + found = 1; + break; + } + } + + if(found){ + /* Signal */ + static char c = '\0'; + ret = write(context->pipeW, &c, 1); + return (ret > 0 ? 0 : ret); + } + + // ... + + return -1; +} + tnet_fd_t tnet_transport_connectto(const tnet_transport_handle_t *handle, const char* host, tnet_port_t port) { tnet_transport_t *transport = (tnet_transport_t*)handle; @@ -153,7 +192,7 @@ tnet_fd_t tnet_transport_connectto(const tnet_transport_handle_t *handle, const } /* Add the socket */ - if((status = tnet_transport_add_socket(handle, fd))) + if((status = tnet_transport_add_socket(handle, fd, 1))) { TNET_PRINT_LAST_ERROR("Failed to add new socket."); @@ -187,7 +226,7 @@ tnet_fd_t tnet_transport_connectto(const tnet_transport_handle_t *handle, const } /* update connection status */ - transport_socket_set_connected(fd, transport->context, (status==0)); + setConnected(fd, transport->context, (status==0)); bail: return fd; @@ -243,14 +282,13 @@ bail: return numberOfBytesSent; } -int tnet_transport_has_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd) +int tnet_transport_have_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd) { tnet_transport_t *transport = (tnet_transport_t*)handle; transport_context_t *context; size_t i; - if(!transport) - { + if(!transport){ TSK_DEBUG_ERROR("Invalid server handle."); return 0; } @@ -269,10 +307,11 @@ int tnet_transport_has_socket(const tnet_transport_handle_t *handle, tnet_fd_t f } /*== Add new socket ==*/ -void transport_socket_add(tnet_fd_t fd, transport_context_t *context) +void addSocket(tnet_fd_t fd, transport_context_t *context, int take_ownership) { transport_socket_t *sock = tsk_calloc(1, sizeof(transport_socket_t)); sock->fd = fd; + sock->owner = take_ownership ? 1 : 0; context->ufds[context->count].fd = fd; context->ufds[context->count].events = context->events; @@ -282,7 +321,7 @@ void transport_socket_add(tnet_fd_t fd, transport_context_t *context) } /*== change connection state ==*/ -static void transport_socket_set_connected(tnet_fd_t fd, transport_context_t *context, int connected) +static void setConnected(tnet_fd_t fd, transport_context_t *context, int connected) { size_t i; @@ -296,18 +335,21 @@ static void transport_socket_set_connected(tnet_fd_t fd, transport_context_t *co } /*== Remove socket ==*/ -void transport_socket_remove(int index, transport_context_t *context) +void removeSocket(int index, transport_context_t *context) { int i; if(index < (int)context->count) { - tnet_sockfd_close(&(context->sockets[index]->fd)); + /* Close the socket if we are the owner. */ + if(context->sockets[index]->owner){ + tnet_sockfd_close(&(context->sockets[index]->fd)); + } + // Free socket TSK_FREE(context->sockets[index]); - for(i=index ; icount-1; i++) - { + for(i=index ; icount-1; i++){ context->sockets[i] = context->sockets[i+1]; } @@ -382,10 +424,10 @@ void *tnet_transport_mainthread(void *param) context->pipeR = pipes[0]; context->pipeW = pipes[1]; - transport_socket_add(context->pipeR, context); + addSocket(context->pipeR, context, 1); - /* Add the current transport socket to the context. */ - transport_socket_add(transport->master->fd, context); + /* Add the master socket to the context. */ + addSocket(transport->master->fd, context, 1); /* Set transport to active */ transport->active = 1; @@ -452,7 +494,7 @@ void *tnet_transport_mainthread(void *param) } //else { - transport_socket_remove(i, context); + removeSocket(i, context); TNET_PRINT_LAST_ERROR("recv have failed."); continue; } @@ -493,10 +535,10 @@ bail: transport->active = 0; /* cleanup */ - while(context->count) - { - transport_socket_remove(0, context); + while(context->count){ + removeSocket(0, context); } + TSK_FREE(context); TSK_DEBUG_INFO("Stopping [%s] server with IP {%s} on port {%d}...", transport->description, transport->master->ip, transport->master->port); return 0; diff --git a/trunk/tinyNET/src/tnet_transport_win32.c b/trunk/tinyNET/src/tnet_transport_win32.c index 5df5ce04..21d3d3ea 100644 --- a/trunk/tinyNET/src/tnet_transport_win32.c +++ b/trunk/tinyNET/src/tnet_transport_win32.c @@ -54,8 +54,8 @@ typedef struct transport_context_s } transport_context_t; -static void transport_socket_add(tnet_fd_t fd, transport_context_t *context, int take_ownership); -static void transport_socket_remove(int index, transport_context_t *context); +static void addSocket(tnet_fd_t fd, transport_context_t *context, int take_ownership); +static void removeSocket(int index, transport_context_t *context); /* Checks if socket is connected */ int tnet_transport_isconnected(const tnet_transport_handle_t *handle, tnet_fd_t fd) @@ -167,7 +167,7 @@ int tnet_transport_remove_socket(const tnet_transport_handle_t *handle, tnet_fd_ for(i=0; icount; i++){ if(context->sockets[i]->fd == fd){ - transport_socket_remove(i, context); + removeSocket(i, context); found = 1; break; } @@ -354,7 +354,7 @@ int CALLBACK AcceptCondFunc(LPWSABUF lpCallerId, LPWSABUF lpCallerData, LPQOS lp } /*== Add new socket ==*/ -static void transport_socket_add(tnet_fd_t fd, transport_context_t *context, int take_ownership) +static void addSocket(tnet_fd_t fd, transport_context_t *context, int take_ownership) { transport_socket_t *sock = tsk_calloc(1, sizeof(transport_socket_t)); sock->fd = fd; @@ -367,7 +367,7 @@ static void transport_socket_add(tnet_fd_t fd, transport_context_t *context, int } /*== Remove socket ==*/ -static void transport_socket_remove(int index, transport_context_t *context) +static void removeSocket(int index, transport_context_t *context) { size_t i; @@ -383,8 +383,7 @@ static void transport_socket_remove(int index, transport_context_t *context) // Close event WSACloseEvent(context->events[index]); - for(i=index ; icount-1; i++) - { + for(i=index ; icount-1; i++){ context->sockets[i] = context->sockets[i+1]; context->events[i] = context->events[i+1]; } @@ -639,4 +638,4 @@ bail: } #endif /* TNET_UNDER_WINDOWS */ - + diff --git a/trunk/tinyNET/src/tnet_utils.c b/trunk/tinyNET/src/tnet_utils.c index 00ee7bea..7ea92764 100644 --- a/trunk/tinyNET/src/tnet_utils.c +++ b/trunk/tinyNET/src/tnet_utils.c @@ -431,9 +431,8 @@ int tnet_getbestsource(const char* destination, tnet_socket_type_t type, tnet_ip struct sockaddr_storage destAddr; tnet_addresses_L_t* addresses = 0; const tsk_list_item_t* item; -#if TNET_UNDER_WINDOWS - DWORD dwBestIfIndex; -#endif + + long dwBestIfIndex; if(!destination || !source){ goto bail; diff --git a/trunk/tinySIP/include/tinysip/transports/tsip_transport_ipsec.h b/trunk/tinySIP/include/tinysip/transports/tsip_transport_ipsec.h index 4680ee4d..1abe25f4 100644 --- a/trunk/tinySIP/include/tinysip/transports/tsip_transport_ipsec.h +++ b/trunk/tinySIP/include/tinysip/transports/tsip_transport_ipsec.h @@ -1,49 +1,52 @@ -/* -* Copyright (C) 2009 Mamadou Diop. -* -* Contact: Mamadou Diop -* -* 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 tsip_transport_ipsec.h - * @brief SIP/IPSec transport. - * - * @author Mamadou Diop - * - * @date Created: Sat Nov 8 16:54:58 2009 mdiop - */ -#ifndef TINYSIP_TRANSPORT_IPSEC_H -#define TINYSIP_TRANSPORT_IPSEC_H - -#include "tinysip_config.h" - -#include "tinysip/transports/tsip_transport.h" - -TSIP_BEGIN_DECLS - -#define TSIP_TRANSPORT_IPSEC_CREATE(stack, host, port, type, description) tsk_object_new(tsip_transport_ipsec_def_t, stack, (const char*)host, (tnet_port_t)port, (tnet_socket_type_t)type, (const char*) description) -#define TSIP_TRANSPORT_IPSEC(self) ((tsip_transport_ipsec_t*)(self)) - -int tsip_transport_ipsec_send(struct tsip_transport_ipsec_s* self, tsip_message_t* msg); -int tsip_transport_ipsec_asso_kill(struct tsip_transport_ipsec_s* self); - -TINYSIP_GEXTERN const void *tsip_transport_ipsec_def_t; - -TSIP_END_DECLS - -#endif /* TINYSIP_TRANSPORT_IPSEC_H */ +/* +* Copyright (C) 2009 Mamadou Diop. +* +* Contact: Mamadou Diop +* +* 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 tsip_transport_ipsec.h + * @brief SIP/IPSec transport. + * + * @author Mamadou Diop + * + * @date Created: Sat Nov 8 16:54:58 2009 mdiop + */ +#ifndef TINYSIP_TRANSPORT_IPSEC_H +#define TINYSIP_TRANSPORT_IPSEC_H + +#include "tinysip_config.h" + +#include "tinysip/transports/tsip_transport.h" + +TSIP_BEGIN_DECLS + +// FD +struct tsip_transport_ipsec_s; + +#define TSIP_TRANSPORT_IPSEC_CREATE(stack, host, port, type, description) tsk_object_new(tsip_transport_ipsec_def_t, stack, (const char*)host, (tnet_port_t)port, (tnet_socket_type_t)type, (const char*) description) +#define TSIP_TRANSPORT_IPSEC(self) ((tsip_transport_ipsec_t*)(self)) + +//int tsip_transport_ipsec_send(struct tsip_transport_ipsec_s* self, tsip_message_t* msg); +int tsip_transport_ipsec_asso_kill(struct tsip_transport_ipsec_s* self); + +TINYSIP_GEXTERN const void *tsip_transport_ipsec_def_t; + +TSIP_END_DECLS + +#endif /* TINYSIP_TRANSPORT_IPSEC_H */ diff --git a/trunk/tinySIP/test/test/test_stack.h b/trunk/tinySIP/test/test/test_stack.h index 26f80d49..b7977562 100644 --- a/trunk/tinySIP/test/test/test_stack.h +++ b/trunk/tinySIP/test/test/test_stack.h @@ -93,26 +93,26 @@ int tsip_registration_callback(const tsip_register_event_t *sipevent) /* registration part */ switch(sipevent->type) { - case tsip_ao_register: - { - if(TSIP_RESPONSE_IS_2XX(TSIP_EVENT(sipevent)->sipmessage)){ - TSK_DEBUG_INFO("Registration succeed."); - } - else{ - TSK_DEBUG_INFO("Registration failed."); - } - break; - } - - case tsip_ao_unregister: - { - if(TSIP_RESPONSE_IS_2XX(TSIP_EVENT(sipevent)->sipmessage)){ - TSK_DEBUG_INFO("Unregistration succeed."); - } - else{ - TSK_DEBUG_INFO("Unregistration failed."); - } - break; + case tsip_ao_register: + { + if(TSIP_RESPONSE_IS_2XX(TSIP_EVENT(sipevent)->sipmessage)){ + TSK_DEBUG_INFO("Registration succeed."); + } + else{ + TSK_DEBUG_INFO("Registration failed."); + } + break; + } + + case tsip_ao_unregister: + { + if(TSIP_RESPONSE_IS_2XX(TSIP_EVENT(sipevent)->sipmessage)){ + TSK_DEBUG_INFO("Unregistration succeed."); + } + else{ + TSK_DEBUG_INFO("Unregistration failed."); + } + break; } default: @@ -135,13 +135,12 @@ void test_stack() TSIP_STACK_SET_PROXY_CSCF("proxy.sipthor.net", "udp", 0), //TSIP_STACK_SET_PROXY_CSCF("192.168.0.15", "udp", 0), TSIP_STACK_SET_PROXY_CSCF_PORT(5060), - TSIP_STACK_SET_SEC_AGREE_MECH("ipsec-3gpp"), TSIP_STACK_SET_MOBILITY("fixed"), TSIP_STACK_SET_DEVICE_ID("DD1289FA-C3D7-47bd-A40D-F1F1B2CC5FFC"), TSIP_STACK_SET_NETINFO("ADSL;utran-cell-id-3gpp=00000000"), TSIP_STACK_SET_PRIVACY("header;id"), */ -/* + tsip_stack_handle_t *stack = tsip_stack_create(test_stack_callback, TSIP_STACK_SET_DISPLAY_NAME("Mamadou"), TSIP_STACK_SET_PUBLIC_IDENTITY("sip:mamadou@ericsson.com"), @@ -150,16 +149,15 @@ void test_stack() TSIP_STACK_SET_REALM("sip:ericsson.com"), // FIXME: without sip: TSIP_STACK_SET_LOCAL_IP(LOCAL_IP), //TSIP_STACK_SET_DISCOVERY_NAPTR(1), - TSIP_STACK_SET_PROXY_CSCF("192.168.0.11", "tcp", 0), + TSIP_STACK_SET_PROXY_CSCF("192.168.0.11", "udp", 0), //TSIP_STACK_SET_PROXY_CSCF("192.168.0.15", "udp", 0), TSIP_STACK_SET_PROXY_CSCF_PORT(5081), - TSIP_STACK_SET_SEC_AGREE_MECH("ipsec-3gpp"), TSIP_STACK_SET_MOBILITY("fixed"), TSIP_STACK_SET_DEVICE_ID("DD1289FA-C3D7-47bd-A40D-F1F1B2CC5FFC"), TSIP_STACK_SET_NETINFO("ADSL;utran-cell-id-3gpp=00000000"), TSIP_STACK_SET_PRIVACY("header;id"), -*/ - + + /* tsip_stack_handle_t *stack = tsip_stack_create(test_stack_callback, TSIP_STACK_SET_DISPLAY_NAME("Mamadou"), TSIP_STACK_SET_PUBLIC_IDENTITY("sip:mamadou@ims.inexbee.com"), @@ -176,7 +174,8 @@ void test_stack() TSIP_STACK_SET_DEVICE_ID("DD1289FA-C3D7-47bd-A40D-F1F1B2CC5FFC"), TSIP_STACK_SET_NETINFO("ADSL;utran-cell-id-3gpp=00000000"), TSIP_STACK_SET_PRIVACY("header;id"), - +*/ + TSIP_STACK_SET_NULL()); tsip_operation_handle_t *op = TSIP_OPERATION_CREATE(stack, @@ -202,7 +201,7 @@ void test_stack() TSIP_OPERATION_SET_PARAM("expires", "30"), TSIP_OPERATION_SET_PARAM("package", "reg"), TSIP_OPERATION_SET_PARAM("accept", "application/reginfo+xml"), - TSIP_OPERATION_SET_PARAM("to", "sip:mamadou@sip2sip.info"), + TSIP_OPERATION_SET_PARAM("to", "sip:mamadou@ericsson.com"), TSIP_OPERATION_SET_NULL()); tsip_subscribe(stack, op2); diff --git a/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.pbxuser b/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.pbxuser index 78f331b5..64ca613b 100644 --- a/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.pbxuser +++ b/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.pbxuser @@ -3,9 +3,8 @@ 08FB7793FE84155DC02AAC07 /* Project object */ = { activeBuildConfigurationName = Debug; activeExecutable = ECED6AFF10F9A93A006B4DC9 /* test */; - activeTarget = D2AAC0620554660B00DB518D /* tinySIP */; + activeTarget = ECF46DC011347F8100390CBE /* tinyIPSec */; addToTargets = ( - ECED6AFD10F9A93A006B4DC9 /* test */, ); breakpoints = ( ECED6B1F10F9AAA9006B4DC9 /* test_stack.h:40 */, @@ -25,12 +24,12 @@ EC02B3B310FA63290055FBF1 /* tsip_dialog_register.client.c:242 */, EC02B3C410FA63700055FBF1 /* tsip_dialog_register.client.c:79 */, EC02B3F010FA64D50055FBF1 /* tsip_dialog_register.client.c:447 */, - EC02B42B10FA67310055FBF1 /* tnet_transport_poll.c:446 */, - EC02B43910FA68FC0055FBF1 /* tnet_transport_poll.c:447 */, + EC02B42B10FA67310055FBF1 /* tnet_transport_poll.c:488 */, + EC02B43910FA68FC0055FBF1 /* tnet_transport_poll.c:489 */, EC02B45410FA6A560055FBF1 /* tsk_buffer.c:83 */, EC02B45710FA6A950055FBF1 /* tsk_buffer.c:85 */, EC02B45A10FA6D7B0055FBF1 /* malloc_error_break */, - EC02B46210FA6DF30055FBF1 /* tnet_transport_poll.c:431 */, + EC02B46210FA6DF30055FBF1 /* tnet_transport_poll.c:473 */, EC02B46910FA6E310055FBF1 /* realloc */, EC02B46C10FA6E700055FBF1 /* test.c:79 */, EC02B46D10FA6E750055FBF1 /* realloc */, @@ -59,7 +58,7 @@ PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Built_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 1117, + 910, 20, 48, 43, @@ -105,7 +104,7 @@ PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 1077, + 870, 60, 20, 48, @@ -122,171 +121,248 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 284935110; - PBXWorkspaceStateSaveDate = 284935110; + PBXPerProjectTemplateStateSaveDate = 288648111; + PBXWorkspaceStateSaveDate = 288648111; }; perUserProjectItems = { - EC02B10A10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B10A10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B10B10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B10B10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B10C10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B10C10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B10D10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B10D10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B10F10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B10F10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B11010FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B11010FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B11410FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B11410FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B11510FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B11510FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B11710FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B11710FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B11910FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B11910FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B11B10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B11B10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B11C10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B11C10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B11D10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B11D10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B11E10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B11E10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B11F10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B11F10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B12010FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B12010FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B12110FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B12110FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B12310FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B12310FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B12610FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B12610FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B12710FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B12710FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B12810FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B12810FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B12B10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B12B10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B12C10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B12C10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B13010FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B13010FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B13110FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B13110FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B13610FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B13610FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B13D10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B13D10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B13F10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B13F10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B14610FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B14610FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B14910FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B14910FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B14A10FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B14A10FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B15010FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B15010FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B15110FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B15110FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B15210FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B15210FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B15310FA4E8C0055FBF1 /* PBXTextBookmark */ = EC02B15310FA4E8C0055FBF1 /* PBXTextBookmark */; - EC02B15E10FA4EFA0055FBF1 /* PBXTextBookmark */ = EC02B15E10FA4EFA0055FBF1 /* PBXTextBookmark */; - EC02B17310FA4FF50055FBF1 /* PBXTextBookmark */ = EC02B17310FA4FF50055FBF1 /* PBXTextBookmark */; - EC02B17E10FA4FF50055FBF1 /* PBXTextBookmark */ = EC02B17E10FA4FF50055FBF1 /* PBXTextBookmark */; - EC02B18310FA4FF50055FBF1 /* PBXTextBookmark */ = EC02B18310FA4FF50055FBF1 /* PBXTextBookmark */; - EC02B23710FA51B70055FBF1 /* PBXTextBookmark */ = EC02B23710FA51B70055FBF1 /* PBXTextBookmark */; - EC02B23810FA51B70055FBF1 /* PBXTextBookmark */ = EC02B23810FA51B70055FBF1 /* PBXTextBookmark */; - EC02B24D10FA51E70055FBF1 /* PBXTextBookmark */ = EC02B24D10FA51E70055FBF1 /* PBXTextBookmark */; - EC02B26010FA532E0055FBF1 /* PBXTextBookmark */ = EC02B26010FA532E0055FBF1 /* PBXTextBookmark */; - EC02B26F10FA537D0055FBF1 /* PBXTextBookmark */ = EC02B26F10FA537D0055FBF1 /* PBXTextBookmark */; - EC02B27210FA537D0055FBF1 /* PBXTextBookmark */ = EC02B27210FA537D0055FBF1 /* PBXTextBookmark */; - EC02B28210FA54470055FBF1 /* PBXTextBookmark */ = EC02B28210FA54470055FBF1 /* PBXTextBookmark */; - EC02B28510FA54470055FBF1 /* PBXTextBookmark */ = EC02B28510FA54470055FBF1 /* PBXTextBookmark */; - EC02B29310FA55620055FBF1 /* PBXTextBookmark */ = EC02B29310FA55620055FBF1 /* PBXTextBookmark */; - EC02B29610FA55620055FBF1 /* PBXTextBookmark */ = EC02B29610FA55620055FBF1 /* PBXTextBookmark */; - EC02B29C10FA55820055FBF1 /* PBXTextBookmark */ = EC02B29C10FA55820055FBF1 /* PBXTextBookmark */; - EC02B29F10FA55820055FBF1 /* PBXTextBookmark */ = EC02B29F10FA55820055FBF1 /* PBXTextBookmark */; - EC02B2BA10FA569B0055FBF1 /* PBXTextBookmark */ = EC02B2BA10FA569B0055FBF1 /* PBXTextBookmark */; - EC02B2C010FA56AF0055FBF1 /* PBXTextBookmark */ = EC02B2C010FA56AF0055FBF1 /* PBXTextBookmark */; - EC02B2D210FA570D0055FBF1 /* PBXTextBookmark */ = EC02B2D210FA570D0055FBF1 /* PBXTextBookmark */; - EC02B2F710FA59110055FBF1 /* PBXTextBookmark */ = EC02B2F710FA59110055FBF1 /* PBXTextBookmark */; - EC02B31410FA5A940055FBF1 /* PBXTextBookmark */ = EC02B31410FA5A940055FBF1 /* PBXTextBookmark */; - EC02B32810FA5D210055FBF1 /* PBXTextBookmark */ = EC02B32810FA5D210055FBF1 /* PBXTextBookmark */; - EC02B32910FA5D210055FBF1 /* PBXTextBookmark */ = EC02B32910FA5D210055FBF1 /* PBXTextBookmark */; - EC02B32A10FA5D210055FBF1 /* PBXTextBookmark */ = EC02B32A10FA5D210055FBF1 /* PBXTextBookmark */; - EC02B32E10FA5D210055FBF1 /* PBXTextBookmark */ = EC02B32E10FA5D210055FBF1 /* PBXTextBookmark */; - EC02B33010FA5D210055FBF1 /* PBXTextBookmark */ = EC02B33010FA5D210055FBF1 /* PBXTextBookmark */; - EC02B33410FA5D210055FBF1 /* PBXTextBookmark */ = EC02B33410FA5D210055FBF1 /* PBXTextBookmark */; - EC02B33510FA5D210055FBF1 /* PBXTextBookmark */ = EC02B33510FA5D210055FBF1 /* PBXTextBookmark */; - EC02B34610FA5D210055FBF1 /* PBXTextBookmark */ = EC02B34610FA5D210055FBF1 /* PBXTextBookmark */; - EC02B34B10FA5D210055FBF1 /* PBXTextBookmark */ = EC02B34B10FA5D210055FBF1 /* PBXTextBookmark */; - EC02B35310FA5D210055FBF1 /* PBXTextBookmark */ = EC02B35310FA5D210055FBF1 /* PBXTextBookmark */; - EC02B3A410FA626E0055FBF1 /* PBXTextBookmark */ = EC02B3A410FA626E0055FBF1 /* PBXTextBookmark */; - EC02B3B410FA632B0055FBF1 /* PBXTextBookmark */ = EC02B3B410FA632B0055FBF1 /* PBXTextBookmark */; - EC02B3C810FA64040055FBF1 /* PBXTextBookmark */ = EC02B3C810FA64040055FBF1 /* PBXTextBookmark */; - EC02B3D610FA64430055FBF1 /* PBXTextBookmark */ = EC02B3D610FA64430055FBF1 /* PBXTextBookmark */; - EC02B3D910FA645F0055FBF1 /* PBXTextBookmark */ = EC02B3D910FA645F0055FBF1 /* PBXTextBookmark */; - EC02B3F810FA65230055FBF1 /* PBXTextBookmark */ = EC02B3F810FA65230055FBF1 /* PBXTextBookmark */; - EC02B42110FA66EB0055FBF1 /* PBXTextBookmark */ = EC02B42110FA66EB0055FBF1 /* PBXTextBookmark */; - EC02B42F10FA673D0055FBF1 /* PBXTextBookmark */ = EC02B42F10FA673D0055FBF1 /* PBXTextBookmark */; - EC02B43D10FA69BE0055FBF1 /* PBXTextBookmark */ = EC02B43D10FA69BE0055FBF1 /* PBXTextBookmark */; - EC02B43F10FA69BE0055FBF1 /* PBXTextBookmark */ = EC02B43F10FA69BE0055FBF1 /* PBXTextBookmark */; - EC02B44510FA69BE0055FBF1 /* PBXTextBookmark */ = EC02B44510FA69BE0055FBF1 /* PBXTextBookmark */; - EC02B44610FA69BE0055FBF1 /* PBXTextBookmark */ = EC02B44610FA69BE0055FBF1 /* PBXTextBookmark */; - EC02B47610FA6FC50055FBF1 /* PBXTextBookmark */ = EC02B47610FA6FC50055FBF1 /* PBXTextBookmark */; - EC02B47710FA6FC50055FBF1 /* PBXTextBookmark */ = EC02B47710FA6FC50055FBF1 /* PBXTextBookmark */; - EC02B47C10FA6FC50055FBF1 /* PBXTextBookmark */ = EC02B47C10FA6FC50055FBF1 /* PBXTextBookmark */; - EC02B47D10FA6FC50055FBF1 /* PBXTextBookmark */ = EC02B47D10FA6FC50055FBF1 /* PBXTextBookmark */; - EC02B48610FA6FC50055FBF1 /* PBXTextBookmark */ = EC02B48610FA6FC50055FBF1 /* PBXTextBookmark */; - EC02B48710FA6FC50055FBF1 /* PBXTextBookmark */ = EC02B48710FA6FC50055FBF1 /* PBXTextBookmark */; - EC02B48A10FA6FC50055FBF1 /* PBXTextBookmark */ = EC02B48A10FA6FC50055FBF1 /* PBXTextBookmark */; - EC02B48D10FA6FC50055FBF1 /* PBXTextBookmark */ = EC02B48D10FA6FC50055FBF1 /* PBXTextBookmark */; - EC02B49E10FA6FC50055FBF1 /* PBXTextBookmark */ = EC02B49E10FA6FC50055FBF1 /* PBXTextBookmark */; - EC02B4A710FA6FFC0055FBF1 /* PBXTextBookmark */ = EC02B4A710FA6FFC0055FBF1 /* PBXTextBookmark */; - EC02B4CD10FA71110055FBF1 /* PBXTextBookmark */ = EC02B4CD10FA71110055FBF1 /* PBXTextBookmark */; - ECE8D4C010FBD76500B2464F /* PBXTextBookmark */ = ECE8D4C010FBD76500B2464F /* PBXTextBookmark */; - ECE8D4C110FBD76500B2464F /* PBXTextBookmark */ = ECE8D4C110FBD76500B2464F /* PBXTextBookmark */; - ECE8D4C210FBD76500B2464F /* PBXTextBookmark */ = ECE8D4C210FBD76500B2464F /* PBXTextBookmark */; - ECE8D4C310FBD76500B2464F /* PBXTextBookmark */ = ECE8D4C310FBD76500B2464F /* PBXTextBookmark */; - ECE8D4C410FBD76500B2464F /* PBXTextBookmark */ = ECE8D4C410FBD76500B2464F /* PBXTextBookmark */; - ECE8D4C510FBD76500B2464F /* PBXTextBookmark */ = ECE8D4C510FBD76500B2464F /* PBXTextBookmark */; - ECE8D4C610FBD76500B2464F /* PBXTextBookmark */ = ECE8D4C610FBD76500B2464F /* PBXTextBookmark */; - ECE8D4C710FBD76500B2464F /* PBXTextBookmark */ = ECE8D4C710FBD76500B2464F /* PBXTextBookmark */; - ECE8D4C810FBD76500B2464F /* PBXTextBookmark */ = ECE8D4C810FBD76500B2464F /* PBXTextBookmark */; - ECE8D4C910FBD76500B2464F /* PBXTextBookmark */ = ECE8D4C910FBD76500B2464F /* PBXTextBookmark */; - ECE8D4CA10FBD76500B2464F /* PBXTextBookmark */ = ECE8D4CA10FBD76500B2464F /* PBXTextBookmark */; - ECE8D4CB10FBD76500B2464F /* PBXTextBookmark */ = ECE8D4CB10FBD76500B2464F /* PBXTextBookmark */; - ECE8D4CC10FBD76500B2464F /* PBXTextBookmark */ = ECE8D4CC10FBD76500B2464F /* PBXTextBookmark */; - ECE8D4CD10FBD76500B2464F /* PBXTextBookmark */ = ECE8D4CD10FBD76500B2464F /* PBXTextBookmark */; - ECE8D4CE10FBD76500B2464F /* PBXTextBookmark */ = ECE8D4CE10FBD76500B2464F /* PBXTextBookmark */; - ECE8D4CF10FBD76500B2464F /* PBXTextBookmark */ = ECE8D4CF10FBD76500B2464F /* PBXTextBookmark */; - ECE8D4D010FBD76500B2464F /* PBXTextBookmark */ = ECE8D4D010FBD76500B2464F /* PBXTextBookmark */; - ECE8D4D210FBD7D400B2464F /* PBXTextBookmark */ = ECE8D4D210FBD7D400B2464F /* PBXTextBookmark */; - ECED6B2310F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B2310F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B2410F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B2410F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B2510F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B2510F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B2810F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B2810F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B2910F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B2910F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B2A10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B2A10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B2B10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B2B10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B2D10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B2D10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B3310F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B3310F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B3610F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B3610F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B3710F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B3710F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B3910F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B3910F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B3A10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B3A10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B3C10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B3C10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B3D10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B3D10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B3F10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B3F10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B4310F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B4310F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B4410F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B4410F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B4510F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B4510F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B4610F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B4610F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B4710F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B4710F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B4810F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B4810F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B4A10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B4A10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B4C10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B4C10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B4D10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B4D10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B4E10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B4E10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B4F10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B4F10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B5010F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B5010F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B5210F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B5210F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B6610F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B6610F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B6710F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B6710F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B6810F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B6810F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B6C10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B6C10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B6D10F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B6D10F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B7110F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B7110F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B7210F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B7210F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B7310F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B7310F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B7410F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B7410F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B7510F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B7510F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B7710F9AAB1006B4DC9 /* PBXTextBookmark */ = ECED6B7710F9AAB1006B4DC9 /* PBXTextBookmark */; - ECED6B8E10F9AB24006B4DC9 /* PBXTextBookmark */ = ECED6B8E10F9AB24006B4DC9 /* PBXTextBookmark */; - ECED6B9B10F9ABC2006B4DC9 /* PBXTextBookmark */ = ECED6B9B10F9ABC2006B4DC9 /* PBXTextBookmark */; - ECED6B9D10F9ABC2006B4DC9 /* PBXTextBookmark */ = ECED6B9D10F9ABC2006B4DC9 /* PBXTextBookmark */; - ECED6B9E10F9ABC2006B4DC9 /* PBXTextBookmark */ = ECED6B9E10F9ABC2006B4DC9 /* PBXTextBookmark */; - ECED6B9F10F9ABC2006B4DC9 /* PBXTextBookmark */ = ECED6B9F10F9ABC2006B4DC9 /* PBXTextBookmark */; - ECED6BA010F9ABC2006B4DC9 /* PBXTextBookmark */ = ECED6BA010F9ABC2006B4DC9 /* PBXTextBookmark */; - ECED6BA410F9ABC2006B4DC9 /* PBXTextBookmark */ = ECED6BA410F9ABC2006B4DC9 /* PBXTextBookmark */; - ECED6BAC10F9ACCE006B4DC9 /* PBXTextBookmark */ = ECED6BAC10F9ACCE006B4DC9 /* PBXTextBookmark */; - ECED6BAE10F9ACCE006B4DC9 /* PBXTextBookmark */ = ECED6BAE10F9ACCE006B4DC9 /* PBXTextBookmark */; - ECED6BB010F9ACCE006B4DC9 /* PBXTextBookmark */ = ECED6BB010F9ACCE006B4DC9 /* PBXTextBookmark */; - ECED6BB410F9ACCE006B4DC9 /* PBXTextBookmark */ = ECED6BB410F9ACCE006B4DC9 /* PBXTextBookmark */; - ECED6BB510F9ACCE006B4DC9 /* PBXTextBookmark */ = ECED6BB510F9ACCE006B4DC9 /* PBXTextBookmark */; - ECED6BB710F9ACCE006B4DC9 /* PBXTextBookmark */ = ECED6BB710F9ACCE006B4DC9 /* PBXTextBookmark */; - ECED6BB910F9ACCE006B4DC9 /* PBXTextBookmark */ = ECED6BB910F9ACCE006B4DC9 /* PBXTextBookmark */; + EC02B10A10FA4E8C0055FBF1 = EC02B10A10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B10B10FA4E8C0055FBF1 = EC02B10B10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B10C10FA4E8C0055FBF1 = EC02B10C10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B10D10FA4E8C0055FBF1 = EC02B10D10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B10F10FA4E8C0055FBF1 = EC02B10F10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B11010FA4E8C0055FBF1 = EC02B11010FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B11410FA4E8C0055FBF1 = EC02B11410FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B11510FA4E8C0055FBF1 = EC02B11510FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B11710FA4E8C0055FBF1 = EC02B11710FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B11910FA4E8C0055FBF1 = EC02B11910FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B11B10FA4E8C0055FBF1 = EC02B11B10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B11C10FA4E8C0055FBF1 = EC02B11C10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B11D10FA4E8C0055FBF1 = EC02B11D10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B11E10FA4E8C0055FBF1 = EC02B11E10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B11F10FA4E8C0055FBF1 = EC02B11F10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B12010FA4E8C0055FBF1 = EC02B12010FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B12110FA4E8C0055FBF1 = EC02B12110FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B12310FA4E8C0055FBF1 = EC02B12310FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B12610FA4E8C0055FBF1 = EC02B12610FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B12710FA4E8C0055FBF1 = EC02B12710FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B12810FA4E8C0055FBF1 = EC02B12810FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B12B10FA4E8C0055FBF1 = EC02B12B10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B12C10FA4E8C0055FBF1 = EC02B12C10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B13010FA4E8C0055FBF1 = EC02B13010FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B13110FA4E8C0055FBF1 = EC02B13110FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B13610FA4E8C0055FBF1 = EC02B13610FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B13D10FA4E8C0055FBF1 = EC02B13D10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B13F10FA4E8C0055FBF1 = EC02B13F10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B14610FA4E8C0055FBF1 = EC02B14610FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B14910FA4E8C0055FBF1 = EC02B14910FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B14A10FA4E8C0055FBF1 = EC02B14A10FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B15010FA4E8C0055FBF1 = EC02B15010FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B15110FA4E8C0055FBF1 = EC02B15110FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B15210FA4E8C0055FBF1 = EC02B15210FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B15310FA4E8C0055FBF1 = EC02B15310FA4E8C0055FBF1 /* PBXTextBookmark */; + EC02B15E10FA4EFA0055FBF1 = EC02B15E10FA4EFA0055FBF1 /* PBXTextBookmark */; + EC02B17310FA4FF50055FBF1 = EC02B17310FA4FF50055FBF1 /* PBXTextBookmark */; + EC02B17E10FA4FF50055FBF1 = EC02B17E10FA4FF50055FBF1 /* PBXTextBookmark */; + EC02B18310FA4FF50055FBF1 = EC02B18310FA4FF50055FBF1 /* PBXTextBookmark */; + EC02B23710FA51B70055FBF1 = EC02B23710FA51B70055FBF1 /* PBXTextBookmark */; + EC02B23810FA51B70055FBF1 = EC02B23810FA51B70055FBF1 /* PBXTextBookmark */; + EC02B24D10FA51E70055FBF1 = EC02B24D10FA51E70055FBF1 /* PBXTextBookmark */; + EC02B26010FA532E0055FBF1 = EC02B26010FA532E0055FBF1 /* PBXTextBookmark */; + EC02B26F10FA537D0055FBF1 = EC02B26F10FA537D0055FBF1 /* PBXTextBookmark */; + EC02B27210FA537D0055FBF1 = EC02B27210FA537D0055FBF1 /* PBXTextBookmark */; + EC02B28210FA54470055FBF1 = EC02B28210FA54470055FBF1 /* PBXTextBookmark */; + EC02B28510FA54470055FBF1 = EC02B28510FA54470055FBF1 /* PBXTextBookmark */; + EC02B29310FA55620055FBF1 = EC02B29310FA55620055FBF1 /* PBXTextBookmark */; + EC02B29610FA55620055FBF1 = EC02B29610FA55620055FBF1 /* PBXTextBookmark */; + EC02B29C10FA55820055FBF1 = EC02B29C10FA55820055FBF1 /* PBXTextBookmark */; + EC02B29F10FA55820055FBF1 = EC02B29F10FA55820055FBF1 /* PBXTextBookmark */; + EC02B2BA10FA569B0055FBF1 = EC02B2BA10FA569B0055FBF1 /* PBXTextBookmark */; + EC02B2C010FA56AF0055FBF1 = EC02B2C010FA56AF0055FBF1 /* PBXTextBookmark */; + EC02B2D210FA570D0055FBF1 = EC02B2D210FA570D0055FBF1 /* PBXTextBookmark */; + EC02B2F710FA59110055FBF1 = EC02B2F710FA59110055FBF1 /* PBXTextBookmark */; + EC02B31410FA5A940055FBF1 = EC02B31410FA5A940055FBF1 /* PBXTextBookmark */; + EC02B32810FA5D210055FBF1 = EC02B32810FA5D210055FBF1 /* PBXTextBookmark */; + EC02B32910FA5D210055FBF1 = EC02B32910FA5D210055FBF1 /* PBXTextBookmark */; + EC02B32A10FA5D210055FBF1 = EC02B32A10FA5D210055FBF1 /* PBXTextBookmark */; + EC02B32E10FA5D210055FBF1 = EC02B32E10FA5D210055FBF1 /* PBXTextBookmark */; + EC02B33010FA5D210055FBF1 = EC02B33010FA5D210055FBF1 /* PBXTextBookmark */; + EC02B33410FA5D210055FBF1 = EC02B33410FA5D210055FBF1 /* PBXTextBookmark */; + EC02B33510FA5D210055FBF1 = EC02B33510FA5D210055FBF1 /* PBXTextBookmark */; + EC02B34610FA5D210055FBF1 = EC02B34610FA5D210055FBF1 /* PBXTextBookmark */; + EC02B34B10FA5D210055FBF1 = EC02B34B10FA5D210055FBF1 /* PBXTextBookmark */; + EC02B35310FA5D210055FBF1 = EC02B35310FA5D210055FBF1 /* PBXTextBookmark */; + EC02B3A410FA626E0055FBF1 = EC02B3A410FA626E0055FBF1 /* PBXTextBookmark */; + EC02B3B410FA632B0055FBF1 = EC02B3B410FA632B0055FBF1 /* PBXTextBookmark */; + EC02B3C810FA64040055FBF1 = EC02B3C810FA64040055FBF1 /* PBXTextBookmark */; + EC02B3D610FA64430055FBF1 = EC02B3D610FA64430055FBF1 /* PBXTextBookmark */; + EC02B3D910FA645F0055FBF1 = EC02B3D910FA645F0055FBF1 /* PBXTextBookmark */; + EC02B3F810FA65230055FBF1 = EC02B3F810FA65230055FBF1 /* PBXTextBookmark */; + EC02B42110FA66EB0055FBF1 = EC02B42110FA66EB0055FBF1 /* PBXTextBookmark */; + EC02B42F10FA673D0055FBF1 = EC02B42F10FA673D0055FBF1 /* PBXTextBookmark */; + EC02B43D10FA69BE0055FBF1 = EC02B43D10FA69BE0055FBF1 /* PBXTextBookmark */; + EC02B43F10FA69BE0055FBF1 = EC02B43F10FA69BE0055FBF1 /* PBXTextBookmark */; + EC02B44510FA69BE0055FBF1 = EC02B44510FA69BE0055FBF1 /* PBXTextBookmark */; + EC02B44610FA69BE0055FBF1 = EC02B44610FA69BE0055FBF1 /* PBXTextBookmark */; + EC02B47610FA6FC50055FBF1 = EC02B47610FA6FC50055FBF1 /* PBXTextBookmark */; + EC02B47710FA6FC50055FBF1 = EC02B47710FA6FC50055FBF1 /* PBXTextBookmark */; + EC02B47C10FA6FC50055FBF1 = EC02B47C10FA6FC50055FBF1 /* PBXTextBookmark */; + EC02B47D10FA6FC50055FBF1 = EC02B47D10FA6FC50055FBF1 /* PBXTextBookmark */; + EC02B48610FA6FC50055FBF1 = EC02B48610FA6FC50055FBF1 /* PBXTextBookmark */; + EC02B48710FA6FC50055FBF1 = EC02B48710FA6FC50055FBF1 /* PBXTextBookmark */; + EC02B48A10FA6FC50055FBF1 = EC02B48A10FA6FC50055FBF1 /* PBXTextBookmark */; + EC02B48D10FA6FC50055FBF1 = EC02B48D10FA6FC50055FBF1 /* PBXTextBookmark */; + EC02B49E10FA6FC50055FBF1 = EC02B49E10FA6FC50055FBF1 /* PBXTextBookmark */; + EC02B4A710FA6FFC0055FBF1 = EC02B4A710FA6FFC0055FBF1 /* PBXTextBookmark */; + EC02B4CD10FA71110055FBF1 = EC02B4CD10FA71110055FBF1 /* PBXTextBookmark */; + ECE8D4C010FBD76500B2464F = ECE8D4C010FBD76500B2464F /* PBXTextBookmark */; + ECE8D4C110FBD76500B2464F = ECE8D4C110FBD76500B2464F /* PBXTextBookmark */; + ECE8D4C210FBD76500B2464F = ECE8D4C210FBD76500B2464F /* PBXTextBookmark */; + ECE8D4C310FBD76500B2464F = ECE8D4C310FBD76500B2464F /* PBXTextBookmark */; + ECE8D4C410FBD76500B2464F = ECE8D4C410FBD76500B2464F /* PBXTextBookmark */; + ECE8D4C510FBD76500B2464F = ECE8D4C510FBD76500B2464F /* PBXTextBookmark */; + ECE8D4C610FBD76500B2464F = ECE8D4C610FBD76500B2464F /* PBXTextBookmark */; + ECE8D4C710FBD76500B2464F = ECE8D4C710FBD76500B2464F /* PBXTextBookmark */; + ECE8D4C810FBD76500B2464F = ECE8D4C810FBD76500B2464F /* PBXTextBookmark */; + ECE8D4C910FBD76500B2464F = ECE8D4C910FBD76500B2464F /* PBXTextBookmark */; + ECE8D4CA10FBD76500B2464F = ECE8D4CA10FBD76500B2464F /* PBXTextBookmark */; + ECE8D4CB10FBD76500B2464F = ECE8D4CB10FBD76500B2464F /* PBXTextBookmark */; + ECE8D4CC10FBD76500B2464F = ECE8D4CC10FBD76500B2464F /* PBXTextBookmark */; + ECE8D4CD10FBD76500B2464F = ECE8D4CD10FBD76500B2464F /* PBXTextBookmark */; + ECE8D4CE10FBD76500B2464F = ECE8D4CE10FBD76500B2464F /* PBXTextBookmark */; + ECE8D4CF10FBD76500B2464F = ECE8D4CF10FBD76500B2464F /* PBXTextBookmark */; + ECE8D4D010FBD76500B2464F = ECE8D4D010FBD76500B2464F /* PBXTextBookmark */; + ECE8D4D210FBD7D400B2464F = ECE8D4D210FBD7D400B2464F /* PBXTextBookmark */; + ECED6B2310F9AAB1006B4DC9 = ECED6B2310F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B2410F9AAB1006B4DC9 = ECED6B2410F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B2510F9AAB1006B4DC9 = ECED6B2510F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B2810F9AAB1006B4DC9 = ECED6B2810F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B2910F9AAB1006B4DC9 = ECED6B2910F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B2A10F9AAB1006B4DC9 = ECED6B2A10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B2B10F9AAB1006B4DC9 = ECED6B2B10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B2D10F9AAB1006B4DC9 = ECED6B2D10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B3310F9AAB1006B4DC9 = ECED6B3310F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B3610F9AAB1006B4DC9 = ECED6B3610F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B3710F9AAB1006B4DC9 = ECED6B3710F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B3910F9AAB1006B4DC9 = ECED6B3910F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B3A10F9AAB1006B4DC9 = ECED6B3A10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B3C10F9AAB1006B4DC9 = ECED6B3C10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B3D10F9AAB1006B4DC9 = ECED6B3D10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B3F10F9AAB1006B4DC9 = ECED6B3F10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B4310F9AAB1006B4DC9 = ECED6B4310F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B4410F9AAB1006B4DC9 = ECED6B4410F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B4510F9AAB1006B4DC9 = ECED6B4510F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B4610F9AAB1006B4DC9 = ECED6B4610F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B4710F9AAB1006B4DC9 = ECED6B4710F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B4810F9AAB1006B4DC9 = ECED6B4810F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B4A10F9AAB1006B4DC9 = ECED6B4A10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B4C10F9AAB1006B4DC9 = ECED6B4C10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B4D10F9AAB1006B4DC9 = ECED6B4D10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B4E10F9AAB1006B4DC9 = ECED6B4E10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B4F10F9AAB1006B4DC9 = ECED6B4F10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B5010F9AAB1006B4DC9 = ECED6B5010F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B5210F9AAB1006B4DC9 = ECED6B5210F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B6610F9AAB1006B4DC9 = ECED6B6610F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B6710F9AAB1006B4DC9 = ECED6B6710F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B6810F9AAB1006B4DC9 = ECED6B6810F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B6C10F9AAB1006B4DC9 = ECED6B6C10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B6D10F9AAB1006B4DC9 = ECED6B6D10F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B7110F9AAB1006B4DC9 = ECED6B7110F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B7210F9AAB1006B4DC9 = ECED6B7210F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B7310F9AAB1006B4DC9 = ECED6B7310F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B7410F9AAB1006B4DC9 = ECED6B7410F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B7510F9AAB1006B4DC9 = ECED6B7510F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B7710F9AAB1006B4DC9 = ECED6B7710F9AAB1006B4DC9 /* PBXTextBookmark */; + ECED6B8E10F9AB24006B4DC9 = ECED6B8E10F9AB24006B4DC9 /* PBXTextBookmark */; + ECED6B9B10F9ABC2006B4DC9 = ECED6B9B10F9ABC2006B4DC9 /* PBXTextBookmark */; + ECED6B9D10F9ABC2006B4DC9 = ECED6B9D10F9ABC2006B4DC9 /* PBXTextBookmark */; + ECED6B9E10F9ABC2006B4DC9 = ECED6B9E10F9ABC2006B4DC9 /* PBXTextBookmark */; + ECED6B9F10F9ABC2006B4DC9 = ECED6B9F10F9ABC2006B4DC9 /* PBXTextBookmark */; + ECED6BA010F9ABC2006B4DC9 = ECED6BA010F9ABC2006B4DC9 /* PBXTextBookmark */; + ECED6BA410F9ABC2006B4DC9 = ECED6BA410F9ABC2006B4DC9 /* PBXTextBookmark */; + ECED6BAC10F9ACCE006B4DC9 = ECED6BAC10F9ACCE006B4DC9 /* PBXTextBookmark */; + ECED6BAE10F9ACCE006B4DC9 = ECED6BAE10F9ACCE006B4DC9 /* PBXTextBookmark */; + ECED6BB010F9ACCE006B4DC9 = ECED6BB010F9ACCE006B4DC9 /* PBXTextBookmark */; + ECED6BB410F9ACCE006B4DC9 = ECED6BB410F9ACCE006B4DC9 /* PBXTextBookmark */; + ECED6BB510F9ACCE006B4DC9 = ECED6BB510F9ACCE006B4DC9 /* PBXTextBookmark */; + ECED6BB710F9ACCE006B4DC9 = ECED6BB710F9ACCE006B4DC9 /* PBXTextBookmark */; + ECED6BB910F9ACCE006B4DC9 = ECED6BB910F9ACCE006B4DC9 /* PBXTextBookmark */; + ECF469F411346DE700390CBE /* PBXTextBookmark */ = ECF469F411346DE700390CBE /* PBXTextBookmark */; + ECF469F511346DE700390CBE /* PBXTextBookmark */ = ECF469F511346DE700390CBE /* PBXTextBookmark */; + ECF469F611346DE700390CBE /* PBXTextBookmark */ = ECF469F611346DE700390CBE /* PBXTextBookmark */; + ECF469F711346DE700390CBE /* PBXTextBookmark */ = ECF469F711346DE700390CBE /* PBXTextBookmark */; + ECF469F811346DE700390CBE /* PBXTextBookmark */ = ECF469F811346DE700390CBE /* PBXTextBookmark */; + ECF469F911346DE700390CBE /* PBXTextBookmark */ = ECF469F911346DE700390CBE /* PBXTextBookmark */; + ECF469FA11346DE700390CBE /* PBXTextBookmark */ = ECF469FA11346DE700390CBE /* PBXTextBookmark */; + ECF469FB11346DE700390CBE /* PBXTextBookmark */ = ECF469FB11346DE700390CBE /* PBXTextBookmark */; + ECF469FC11346DE700390CBE /* PBXTextBookmark */ = ECF469FC11346DE700390CBE /* PBXTextBookmark */; + ECF469FD11346DE700390CBE /* PBXTextBookmark */ = ECF469FD11346DE700390CBE /* PBXTextBookmark */; + ECF469FE11346DE700390CBE /* PBXTextBookmark */ = ECF469FE11346DE700390CBE /* PBXTextBookmark */; + ECF469FF11346DE700390CBE /* PBXTextBookmark */ = ECF469FF11346DE700390CBE /* PBXTextBookmark */; + ECF46A0011346DE700390CBE /* PBXTextBookmark */ = ECF46A0011346DE700390CBE /* PBXTextBookmark */; + ECF46A0A11346F4500390CBE /* PBXTextBookmark */ = ECF46A0A11346F4500390CBE /* PBXTextBookmark */; + ECF46A0B11346F4500390CBE /* PBXTextBookmark */ = ECF46A0B11346F4500390CBE /* PBXTextBookmark */; + ECF46A0C11346F4500390CBE /* PBXTextBookmark */ = ECF46A0C11346F4500390CBE /* PBXTextBookmark */; + ECF46A0D11346F4500390CBE /* PBXTextBookmark */ = ECF46A0D11346F4500390CBE /* PBXTextBookmark */; + ECF46A0E11346F4500390CBE /* PBXTextBookmark */ = ECF46A0E11346F4500390CBE /* PBXTextBookmark */; + ECF46A0F11346F4500390CBE /* PBXTextBookmark */ = ECF46A0F11346F4500390CBE /* PBXTextBookmark */; + ECF46A1011346F4500390CBE /* PBXTextBookmark */ = ECF46A1011346F4500390CBE /* PBXTextBookmark */; + ECF46A1111346F4500390CBE /* PBXTextBookmark */ = ECF46A1111346F4500390CBE /* PBXTextBookmark */; + ECF46A1211346F4500390CBE /* PBXTextBookmark */ = ECF46A1211346F4500390CBE /* PBXTextBookmark */; + ECF46A1311346F4500390CBE /* PBXTextBookmark */ = ECF46A1311346F4500390CBE /* PBXTextBookmark */; + ECF46A1411346F4500390CBE /* PBXTextBookmark */ = ECF46A1411346F4500390CBE /* PBXTextBookmark */; + ECF46D7B11347A2A00390CBE /* PBXTextBookmark */ = ECF46D7B11347A2A00390CBE /* PBXTextBookmark */; + ECF46D7C11347A2A00390CBE /* PBXTextBookmark */ = ECF46D7C11347A2A00390CBE /* PBXTextBookmark */; + ECF46D7D11347A2A00390CBE /* PBXTextBookmark */ = ECF46D7D11347A2A00390CBE /* PBXTextBookmark */; + ECF46D7E11347A2A00390CBE /* PBXTextBookmark */ = ECF46D7E11347A2A00390CBE /* PBXTextBookmark */; + ECF46D7F11347A2A00390CBE /* PBXTextBookmark */ = ECF46D7F11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8011347A2A00390CBE /* PBXTextBookmark */ = ECF46D8011347A2A00390CBE /* PBXTextBookmark */; + ECF46D8111347A2A00390CBE /* PBXTextBookmark */ = ECF46D8111347A2A00390CBE /* PBXTextBookmark */; + ECF46D8211347A2A00390CBE /* PBXTextBookmark */ = ECF46D8211347A2A00390CBE /* PBXTextBookmark */; + ECF46D8311347A2A00390CBE /* PBXTextBookmark */ = ECF46D8311347A2A00390CBE /* PBXTextBookmark */; + ECF46D8411347A2A00390CBE /* PBXTextBookmark */ = ECF46D8411347A2A00390CBE /* PBXTextBookmark */; + ECF46D8511347A2A00390CBE /* PBXTextBookmark */ = ECF46D8511347A2A00390CBE /* PBXTextBookmark */; + ECF46D8611347A2A00390CBE /* PBXTextBookmark */ = ECF46D8611347A2A00390CBE /* PBXTextBookmark */; + ECF46D8711347A2A00390CBE /* PBXTextBookmark */ = ECF46D8711347A2A00390CBE /* PBXTextBookmark */; + ECF46D8811347A2A00390CBE /* PBXTextBookmark */ = ECF46D8811347A2A00390CBE /* PBXTextBookmark */; + ECF46D8911347A2A00390CBE /* PBXTextBookmark */ = ECF46D8911347A2A00390CBE /* PBXTextBookmark */; + ECF46D8A11347A2A00390CBE /* PBXTextBookmark */ = ECF46D8A11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8B11347A2A00390CBE /* PBXTextBookmark */ = ECF46D8B11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8C11347A2A00390CBE /* PBXTextBookmark */ = ECF46D8C11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8D11347A2A00390CBE /* PBXTextBookmark */ = ECF46D8D11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8E11347A2A00390CBE /* PBXTextBookmark */ = ECF46D8E11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8F11347A2A00390CBE /* PBXTextBookmark */ = ECF46D8F11347A2A00390CBE /* PBXTextBookmark */; + ECF46D9011347A2A00390CBE /* PBXTextBookmark */ = ECF46D9011347A2A00390CBE /* PBXTextBookmark */; + ECF46D9111347A2A00390CBE /* PBXTextBookmark */ = ECF46D9111347A2A00390CBE /* PBXTextBookmark */; + ECF46D9211347A2A00390CBE /* PBXTextBookmark */ = ECF46D9211347A2A00390CBE /* PBXTextBookmark */; + ECF46D9311347A2A00390CBE /* PBXTextBookmark */ = ECF46D9311347A2A00390CBE /* PBXTextBookmark */; + ECF46D9411347A2A00390CBE /* PBXTextBookmark */ = ECF46D9411347A2A00390CBE /* PBXTextBookmark */; + ECF46D9F11347C1200390CBE /* PBXTextBookmark */ = ECF46D9F11347C1200390CBE /* PBXTextBookmark */; + ECF46DA011347C1200390CBE /* PBXTextBookmark */ = ECF46DA011347C1200390CBE /* PBXTextBookmark */; + ECF46DA111347C1200390CBE /* PBXTextBookmark */ = ECF46DA111347C1200390CBE /* PBXTextBookmark */; + ECF46DA211347C1200390CBE /* PBXTextBookmark */ = ECF46DA211347C1200390CBE /* PBXTextBookmark */; + ECF46DA311347C1200390CBE /* PBXTextBookmark */ = ECF46DA311347C1200390CBE /* PBXTextBookmark */; + ECF46DA411347C1200390CBE /* PBXTextBookmark */ = ECF46DA411347C1200390CBE /* PBXTextBookmark */; + ECF46DA511347C1200390CBE /* PBXTextBookmark */ = ECF46DA511347C1200390CBE /* PBXTextBookmark */; + ECF46DA611347C1200390CBE /* PBXTextBookmark */ = ECF46DA611347C1200390CBE /* PBXTextBookmark */; + ECF46DA711347C1200390CBE /* PBXTextBookmark */ = ECF46DA711347C1200390CBE /* PBXTextBookmark */; + ECF46DA811347C1200390CBE /* PBXTextBookmark */ = ECF46DA811347C1200390CBE /* PBXTextBookmark */; + ECF46DA911347C1200390CBE /* PBXTextBookmark */ = ECF46DA911347C1200390CBE /* PBXTextBookmark */; + ECF46DAA11347C1200390CBE /* PBXTextBookmark */ = ECF46DAA11347C1200390CBE /* PBXTextBookmark */; + ECF46DAB11347C1200390CBE /* PBXTextBookmark */ = ECF46DAB11347C1200390CBE /* PBXTextBookmark */; + ECF46DAC11347C1200390CBE /* PBXTextBookmark */ = ECF46DAC11347C1200390CBE /* PBXTextBookmark */; + ECF46DAD11347C1200390CBE /* PBXTextBookmark */ = ECF46DAD11347C1200390CBE /* PBXTextBookmark */; + ECF46DAE11347C1200390CBE /* PBXTextBookmark */ = ECF46DAE11347C1200390CBE /* PBXTextBookmark */; + ECF46DB011347C5800390CBE /* PBXTextBookmark */ = ECF46DB011347C5800390CBE /* PBXTextBookmark */; + ECF46DB111347CDE00390CBE /* PBXTextBookmark */ = ECF46DB111347CDE00390CBE /* PBXTextBookmark */; + ECF46DB411347D0700390CBE /* PBXTextBookmark */ = ECF46DB411347D0700390CBE /* PBXTextBookmark */; + ECF46DB511347D2200390CBE /* PBXTextBookmark */ = ECF46DB511347D2200390CBE /* PBXTextBookmark */; + ECF46DBA11347D5C00390CBE /* PBXTextBookmark */ = ECF46DBA11347D5C00390CBE /* PBXTextBookmark */; + ECF46DBB11347DCE00390CBE /* PBXTextBookmark */ = ECF46DBB11347DCE00390CBE /* PBXTextBookmark */; + ECF46DBC11347DCF00390CBE /* PBXTextBookmark */ = ECF46DBC11347DCF00390CBE /* PBXTextBookmark */; + ECF46DD511347FCD00390CBE /* PBXTextBookmark */ = ECF46DD511347FCD00390CBE /* PBXTextBookmark */; + ECF46DD611347FCD00390CBE /* PBXTextBookmark */ = ECF46DD611347FCD00390CBE /* PBXTextBookmark */; + ECF46DD711347FCD00390CBE /* PBXTextBookmark */ = ECF46DD711347FCD00390CBE /* PBXTextBookmark */; + ECF46DD811347FCD00390CBE /* PBXTextBookmark */ = ECF46DD811347FCD00390CBE /* PBXTextBookmark */; }; sourceControlManager = ECED644410F99551006B4DC9 /* Source Control */; userBuildSettings = { @@ -368,6 +444,11 @@ name = string.h; path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h; sourceTree = ""; + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 2072}}"; + sepNavSelRange = "{4498, 36}"; + sepNavVisRange = "{3588, 1864}"; + }; }; EC02B11410FA4E8C0055FBF1 /* PBXTextBookmark */ = { isa = PBXTextBookmark; @@ -701,7 +782,7 @@ ignoreCount = 0; lineNumber = 387; location = libtinySIP.dylib; - modificationTime = 284940129.008663; + modificationTime = 284940129.0086629; state = 2; }; EC02B15E10FA4EFA0055FBF1 /* PBXTextBookmark */ = { @@ -792,7 +873,7 @@ ignoreCount = 0; lineNumber = 43; location = libtinySIP.dylib; - modificationTime = 284940129.008833; + modificationTime = 284940129.0088331; state = 2; }; EC02B23710FA51B70055FBF1 /* PBXTextBookmark */ = { @@ -1016,7 +1097,7 @@ ignoreCount = 0; lineNumber = 66; location = libtinySIP.dylib; - modificationTime = 284940129.009124; + modificationTime = 284940129.0091239; state = 2; }; EC02B2D210FA570D0055FBF1 /* PBXTextBookmark */ = { @@ -1291,7 +1372,7 @@ vrLen = 1649; vrLoc = 1743; }; - EC02B42B10FA67310055FBF1 /* tnet_transport_poll.c:446 */ = { + EC02B42B10FA67310055FBF1 /* tnet_transport_poll.c:488 */ = { isa = PBXFileBreakpoint; actions = ( ); @@ -1303,9 +1384,9 @@ functionName = "tnet_transport_mainthread()"; hitCount = 0; ignoreCount = 0; - lineNumber = 446; + lineNumber = 488; location = libtinyNET.dylib; - modificationTime = 284940129.009371; + modificationTime = 284940129.0093709; state = 2; }; EC02B42F10FA673D0055FBF1 /* PBXTextBookmark */ = { @@ -1318,7 +1399,7 @@ vrLen = 1715; vrLoc = 934; }; - EC02B43910FA68FC0055FBF1 /* tnet_transport_poll.c:447 */ = { + EC02B43910FA68FC0055FBF1 /* tnet_transport_poll.c:489 */ = { isa = PBXFileBreakpoint; actions = ( ); @@ -1330,7 +1411,7 @@ functionName = "tnet_transport_mainthread()"; hitCount = 0; ignoreCount = 0; - lineNumber = 447; + lineNumber = 489; location = libtinyNET.dylib; modificationTime = 284940129.009432; state = 2; @@ -1406,7 +1487,7 @@ ignoreCount = 0; lineNumber = 85; location = libtinySAK.dylib; - modificationTime = 284940129.009556; + modificationTime = 284940129.0095561; state = 2; }; EC02B45A10FA6D7B0055FBF1 /* malloc_error_break */ = { @@ -1420,11 +1501,11 @@ hitCount = 0; ignoreCount = 0; location = libSystem.B.dylib; - modificationTime = 284940129.009996; + modificationTime = 284940129.0099959; state = 2; symbolName = malloc_error_break; }; - EC02B46210FA6DF30055FBF1 /* tnet_transport_poll.c:431 */ = { + EC02B46210FA6DF30055FBF1 /* tnet_transport_poll.c:473 */ = { isa = PBXFileBreakpoint; actions = ( ); @@ -1436,9 +1517,9 @@ functionName = "tnet_transport_mainthread()"; hitCount = 0; ignoreCount = 0; - lineNumber = 431; + lineNumber = 473; location = libtinyNET.dylib; - modificationTime = 284940129.009619; + modificationTime = 284940129.0096191; state = 2; }; EC02B46910FA6E310055FBF1 /* realloc */ = { @@ -1592,7 +1673,7 @@ fRef = ECED687410F99811006B4DC9 /* tnet_transport_poll.c */; name = "tnet_transport_poll.c: 450"; rLen = 0; - rLoc = 10065; + rLoc = 10880; rType = 0; vrLen = 1180; vrLoc = 9479; @@ -1634,7 +1715,7 @@ rLen = 7; rLoc = 1866; rType = 0; - vrLen = 1189; + vrLen = 1133; vrLoc = 883; }; ECE8D4C410FBD76500B2464F /* PBXTextBookmark */ = { @@ -1752,7 +1833,7 @@ rLen = 7; rLoc = 1866; rType = 0; - vrLen = 1189; + vrLen = 1133; vrLoc = 883; }; ECE8D4D010FBD76500B2464F /* PBXTextBookmark */ = { @@ -1787,6 +1868,12 @@ indexTemplatePath = ""; }; ECED654010F99647006B4DC9 /* tsip_message.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_message.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/tsip_message.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1344, 3836}}"; sepNavSelRange = "{6663, 0}"; @@ -1794,6 +1881,12 @@ }; }; ECED65D810F99666006B4DC9 /* tsip.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/tsip.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1295, 8540}}"; sepNavSelRange = "{11759, 0}"; @@ -1801,6 +1894,12 @@ }; }; ECED65D910F99666006B4DC9 /* tsip_message.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_message.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/tsip_message.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1295, 7388}}"; sepNavSelRange = "{6259, 6}"; @@ -1808,6 +1907,12 @@ }; }; ECED65DC10F99666006B4DC9 /* tsip_uri.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_uri.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/tsip_uri.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 2226}}"; sepNavSelRange = "{1294, 0}"; @@ -1910,9 +2015,9 @@ }; ECED681D10F996F6006B4DC9 /* tsk_timer.c */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1607, 6048}}"; - sepNavSelRange = "{6179, 0}"; - sepNavVisRange = "{6009, 403}"; + sepNavIntBoundsRect = "{{0, 0}, {1500, 5824}}"; + sepNavSelRange = "{3527, 0}"; + sepNavVisRange = "{3318, 842}"; }; }; ECED681E10F996F6006B4DC9 /* tsk_timer.h */ = { @@ -1923,13 +2028,25 @@ }; }; ECED685A10F997BF006B4DC9 /* tinysip_config.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tinysip_config.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip_config.h; + sourceTree = ""; uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1295, 1190}}"; - sepNavSelRange = "{1866, 7}"; - sepNavVisRange = "{883, 1189}"; + sepNavIntBoundsRect = "{{0, 0}, {1500, 1204}}"; + sepNavSelRange = "{1709, 109}"; + sepNavVisRange = "{1424, 497}"; }; }; ECED685B10F997BF006B4DC9 /* tsip.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tsip.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {760, 3458}}"; sepNavSelRange = "{1112, 26}"; @@ -1940,6 +2057,12 @@ activeExec = 0; }; ECED686910F99811006B4DC9 /* tinyNET_config.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tinyNET_config.h; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tinyNET_config.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {760, 1344}}"; sepNavSelRange = "{0, 0}"; @@ -1947,6 +2070,12 @@ }; }; ECED686A10F99811006B4DC9 /* tnet.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tnet.c; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {760, 1400}}"; sepNavSelRange = "{0, 0}"; @@ -1954,6 +2083,12 @@ }; }; ECED687010F99811006B4DC9 /* tnet_socket.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tnet_socket.c; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_socket.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 3416}}"; sepNavSelRange = "{4517, 0}"; @@ -1961,6 +2096,12 @@ }; }; ECED687110F99811006B4DC9 /* tnet_socket.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tnet_socket.h; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_socket.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 2184}}"; sepNavSelRange = "{1015, 10}"; @@ -1968,6 +2109,12 @@ }; }; ECED687210F99811006B4DC9 /* tnet_transport.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tnet_transport.c; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_transport.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 3402}}"; sepNavSelRange = "{4834, 0}"; @@ -1975,6 +2122,12 @@ }; }; ECED687410F99811006B4DC9 /* tnet_transport_poll.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tnet_transport_poll.c; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_transport_poll.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1295, 6720}}"; sepNavSelRange = "{10065, 0}"; @@ -1982,6 +2135,12 @@ }; }; ECED687510F99811006B4DC9 /* tnet_transport_win32.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tnet_transport_win32.c; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_transport_win32.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 8498}}"; sepNavSelRange = "{2165, 429}"; @@ -1989,6 +2148,12 @@ }; }; ECED687610F99811006B4DC9 /* tnet_types.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tnet_types.h; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_types.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 1176}}"; sepNavSelRange = "{1239, 0}"; @@ -1996,6 +2161,12 @@ }; }; ECED687710F99811006B4DC9 /* tnet_utils.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tnet_utils.c; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_utils.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 4634}}"; sepNavSelRange = "{3038, 0}"; @@ -2006,6 +2177,12 @@ activeExec = 0; }; ECED68E110F9A303006B4DC9 /* tsip_challenge.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_challenge.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/authentication/tsip_challenge.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 6480}}"; sepNavSelRange = "{6642, 15}"; @@ -2013,6 +2190,12 @@ }; }; ECED68E310F9A303006B4DC9 /* tsip_rijndael.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_rijndael.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/authentication/tsip_rijndael.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 6720}}"; sepNavSelRange = "{2464, 0}"; @@ -2020,6 +2203,12 @@ }; }; ECED68E510F9A303006B4DC9 /* tsip_dialog.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_dialog.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/dialogs/tsip_dialog.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 9464}}"; sepNavSelRange = "{9182, 0}"; @@ -2027,6 +2216,12 @@ }; }; ECED68E810F9A303006B4DC9 /* tsip_dialog_layer.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_dialog_layer.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/dialogs/tsip_dialog_layer.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1295, 3738}}"; sepNavSelRange = "{3347, 0}"; @@ -2034,6 +2229,12 @@ }; }; ECED68EA10F9A303006B4DC9 /* tsip_dialog_register.client.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_dialog_register.client.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/dialogs/tsip_dialog_register.client.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 7070}}"; sepNavSelRange = "{12770, 0}"; @@ -2041,6 +2242,12 @@ }; }; ECED68EB10F9A303006B4DC9 /* tsip_dialog_register.server.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_dialog_register.server.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/dialogs/tsip_dialog_register.server.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1295, 730}}"; sepNavSelRange = "{0, 0}"; @@ -2048,6 +2255,12 @@ }; }; ECED68EF10F9A303006B4DC9 /* tsip_header.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_header.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/headers/tsip_header.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 3332}}"; sepNavSelRange = "{7224, 0}"; @@ -2055,6 +2268,12 @@ }; }; ECED68F610F9A303006B4DC9 /* tsip_header_Allow.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_header_Allow.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/headers/tsip_header_Allow.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 6216}}"; sepNavSelRange = "{1985, 24}"; @@ -2062,6 +2281,12 @@ }; }; ECED68FC10F9A303006B4DC9 /* tsip_header_Contact.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_header_Contact.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/headers/tsip_header_Contact.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 34468}}"; sepNavSelRange = "{1645, 0}"; @@ -2069,6 +2294,12 @@ }; }; ECED690010F9A303006B4DC9 /* tsip_header_Content_Length.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_header_Content_Length.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/headers/tsip_header_Content_Length.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 5390}}"; sepNavSelRange = "{2181, 73}"; @@ -2076,6 +2307,12 @@ }; }; ECED690210F9A303006B4DC9 /* tsip_header_CSeq.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_header_CSeq.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/headers/tsip_header_CSeq.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 5990}}"; sepNavSelRange = "{4153, 18}"; @@ -2083,6 +2320,12 @@ }; }; ECED691210F9A303006B4DC9 /* tsip_header_P_Access_Network_Info.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_header_P_Access_Network_Info.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/headers/tsip_header_P_Access_Network_Info.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 5950}}"; sepNavSelRange = "{2399, 24}"; @@ -2090,6 +2333,12 @@ }; }; ECED694910F9A303006B4DC9 /* tsip_header_Via.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_header_Via.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/headers/tsip_header_Via.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 76258}}"; sepNavSelRange = "{20752, 39}"; @@ -2097,6 +2346,12 @@ }; }; ECED694E10F9A303006B4DC9 /* tsip_parser_message.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_parser_message.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/parsers/tsip_parser_message.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1295, 13538}}"; sepNavSelRange = "{3457, 0}"; @@ -2104,6 +2359,12 @@ }; }; ECED695910F9A303006B4DC9 /* tsip_dialog_register_sm.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_dialog_register_sm.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/smc/tsip_dialog_register_sm.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 8386}}"; sepNavSelRange = "{15459, 0}"; @@ -2111,6 +2372,12 @@ }; }; ECED695C10F9A303006B4DC9 /* tsip_transac_nict_sm.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_transac_nict_sm.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/smc/tsip_transac_nict_sm.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1295, 6762}}"; sepNavSelRange = "{15749, 0}"; @@ -2118,6 +2385,12 @@ }; }; ECED695F10F9A303006B4DC9 /* tsip_transac.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_transac.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/transactions/tsip_transac.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 1750}}"; sepNavSelRange = "{1674, 0}"; @@ -2125,6 +2398,12 @@ }; }; ECED696210F9A303006B4DC9 /* tsip_transac_layer.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_transac_layer.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/transactions/tsip_transac_layer.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 4298}}"; sepNavSelRange = "{1679, 24}"; @@ -2132,6 +2411,12 @@ }; }; ECED696310F9A303006B4DC9 /* tsip_transac_nict.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_transac_nict.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/transactions/tsip_transac_nict.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1295, 8120}}"; sepNavSelRange = "{5969, 0}"; @@ -2139,6 +2424,12 @@ }; }; ECED696610F9A303006B4DC9 /* tsip_transport.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_transport.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/transports/tsip_transport.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 3752}}"; sepNavSelRange = "{4389, 0}"; @@ -2146,6 +2437,12 @@ }; }; ECED696710F9A303006B4DC9 /* tsip_transport_layer.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_transport_layer.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/source/transports/tsip_transport_layer.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 5614}}"; sepNavSelRange = "{7990, 0}"; @@ -2153,6 +2450,12 @@ }; }; ECED69ED10F9A343006B4DC9 /* tsip_dialog.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_dialog.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/dialogs/tsip_dialog.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 2394}}"; sepNavSelRange = "{1130, 35}"; @@ -2160,6 +2463,12 @@ }; }; ECED69F410F9A343006B4DC9 /* tsip_header.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_header.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/headers/tsip_header.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 2436}}"; sepNavSelRange = "{4574, 78}"; @@ -2167,6 +2476,12 @@ }; }; ECED69FF10F9A343006B4DC9 /* tsip_header_Call_ID.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_header_Call_ID.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/headers/tsip_header_Call_ID.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 1022}}"; sepNavSelRange = "{1036, 42}"; @@ -2174,6 +2489,12 @@ }; }; ECED6A0710F9A343006B4DC9 /* tsip_header_CSeq.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_header_CSeq.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/headers/tsip_header_CSeq.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 1134}}"; sepNavSelRange = "{2217, 16}"; @@ -2181,6 +2502,12 @@ }; }; ECED6A5610F9A343006B4DC9 /* tsip_ragel_state.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_ragel_state.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/parsers/tsip_ragel_state.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 2100}}"; sepNavSelRange = "{1083, 0}"; @@ -2188,6 +2515,12 @@ }; }; ECED6A5C10F9A343006B4DC9 /* tsip_transac_nict_sm.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_transac_nict_sm.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/smc/tsip_transac_nict_sm.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {932, 952}}"; sepNavSelRange = "{877, 0}"; @@ -2195,6 +2528,12 @@ }; }; ECED6A5F10F9A343006B4DC9 /* tsip_transac.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_transac.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/transactions/tsip_transac.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1212, 2016}}"; sepNavSelRange = "{3497, 40}"; @@ -2202,6 +2541,12 @@ }; }; ECED6A6310F9A343006B4DC9 /* tsip_transac_nict.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_transac_nict.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/transactions/tsip_transac_nict.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 1372}}"; sepNavSelRange = "{1234, 249}"; @@ -2209,6 +2554,12 @@ }; }; ECED6A6410F9A343006B4DC9 /* tsip_transac_nist.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_transac_nist.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/transactions/tsip_transac_nist.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1518, 1218}}"; sepNavSelRange = "{1080, 48}"; @@ -2216,6 +2567,12 @@ }; }; ECED6A6710F9A343006B4DC9 /* tsip_transport_layer.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_transport_layer.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/transports/tsip_transport_layer.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1295, 980}}"; sepNavSelRange = "{1042, 48}"; @@ -2223,6 +2580,12 @@ }; }; ECED6AEB10F9A66E006B4DC9 /* thttp_auth.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = thttp_auth.c; + path = /Users/diopmamadou/Documents/doubango/tinyHTTP/source/auth/thttp_auth.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1206, 3654}}"; sepNavSelRange = "{2053, 0}"; @@ -2242,7 +2605,7 @@ argumentStrings = ( ); autoAttachOnCrash = 1; - breakpointsEnabled = 1; + breakpointsEnabled = 0; configStateDict = { }; customDataFormattersEnabled = 1; @@ -2453,7 +2816,7 @@ fRef = ECED687510F99811006B4DC9 /* tnet_transport_win32.c */; name = "tnet_transport_win32.c: 85"; rLen = 429; - rLoc = 2165; + rLoc = 2143; rType = 0; vrLen = 484; vrLoc = 2149; @@ -2718,7 +3081,7 @@ fRef = ECED687510F99811006B4DC9 /* tnet_transport_win32.c */; name = "tnet_transport_win32.c: 85"; rLen = 429; - rLoc = 2165; + rLoc = 2143; rType = 0; vrLen = 484; vrLoc = 2149; @@ -2728,7 +3091,7 @@ fRef = ECED687410F99811006B4DC9 /* tnet_transport_poll.c */; name = "tnet_transport_poll.c: 261"; rLen = 0; - rLoc = 5974; + rLoc = 6694; rType = 0; vrLen = 566; vrLoc = 5505; @@ -2977,4 +3340,951 @@ vrLen = 829; vrLoc = 2038; }; + ECF4692C11346C6A00390CBE /* tnet_dhcp_option.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 4858}}"; + sepNavSelRange = "{2154, 37}"; + sepNavVisRange = "{1579, 813}"; + }; + }; + ECF4692E11346C6A00390CBE /* tnet_dhcp_option_sip.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 1792}}"; + sepNavSelRange = "{1076, 30}"; + sepNavVisRange = "{0, 1362}"; + sepNavWindowFrame = "{{15, 615}, {750, 558}}"; + }; + }; + ECF4694E11346C6A00390CBE /* tnet_dns_rr.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 6604}}"; + sepNavSelRange = "{5480, 29}"; + sepNavVisRange = "{4651, 1068}"; + sepNavWindowFrame = "{{38, 594}, {750, 558}}"; + }; + }; + ECF4696211346C6A00390CBE /* tinyNET_config.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 1638}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{2325, 545}"; + }; + }; + ECF4697011346C6A00390CBE /* tnet_transport.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 1134}}"; + sepNavSelRange = "{2385, 86}"; + sepNavVisRange = "{1032, 2100}"; + }; + }; + ECF4697111346C6A00390CBE /* tnet_transport_poll.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 7658}}"; + sepNavSelRange = "{3093, 0}"; + sepNavVisRange = "{2832, 1069}"; + }; + }; + ECF4697211346C6A00390CBE /* tnet_transport_win32.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 9156}}"; + sepNavSelRange = "{3516, 747}"; + sepNavVisRange = "{3499, 1053}"; + }; + }; + ECF4697411346C6A00390CBE /* tnet_utils.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 14280}}"; + sepNavSelRange = "{10961, 0}"; + sepNavVisRange = "{10487, 984}"; + }; + }; + ECF4697911346C6A00390CBE /* tnet_turn_attribute.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 8540}}"; + sepNavSelRange = "{14946, 46}"; + sepNavVisRange = "{14282, 1235}"; + }; + }; + ECF469F411346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECED681D10F996F6006B4DC9 /* tsk_timer.c */; + name = "tsk_timer.c: 131"; + rLen = 0; + rLoc = 3527; + rType = 0; + vrLen = 804; + vrLoc = 3318; + }; + ECF469F511346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697911346C6A00390CBE /* tnet_turn_attribute.c */; + name = "tnet_turn_attribute.c: 549"; + rLen = 51; + rLoc = 13872; + rType = 0; + vrLen = 1021; + vrLoc = 13331; + }; + ECF469F611346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4692E11346C6A00390CBE /* tnet_dhcp_option_sip.c */; + name = "tnet_dhcp_option_sip.c: 32"; + rLen = 30; + rLoc = 1076; + rType = 0; + vrLen = 1362; + vrLoc = 0; + }; + ECF469F711346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4692C11346C6A00390CBE /* tnet_dhcp_option.c */; + name = "tnet_dhcp_option.c: 88"; + rLen = 37; + rLoc = 2154; + rType = 0; + vrLen = 793; + vrLoc = 1579; + }; + ECF469F811346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "warning: implicit declaration of function 'strtok'"; + fRef = ECF4694E11346C6A00390CBE /* tnet_dns_rr.c */; + rLen = 1; + rLoc = 209; + rType = 1; + }; + ECF469F911346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECED681D10F996F6006B4DC9 /* tsk_timer.c */; + name = "tsk_timer.c: 131"; + rLen = 0; + rLoc = 3527; + rType = 0; + vrLen = 804; + vrLoc = 3318; + }; + ECF469FA11346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4692E11346C6A00390CBE /* tnet_dhcp_option_sip.c */; + name = "tnet_dhcp_option_sip.c: 28"; + rLen = 0; + rLoc = 1032; + rType = 0; + vrLen = 1345; + vrLoc = 0; + }; + ECF469FB11346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697911346C6A00390CBE /* tnet_turn_attribute.c */; + name = "tnet_turn_attribute.c: 549"; + rLen = 51; + rLoc = 13872; + rType = 0; + vrLen = 1021; + vrLoc = 13331; + }; + ECF469FC11346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4692E11346C6A00390CBE /* tnet_dhcp_option_sip.c */; + name = "tnet_dhcp_option_sip.c: 32"; + rLen = 11; + rLoc = 1090; + rType = 0; + vrLen = 1345; + vrLoc = 0; + }; + ECF469FD11346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4694E11346C6A00390CBE /* tnet_dns_rr.c */; + name = "tnet_dns_rr.c: 76"; + rLen = 0; + rLoc = 1869; + rType = 0; + vrLen = 923; + vrLoc = 721; + }; + ECF469FE11346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4692E11346C6A00390CBE /* tnet_dhcp_option_sip.c */; + name = "tnet_dhcp_option_sip.c: 32"; + rLen = 30; + rLoc = 1076; + rType = 0; + vrLen = 1362; + vrLoc = 0; + }; + ECF469FF11346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4692C11346C6A00390CBE /* tnet_dhcp_option.c */; + name = "tnet_dhcp_option.c: 88"; + rLen = 37; + rLoc = 2154; + rType = 0; + vrLen = 793; + vrLoc = 1579; + }; + ECF46A0011346DE700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4694E11346C6A00390CBE /* tnet_dns_rr.c */; + name = "tnet_dns_rr.c: 208"; + rLen = 6; + rLoc = 5301; + rType = 0; + vrLen = 983; + vrLoc = 4757; + }; + ECF46A0A11346F4500390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = EC02B11110FA4E8C0055FBF1 /* string.h */; + name = "string.h: 109"; + rLen = 36; + rLoc = 4498; + rType = 0; + vrLen = 1864; + vrLoc = 3588; + }; + ECF46A0B11346F4500390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4694E11346C6A00390CBE /* tnet_dns_rr.c */; + name = "tnet_dns_rr.c: 218"; + rLen = 29; + rLoc = 5480; + rType = 0; + vrLen = 949; + vrLoc = 4664; + }; + ECF46A0C11346F4500390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697411346C6A00390CBE /* tnet_utils.c */; + name = "tnet_utils.c: 453"; + rLen = 0; + rLoc = 10961; + rType = 0; + vrLen = 1051; + vrLoc = 10416; + }; + ECF46A0D11346F4500390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697911346C6A00390CBE /* tnet_turn_attribute.c */; + name = "tnet_turn_attribute.c: 590"; + rLen = 46; + rLoc = 14946; + rType = 0; + vrLen = 1142; + vrLoc = 14282; + }; + ECF46A0E11346F4500390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: conflicting types for 'tnet_transport_add_socket'"; + fRef = ECF4697111346C6A00390CBE /* tnet_transport_poll.c */; + rLen = 1; + rLoc = 94; + rType = 1; + }; + ECF46A0F11346F4500390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4694E11346C6A00390CBE /* tnet_dns_rr.c */; + name = "tnet_dns_rr.c: 208"; + rLen = 6; + rLoc = 5301; + rType = 0; + vrLen = 983; + vrLoc = 4757; + }; + ECF46A1011346F4500390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = EC02B11110FA4E8C0055FBF1 /* string.h */; + name = "string.h: 109"; + rLen = 36; + rLoc = 4498; + rType = 0; + vrLen = 1864; + vrLoc = 3588; + }; + ECF46A1111346F4500390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4694E11346C6A00390CBE /* tnet_dns_rr.c */; + name = "tnet_dns_rr.c: 218"; + rLen = 29; + rLoc = 5480; + rType = 0; + vrLen = 949; + vrLoc = 4664; + }; + ECF46A1211346F4500390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697411346C6A00390CBE /* tnet_utils.c */; + name = "tnet_utils.c: 453"; + rLen = 0; + rLoc = 10961; + rType = 0; + vrLen = 1051; + vrLoc = 10416; + }; + ECF46A1311346F4500390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697911346C6A00390CBE /* tnet_turn_attribute.c */; + name = "tnet_turn_attribute.c: 590"; + rLen = 46; + rLoc = 14946; + rType = 0; + vrLen = 1142; + vrLoc = 14282; + }; + ECF46A1411346F4500390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697111346C6A00390CBE /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 89"; + rLen = 0; + rLoc = 2292; + rType = 0; + vrLen = 885; + vrLoc = 2229; + }; + ECF46A45113473CC00390CBE /* thttp_message.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 2968}}"; + sepNavSelRange = "{146, 0}"; + sepNavVisRange = "{4643, 624}"; + }; + }; + ECF46A47113473CC00390CBE /* tinyhttp_config.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 1120}}"; + sepNavSelRange = "{1959, 0}"; + sepNavVisRange = "{1497, 538}"; + }; + }; + ECF46A61113473CC00390CBE /* thttp_parser_message.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 6646}}"; + sepNavSelRange = "{1014, 1}"; + sepNavVisRange = "{406, 767}"; + }; + }; + ECF46B241134755E00390CBE /* tsip_transport.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 1526}}"; + sepNavSelRange = "{4326, 28}"; + sepNavVisRange = "{2255, 2528}"; + }; + }; + ECF46B251134755E00390CBE /* tsip_transport_ipsec.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 742}}"; + sepNavSelRange = "{1141, 0}"; + sepNavVisRange = "{0, 1726}"; + }; + }; + ECF46B2D1134755E00390CBE /* tsip.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 3822}}"; + sepNavSelRange = "{1387, 0}"; + sepNavVisRange = "{745, 1463}"; + }; + }; + ECF46C151134755E00390CBE /* tsip_transport_ipsec.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 5586}}"; + sepNavSelRange = "{10799, 28}"; + sepNavVisRange = "{10357, 961}"; + }; + }; + ECF46C201134755E00390CBE /* stdafx.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 717}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 866}"; + }; + }; + ECF46C231134755E00390CBE /* test.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 1232}}"; + sepNavSelRange = "{795, 0}"; + sepNavVisRange = "{1115, 829}"; + }; + }; + ECF46C261134755E00390CBE /* test_stack.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1088, 3052}}"; + sepNavSelRange = "{6203, 0}"; + sepNavVisRange = "{5705, 1003}"; + }; + }; + ECF46D42113476BD00390CBE /* tinyipsec_config.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1088, 1190}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 1035}"; + }; + }; + ECF46D45113476BD00390CBE /* tipsec_common.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 1400}}"; + sepNavSelRange = "{2021, 0}"; + sepNavVisRange = "{1833, 571}"; + }; + }; + ECF46D46113476BD00390CBE /* tipsec_common.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 3262}}"; + sepNavSelRange = "{6424, 137}"; + sepNavVisRange = "{5664, 1014}"; + sepNavWindowFrame = "{{61, 573}, {750, 558}}"; + }; + }; + ECF46D49113476BD00390CBE /* tipsec_vista.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 9926}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 1004}"; + }; + }; + ECF46D4B113476BD00390CBE /* tipsec_xp.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 8736}}"; + sepNavSelRange = "{14837, 0}"; + sepNavVisRange = "{14785, 644}"; + }; + }; + ECF46D4C113476BD00390CBE /* tipsec_xp.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 449}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 0}"; + }; + }; + ECF46D7B11347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D49113476BD00390CBE /* tipsec_vista.c */; + name = "tipsec_vista.c: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1004; + vrLoc = 0; + }; + ECF46D7C11347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D4C113476BD00390CBE /* tipsec_xp.h */; + name = "tipsec_xp.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 0; + vrLoc = 0; + }; + ECF46D7D11347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D4B113476BD00390CBE /* tipsec_xp.c */; + name = "tipsec_xp.c: 528"; + rLen = 0; + rLoc = 14837; + rType = 0; + vrLen = 644; + vrLoc = 14785; + }; + ECF46D7E11347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D45113476BD00390CBE /* tipsec_common.c */; + name = "tipsec_common.c: 73"; + rLen = 0; + rLoc = 2021; + rType = 0; + vrLen = 571; + vrLoc = 1833; + }; + ECF46D7F11347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C151134755E00390CBE /* tsip_transport_ipsec.c */; + name = "tsip_transport_ipsec.c: 397"; + rLen = 28; + rLoc = 10799; + rType = 0; + vrLen = 961; + vrLoc = 10357; + }; + ECF46D8011347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46B241134755E00390CBE /* tsip_transport.h */; + name = "tsip_transport.h: 96"; + rLen = 28; + rLoc = 4326; + rType = 0; + vrLen = 2528; + vrLoc = 2255; + }; + ECF46D8111347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697011346C6A00390CBE /* tnet_transport.h */; + name = "tnet_transport.h: 61"; + rLen = 86; + rLoc = 2385; + rType = 0; + vrLen = 2100; + vrLoc = 1032; + }; + ECF46D8211347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697211346C6A00390CBE /* tnet_transport_win32.c */; + name = "tnet_transport_win32.c: 437"; + rLen = 0; + rLoc = 10084; + rType = 0; + vrLen = 1698; + vrLoc = 9719; + }; + ECF46D8311347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697111346C6A00390CBE /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 499"; + rLen = 0; + rLoc = 12149; + rType = 0; + vrLen = 1121; + vrLoc = 10527; + }; + ECF46D8411347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C151134755E00390CBE /* tsip_transport_ipsec.c */; + name = "tsip_transport_ipsec.c: 368"; + rLen = 74; + rLoc = 9614; + rType = 0; + vrLen = 868; + vrLoc = 9305; + }; + ECF46D8511347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C151134755E00390CBE /* tsip_transport_ipsec.c */; + name = "tsip_transport_ipsec.c: 201"; + rLen = 0; + rLoc = 5398; + rType = 0; + vrLen = 631; + vrLoc = 5302; + }; + ECF46D8611347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D45113476BD00390CBE /* tipsec_common.c */; + name = "tipsec_common.c: 27"; + rLen = 0; + rLoc = 872; + rType = 0; + vrLen = 843; + vrLoc = 535; + }; + ECF46D8711347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D49113476BD00390CBE /* tipsec_vista.c */; + name = "tipsec_vista.c: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1004; + vrLoc = 0; + }; + ECF46D8811347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D4B113476BD00390CBE /* tipsec_xp.c */; + name = "tipsec_xp.c: 527"; + rLen = 0; + rLoc = 14835; + rType = 0; + vrLen = 644; + vrLoc = 14785; + }; + ECF46D8911347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D45113476BD00390CBE /* tipsec_common.c */; + name = "tipsec_common.c: 69"; + rLen = 0; + rLoc = 1992; + rType = 0; + vrLen = 714; + vrLoc = 1728; + }; + ECF46D8A11347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D4C113476BD00390CBE /* tipsec_xp.h */; + name = "tipsec_xp.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 0; + vrLoc = 0; + }; + ECF46D8B11347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D4B113476BD00390CBE /* tipsec_xp.c */; + name = "tipsec_xp.c: 528"; + rLen = 0; + rLoc = 14837; + rType = 0; + vrLen = 644; + vrLoc = 14785; + }; + ECF46D8C11347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D45113476BD00390CBE /* tipsec_common.c */; + name = "tipsec_common.c: 73"; + rLen = 0; + rLoc = 2021; + rType = 0; + vrLen = 571; + vrLoc = 1833; + }; + ECF46D8D11347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697011346C6A00390CBE /* tnet_transport.h */; + name = "tnet_transport.h: 12"; + rLen = 0; + rLoc = 402; + rType = 0; + vrLen = 2100; + vrLoc = 1032; + }; + ECF46D8E11347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C151134755E00390CBE /* tsip_transport_ipsec.c */; + name = "tsip_transport_ipsec.c: 397"; + rLen = 28; + rLoc = 10799; + rType = 0; + vrLen = 961; + vrLoc = 10357; + }; + ECF46D8F11347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46B241134755E00390CBE /* tsip_transport.h */; + name = "tsip_transport.h: 96"; + rLen = 137; + rLoc = 4255; + rType = 0; + vrLen = 2528; + vrLoc = 2255; + }; + ECF46D9011347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C151134755E00390CBE /* tsip_transport_ipsec.c */; + name = "tsip_transport_ipsec.c: 397"; + rLen = 28; + rLoc = 10799; + rType = 0; + vrLen = 961; + vrLoc = 10357; + }; + ECF46D9111347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46B241134755E00390CBE /* tsip_transport.h */; + name = "tsip_transport.h: 96"; + rLen = 28; + rLoc = 4326; + rType = 0; + vrLen = 2528; + vrLoc = 2255; + }; + ECF46D9211347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697011346C6A00390CBE /* tnet_transport.h */; + name = "tnet_transport.h: 61"; + rLen = 86; + rLoc = 2385; + rType = 0; + vrLen = 2100; + vrLoc = 1032; + }; + ECF46D9311347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697211346C6A00390CBE /* tnet_transport_win32.c */; + name = "tnet_transport_win32.c: 437"; + rLen = 0; + rLoc = 10084; + rType = 0; + vrLen = 1698; + vrLoc = 9719; + }; + ECF46D9411347A2A00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697111346C6A00390CBE /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 499"; + rLen = 0; + rLoc = 12149; + rType = 0; + vrLen = 1120; + vrLoc = 10527; + }; + ECF46D9F11347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697211346C6A00390CBE /* tnet_transport_win32.c */; + name = "tnet_transport_win32.c: 148"; + rLen = 747; + rLoc = 3516; + rType = 0; + vrLen = 1053; + vrLoc = 3499; + }; + ECF46DA011347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697111346C6A00390CBE /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 130"; + rLen = 0; + rLoc = 3093; + rType = 0; + vrLen = 1069; + vrLoc = 2832; + }; + ECF46DA111347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46B251134755E00390CBE /* tsip_transport_ipsec.h */; + name = "tsip_transport_ipsec.h: 41"; + rLen = 0; + rLoc = 1141; + rType = 0; + vrLen = 1726; + vrLoc = 0; + }; + ECF46DA211347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C201134755E00390CBE /* stdafx.c */; + name = "stdafx.c: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 866; + vrLoc = 0; + }; + ECF46DA311347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C231134755E00390CBE /* test.c */; + name = "test.c: 26"; + rLen = 0; + rLoc = 795; + rType = 0; + vrLen = 829; + vrLoc = 1115; + }; + ECF46DA411347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46B2D1134755E00390CBE /* tsip.h */; + name = "tsip.h: 49"; + rLen = 0; + rLoc = 1387; + rType = 0; + vrLen = 1463; + vrLoc = 745; + }; + ECF46DA511347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C261134755E00390CBE /* test_stack.h */; + name = "test_stack.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1431; + vrLoc = 0; + }; + ECF46DA611347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697111346C6A00390CBE /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 499"; + rLen = 0; + rLoc = 12149; + rType = 0; + vrLen = 587; + vrLoc = 10527; + }; + ECF46DA711347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697211346C6A00390CBE /* tnet_transport_win32.c */; + name = "tnet_transport_win32.c: 148"; + rLen = 747; + rLoc = 3516; + rType = 0; + vrLen = 1053; + vrLoc = 3499; + }; + ECF46DA811347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4697111346C6A00390CBE /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 130"; + rLen = 0; + rLoc = 3093; + rType = 0; + vrLen = 1069; + vrLoc = 2832; + }; + ECF46DA911347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46B251134755E00390CBE /* tsip_transport_ipsec.h */; + name = "tsip_transport_ipsec.h: 41"; + rLen = 0; + rLoc = 1141; + rType = 0; + vrLen = 1726; + vrLoc = 0; + }; + ECF46DAA11347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C231134755E00390CBE /* test.c */; + name = "test.c: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1439; + vrLoc = 0; + }; + ECF46DAB11347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C201134755E00390CBE /* stdafx.c */; + name = "stdafx.c: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 866; + vrLoc = 0; + }; + ECF46DAC11347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C231134755E00390CBE /* test.c */; + name = "test.c: 26"; + rLen = 0; + rLoc = 795; + rType = 0; + vrLen = 829; + vrLoc = 1115; + }; + ECF46DAD11347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46B2D1134755E00390CBE /* tsip.h */; + name = "tsip.h: 49"; + rLen = 0; + rLoc = 1387; + rType = 0; + vrLen = 1463; + vrLoc = 745; + }; + ECF46DAE11347C1200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C261134755E00390CBE /* test_stack.h */; + name = "test_stack.h: 137"; + rLen = 0; + rLoc = 3531; + rType = 0; + vrLen = 2348; + vrLoc = 3077; + }; + ECF46DB011347C5800390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C261134755E00390CBE /* test_stack.h */; + name = "test_stack.h: 137"; + rLen = 0; + rLoc = 3531; + rType = 0; + vrLen = 1356; + vrLoc = 2912; + }; + ECF46DB111347CDE00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C261134755E00390CBE /* test_stack.h */; + name = "test_stack.h: 137"; + rLen = 0; + rLoc = 3531; + rType = 0; + vrLen = 965; + vrLoc = 3191; + }; + ECF46DB411347D0700390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C261134755E00390CBE /* test_stack.h */; + name = "test_stack.h: 152"; + rLen = 0; + rLoc = 4204; + rType = 0; + vrLen = 1604; + vrLoc = 3191; + }; + ECF46DB511347D2200390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C261134755E00390CBE /* test_stack.h */; + name = "test_stack.h: 152"; + rLen = 0; + rLoc = 4204; + rType = 0; + vrLen = 1687; + vrLoc = 3375; + }; + ECF46DBA11347D5C00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C261134755E00390CBE /* test_stack.h */; + name = "test_stack.h: 152"; + rLen = 0; + rLoc = 4204; + rType = 0; + vrLen = 1630; + vrLoc = 3375; + }; + ECF46DBB11347DCE00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C261134755E00390CBE /* test_stack.h */; + name = "test_stack.h: 204"; + rLen = 0; + rLoc = 6203; + rType = 0; + vrLen = 702; + vrLoc = 5927; + }; + ECF46DBC11347DCF00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C261134755E00390CBE /* test_stack.h */; + name = "test_stack.h: 204"; + rLen = 0; + rLoc = 6203; + rType = 0; + vrLen = 1003; + vrLoc = 5705; + }; + ECF46DC011347F8100390CBE /* tinyIPSec */ = { + activeExec = 0; + }; + ECF46DD511347FCD00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C261134755E00390CBE /* test_stack.h */; + name = "test_stack.h: 204"; + rLen = 0; + rLoc = 6203; + rType = 0; + vrLen = 1003; + vrLoc = 5705; + }; + ECF46DD611347FCD00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D42113476BD00390CBE /* tinyipsec_config.h */; + name = "tinyipsec_config.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1035; + vrLoc = 0; + }; + ECF46DD711347FCD00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46C261134755E00390CBE /* test_stack.h */; + name = "test_stack.h: 204"; + rLen = 0; + rLoc = 6203; + rType = 0; + vrLen = 1003; + vrLoc = 5705; + }; + ECF46DD811347FCD00390CBE /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D42113476BD00390CBE /* tinyipsec_config.h */; + name = "tinyipsec_config.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1035; + vrLoc = 0; + }; } diff --git a/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.perspectivev3 b/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.perspectivev3 index 29816d52..3ede60d8 100644 --- a/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.perspectivev3 +++ b/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.perspectivev3 @@ -3,7 +3,7 @@ ActivePerspectiveName - Debug + Project AllowedModules @@ -200,8 +200,8 @@ PerspectiveWidths - 1668 - 1668 + 1508 + 1508 Perspectives @@ -230,6 +230,8 @@ Layout + BecomeActive + ContentConfiguration PBXBottomSmartGroupGIDs @@ -255,7 +257,7 @@ PBXSmartGroupTreeModuleColumnWidthsKey - 290 + 337 PBXSmartGroupTreeModuleColumnsKey_v4 @@ -267,18 +269,19 @@ PBXSmartGroupTreeModuleOutlineStateExpansionKey 08FB7794FE84155DC02AAC07 - ECED644710F9957A006B4DC9 + ECED6B0E10F9A953006B4DC9 1C37FBAC04509CD000000102 + ECF46DD311347FCD00390CBE + ECF46DD411347FCD00390CBE PBXSmartGroupTreeModuleOutlineStateSelectionKey - 30 - 25 + 0 PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {290, 939}} + {{0, 0}, {337, 751}} PBXTopSmartGroupGIDs @@ -288,17 +291,19 @@ GeometryConfiguration Frame - {{0, 0}, {307, 957}} + {{0, 0}, {354, 769}} GroupTreeTableConfiguration MainColumn - 290 + 337 + RubberWindowFrame + 164 133 1508 810 0 0 1920 1178 Module PBXSmartGroupTreeModule Proportion - 307pt + 354pt Dock @@ -309,7 +314,7 @@ PBXProjectModuleGUID ECED643E10F99551006B4DC9 PBXProjectModuleLabel - tsip_transac_nict.c + tinyipsec_config.h PBXSplitModuleInNavigatorKey Split0 @@ -317,176 +322,56 @@ PBXProjectModuleGUID ECED643F10F99551006B4DC9 PBXProjectModuleLabel - tsip_transac_nict.c + tinyipsec_config.h _historyCapacity 0 bookmark - ECE8D4D210FBD7D400B2464F + ECF46DD811347FCD00390CBE history - ECED6B2310F9AAB1006B4DC9 - ECED6B2410F9AAB1006B4DC9 - ECED6B2510F9AAB1006B4DC9 - ECED6B2810F9AAB1006B4DC9 - ECED6B2910F9AAB1006B4DC9 - ECED6B2A10F9AAB1006B4DC9 - ECED6B2B10F9AAB1006B4DC9 - ECED6B2D10F9AAB1006B4DC9 - ECED6B3310F9AAB1006B4DC9 - ECED6B3610F9AAB1006B4DC9 - ECED6B3710F9AAB1006B4DC9 - ECED6B3910F9AAB1006B4DC9 - ECED6B3A10F9AAB1006B4DC9 - ECED6B3C10F9AAB1006B4DC9 - ECED6B3D10F9AAB1006B4DC9 - ECED6B3F10F9AAB1006B4DC9 - ECED6B9B10F9ABC2006B4DC9 - ECED6BAC10F9ACCE006B4DC9 - ECED6BAE10F9ACCE006B4DC9 - ECED6BB010F9ACCE006B4DC9 - EC02B10A10FA4E8C0055FBF1 - EC02B10B10FA4E8C0055FBF1 - EC02B10C10FA4E8C0055FBF1 - EC02B10D10FA4E8C0055FBF1 - EC02B10F10FA4E8C0055FBF1 - EC02B11010FA4E8C0055FBF1 - EC02B11410FA4E8C0055FBF1 - EC02B11510FA4E8C0055FBF1 - EC02B11710FA4E8C0055FBF1 - EC02B11910FA4E8C0055FBF1 - EC02B11B10FA4E8C0055FBF1 - EC02B11C10FA4E8C0055FBF1 - EC02B11D10FA4E8C0055FBF1 - EC02B11E10FA4E8C0055FBF1 - EC02B11F10FA4E8C0055FBF1 - EC02B12010FA4E8C0055FBF1 - EC02B12110FA4E8C0055FBF1 - EC02B12310FA4E8C0055FBF1 - EC02B15E10FA4EFA0055FBF1 - EC02B17310FA4FF50055FBF1 - EC02B23710FA51B70055FBF1 - EC02B23810FA51B70055FBF1 - EC02B24D10FA51E70055FBF1 - EC02B26F10FA537D0055FBF1 - EC02B28210FA54470055FBF1 - EC02B29310FA55620055FBF1 - EC02B29C10FA55820055FBF1 - EC02B2C010FA56AF0055FBF1 - EC02B2F710FA59110055FBF1 - EC02B32810FA5D210055FBF1 - EC02B32910FA5D210055FBF1 - EC02B32A10FA5D210055FBF1 - EC02B32E10FA5D210055FBF1 - EC02B33010FA5D210055FBF1 - EC02B3A410FA626E0055FBF1 - EC02B3B410FA632B0055FBF1 - EC02B3C810FA64040055FBF1 - EC02B3D910FA645F0055FBF1 - EC02B3F810FA65230055FBF1 - EC02B42110FA66EB0055FBF1 - EC02B42F10FA673D0055FBF1 - EC02B43D10FA69BE0055FBF1 - EC02B43F10FA69BE0055FBF1 - EC02B47610FA6FC50055FBF1 - EC02B47710FA6FC50055FBF1 - EC02B47C10FA6FC50055FBF1 - EC02B47D10FA6FC50055FBF1 - EC02B4A710FA6FFC0055FBF1 - EC02B4CD10FA71110055FBF1 - ECE8D4C010FBD76500B2464F - ECE8D4C110FBD76500B2464F - ECE8D4C210FBD76500B2464F - ECE8D4C310FBD76500B2464F - ECE8D4C410FBD76500B2464F - ECE8D4C510FBD76500B2464F + ECF46D7B11347A2A00390CBE + ECF46D7C11347A2A00390CBE + ECF46D7D11347A2A00390CBE + ECF46D7E11347A2A00390CBE + ECF46D7F11347A2A00390CBE + ECF46D8011347A2A00390CBE + ECF46D8111347A2A00390CBE + ECF46D9F11347C1200390CBE + ECF46DA011347C1200390CBE + ECF46DA111347C1200390CBE + ECF46DA211347C1200390CBE + ECF46DA311347C1200390CBE + ECF46DA411347C1200390CBE + ECF46DD511347FCD00390CBE + ECF46DD611347FCD00390CBE prevStack - ECED6B4310F9AAB1006B4DC9 - ECED6B4410F9AAB1006B4DC9 - ECED6B4510F9AAB1006B4DC9 - ECED6B4610F9AAB1006B4DC9 - ECED6B4710F9AAB1006B4DC9 - ECED6B4810F9AAB1006B4DC9 - ECED6B4A10F9AAB1006B4DC9 - ECED6B4C10F9AAB1006B4DC9 - ECED6B4D10F9AAB1006B4DC9 - ECED6B4E10F9AAB1006B4DC9 - ECED6B4F10F9AAB1006B4DC9 - ECED6B5010F9AAB1006B4DC9 - ECED6B5210F9AAB1006B4DC9 - ECED6B6610F9AAB1006B4DC9 - ECED6B6710F9AAB1006B4DC9 - ECED6B6810F9AAB1006B4DC9 - ECED6B6C10F9AAB1006B4DC9 - ECED6B6D10F9AAB1006B4DC9 - ECED6B7110F9AAB1006B4DC9 - ECED6B7210F9AAB1006B4DC9 - ECED6B7310F9AAB1006B4DC9 - ECED6B7410F9AAB1006B4DC9 - ECED6B7510F9AAB1006B4DC9 - ECED6B7710F9AAB1006B4DC9 - ECED6B8E10F9AB24006B4DC9 - ECED6B9D10F9ABC2006B4DC9 - ECED6B9E10F9ABC2006B4DC9 - ECED6B9F10F9ABC2006B4DC9 - ECED6BA010F9ABC2006B4DC9 - ECED6BA410F9ABC2006B4DC9 - ECED6BB410F9ACCE006B4DC9 - ECED6BB510F9ACCE006B4DC9 - ECED6BB710F9ACCE006B4DC9 - ECED6BB910F9ACCE006B4DC9 - EC02B12610FA4E8C0055FBF1 - EC02B12710FA4E8C0055FBF1 - EC02B12810FA4E8C0055FBF1 - EC02B12B10FA4E8C0055FBF1 - EC02B12C10FA4E8C0055FBF1 - EC02B13010FA4E8C0055FBF1 - EC02B13110FA4E8C0055FBF1 - EC02B13610FA4E8C0055FBF1 - EC02B13D10FA4E8C0055FBF1 - EC02B13F10FA4E8C0055FBF1 - EC02B14610FA4E8C0055FBF1 - EC02B14910FA4E8C0055FBF1 - EC02B14A10FA4E8C0055FBF1 - EC02B15010FA4E8C0055FBF1 - EC02B15110FA4E8C0055FBF1 - EC02B15210FA4E8C0055FBF1 - EC02B15310FA4E8C0055FBF1 - EC02B17E10FA4FF50055FBF1 - EC02B18310FA4FF50055FBF1 - EC02B26010FA532E0055FBF1 - EC02B27210FA537D0055FBF1 - EC02B28510FA54470055FBF1 - EC02B29610FA55620055FBF1 - EC02B29F10FA55820055FBF1 - EC02B2BA10FA569B0055FBF1 - EC02B2D210FA570D0055FBF1 - EC02B31410FA5A940055FBF1 - EC02B33410FA5D210055FBF1 - EC02B33510FA5D210055FBF1 - EC02B34610FA5D210055FBF1 - EC02B34B10FA5D210055FBF1 - EC02B35310FA5D210055FBF1 - EC02B3D610FA64430055FBF1 - EC02B44510FA69BE0055FBF1 - EC02B44610FA69BE0055FBF1 - EC02B48610FA6FC50055FBF1 - EC02B48710FA6FC50055FBF1 - EC02B48A10FA6FC50055FBF1 - EC02B48D10FA6FC50055FBF1 - EC02B49E10FA6FC50055FBF1 - ECE8D4C610FBD76500B2464F - ECE8D4C710FBD76500B2464F - ECE8D4C810FBD76500B2464F - ECE8D4C910FBD76500B2464F - ECE8D4CA10FBD76500B2464F - ECE8D4CB10FBD76500B2464F - ECE8D4CC10FBD76500B2464F - ECE8D4CD10FBD76500B2464F - ECE8D4CE10FBD76500B2464F - ECE8D4CF10FBD76500B2464F - ECE8D4D010FBD76500B2464F + ECF46D8411347A2A00390CBE + ECF46D8511347A2A00390CBE + ECF46D8611347A2A00390CBE + ECF46D8711347A2A00390CBE + ECF46D8811347A2A00390CBE + ECF46D8911347A2A00390CBE + ECF46D8A11347A2A00390CBE + ECF46D8B11347A2A00390CBE + ECF46D8C11347A2A00390CBE + ECF46D8D11347A2A00390CBE + ECF46D8E11347A2A00390CBE + ECF46D8F11347A2A00390CBE + ECF46D9011347A2A00390CBE + ECF46D9111347A2A00390CBE + ECF46D9211347A2A00390CBE + ECF46D9311347A2A00390CBE + ECF46DA611347C1200390CBE + ECF46DA711347C1200390CBE + ECF46DA811347C1200390CBE + ECF46DA911347C1200390CBE + ECF46DAA11347C1200390CBE + ECF46DAB11347C1200390CBE + ECF46DAC11347C1200390CBE + ECF46DAD11347C1200390CBE + ECF46DD711347FCD00390CBE SplitCount @@ -500,16 +385,18 @@ GeometryConfiguration Frame - {{0, 0}, {1356, 785}} + {{0, 0}, {1149, 526}} + RubberWindowFrame + 164 133 1508 810 0 0 1920 1178 Module PBXNavigatorGroup Proportion - 785pt + 526pt Proportion - 167pt + 238pt Tabs @@ -523,7 +410,9 @@ GeometryConfiguration Frame - {{10, 27}, {1356, 140}} + {{10, 27}, {1149, 211}} + RubberWindowFrame + 164 133 1508 810 0 0 1920 1178 Module XCDetailModule @@ -577,7 +466,7 @@ GeometryConfiguration Frame - {{10, 27}, {1356, 140}} + {{10, 27}, {1149, 211}} Module PBXBuildResultsModule @@ -586,7 +475,7 @@ Proportion - 1356pt + 1149pt Name @@ -605,11 +494,11 @@ TableOfContents - ECE8D4D310FBD7D400B2464F + ECF46A0111346DE700390CBE 1CA23ED40692098700951B8B - ECE8D4D410FBD7D400B2464F + ECF46A0211346DE700390CBE ECED643E10F99551006B4DC9 - ECE8D4D510FBD7D400B2464F + ECF46A0311346DE700390CBE 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -648,8 +537,6 @@ Layout - BecomeActive - ContentConfiguration PBXProjectModuleGUID @@ -660,14 +547,12 @@ GeometryConfiguration Frame - {{0, 0}, {1668, 342}} - RubberWindowFrame - 365 180 1668 998 0 0 1920 1178 + {{0, 0}, {1508, 154}} Module PBXDebugCLIModule Proportion - 342pt + 154pt ContentConfiguration @@ -686,8 +571,8 @@ yes sizes - {{0, 0}, {814, 295}} - {{814, 0}, {854, 295}} + {{0, 0}, {736, 296}} + {{736, 0}, {772, 296}} VerticalSplitView @@ -702,8 +587,8 @@ yes sizes - {{0, 0}, {1668, 295}} - {{0, 295}, {1668, 315}} + {{0, 0}, {1508, 296}} + {{0, 296}, {1508, 314}} @@ -723,7 +608,7 @@ DebugSTDIOWindowFrame {{200, 200}, {500, 300}} Frame - {{0, 347}, {1668, 610}} + {{0, 159}, {1508, 610}} PBXDebugSessionStackFrameViewKey DebugVariablesTableConfiguration @@ -733,15 +618,11 @@ Value 85 Summary - 624 + 542 Frame - {{814, 0}, {854, 295}} - RubberWindowFrame - 365 180 1668 998 0 0 1920 1178 + {{736, 0}, {772, 296}} - RubberWindowFrame - 365 180 1668 998 0 0 1920 1178 Module PBXDebugSessionModule @@ -764,14 +645,14 @@ TableOfContents - ECE8D4D610FBD7D400B2464F + ECF46A0411346DE700390CBE 1CCC7628064C1048000F2A68 1CCC7629064C1048000F2A68 - ECE8D4D710FBD7D400B2464F - ECE8D4D810FBD7D400B2464F - ECE8D4D910FBD7D400B2464F - ECE8D4DA10FBD7D400B2464F - ECED643E10F99551006B4DC9 + ECF46A0511346DE700390CBE + ECF46A0611346DE700390CBE + ECF46A0711346DE700390CBE + ECF46A0811346DE700390CBE + ECF4691811346BB900390CBE ToolbarConfiguration xcode.toolbar.config.debugV3 @@ -801,12 +682,10 @@ 5 WindowOrderList - ECE8D4DB10FBD7D400B2464F - ECE8D4DC10FBD7D400B2464F /Users/diopmamadou/Documents/doubango/xcode/tinySIP/tinySIP.xcodeproj WindowString - 365 180 1668 998 0 0 1920 1178 + 164 133 1508 810 0 0 1920 1178 WindowToolsV3 diff --git a/trunk/xcode/tinySIP/tinySIP.xcodeproj/project.pbxproj b/trunk/xcode/tinySIP/tinySIP.xcodeproj/project.pbxproj index 7e0f5199..0bd67d09 100644 --- a/trunk/xcode/tinySIP/tinySIP.xcodeproj/project.pbxproj +++ b/trunk/xcode/tinySIP/tinySIP.xcodeproj/project.pbxproj @@ -7,15 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - ECED654410F99647006B4DC9 /* tsip_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED654010F99647006B4DC9 /* tsip_message.h */; }; - ECED654510F99647006B4DC9 /* tsip_operation.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED654110F99647006B4DC9 /* tsip_operation.h */; }; - ECED654610F99647006B4DC9 /* tsip_timers.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED654210F99647006B4DC9 /* tsip_timers.h */; }; - ECED654710F99647006B4DC9 /* tsip_uri.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED654310F99647006B4DC9 /* tsip_uri.h */; }; - ECED65DD10F99666006B4DC9 /* tsip.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED65D810F99666006B4DC9 /* tsip.c */; }; - ECED65DE10F99666006B4DC9 /* tsip_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED65D910F99666006B4DC9 /* tsip_message.c */; }; - ECED65DF10F99666006B4DC9 /* tsip_operation.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED65DA10F99666006B4DC9 /* tsip_operation.c */; }; - ECED65E010F99666006B4DC9 /* tsip_timers.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED65DB10F99666006B4DC9 /* tsip_timers.c */; }; - ECED65E110F99666006B4DC9 /* tsip_uri.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED65DC10F99666006B4DC9 /* tsip_uri.c */; }; ECED682310F996F6006B4DC9 /* tinySAK_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED67EE10F996F6006B4DC9 /* tinySAK_config.h */; }; ECED682410F996F6006B4DC9 /* tsk.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED67EF10F996F6006B4DC9 /* tsk.c */; }; ECED682510F996F6006B4DC9 /* tsk.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED67F010F996F6006B4DC9 /* tsk.h */; }; @@ -69,280 +60,10 @@ ECED685510F996F6006B4DC9 /* tsk_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED682010F996F6006B4DC9 /* tsk_url.h */; }; ECED685610F996F6006B4DC9 /* tsk_xml.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED682110F996F6006B4DC9 /* tsk_xml.c */; }; ECED685710F996F6006B4DC9 /* tsk_xml.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED682210F996F6006B4DC9 /* tsk_xml.h */; }; - ECED685C10F997BF006B4DC9 /* tinysip_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED685A10F997BF006B4DC9 /* tinysip_config.h */; }; - ECED685D10F997BF006B4DC9 /* tsip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED685B10F997BF006B4DC9 /* tsip.h */; }; - ECED687910F99811006B4DC9 /* tinyNET_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED686910F99811006B4DC9 /* tinyNET_config.h */; }; - ECED687A10F99811006B4DC9 /* tnet.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED686A10F99811006B4DC9 /* tnet.c */; }; - ECED687B10F99811006B4DC9 /* tnet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED686B10F99811006B4DC9 /* tnet.h */; }; - ECED687C10F99811006B4DC9 /* tnet_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED686C10F99811006B4DC9 /* tnet_auth.c */; }; - ECED687D10F99811006B4DC9 /* tnet_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED686D10F99811006B4DC9 /* tnet_auth.h */; }; - ECED687E10F99811006B4DC9 /* tnet_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED686E10F99811006B4DC9 /* tnet_poll.c */; }; - ECED687F10F99811006B4DC9 /* tnet_poll.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED686F10F99811006B4DC9 /* tnet_poll.h */; }; - ECED688010F99811006B4DC9 /* tnet_socket.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED687010F99811006B4DC9 /* tnet_socket.c */; }; - ECED688110F99811006B4DC9 /* tnet_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED687110F99811006B4DC9 /* tnet_socket.h */; }; - ECED688210F99811006B4DC9 /* tnet_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED687210F99811006B4DC9 /* tnet_transport.c */; }; - ECED688310F99811006B4DC9 /* tnet_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED687310F99811006B4DC9 /* tnet_transport.h */; }; - ECED688410F99811006B4DC9 /* tnet_transport_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED687410F99811006B4DC9 /* tnet_transport_poll.c */; }; - ECED688510F99811006B4DC9 /* tnet_transport_win32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED687510F99811006B4DC9 /* tnet_transport_win32.c */; }; - ECED688610F99811006B4DC9 /* tnet_types.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED687610F99811006B4DC9 /* tnet_types.h */; }; - ECED688710F99811006B4DC9 /* tnet_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED687710F99811006B4DC9 /* tnet_utils.c */; }; - ECED688810F99811006B4DC9 /* tnet_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED687810F99811006B4DC9 /* tnet_utils.h */; }; ECED688F10F9986A006B4DC9 /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED65E610F9968A006B4DC9 /* libtinySAK.dylib */; }; ECED689510F99886006B4DC9 /* libtinyNET.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED686410F997F2006B4DC9 /* libtinyNET.dylib */; }; ECED689610F99886006B4DC9 /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED65E610F9968A006B4DC9 /* libtinySAK.dylib */; }; - ECED68AD10F9991C006B4DC9 /* thttp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED68AB10F9991C006B4DC9 /* thttp_message.h */; }; - ECED68AE10F9991C006B4DC9 /* thttp_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED68AC10F9991C006B4DC9 /* thttp_url.h */; }; - ECED68B110F9992F006B4DC9 /* thttp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED68AF10F9992F006B4DC9 /* thttp.h */; }; - ECED68B210F9992F006B4DC9 /* tinyhttp_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED68B010F9992F006B4DC9 /* tinyhttp_config.h */; }; - ECED68BD10F99944006B4DC9 /* thttp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68BA10F99944006B4DC9 /* thttp.c */; }; - ECED68BE10F99944006B4DC9 /* thttp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68BB10F99944006B4DC9 /* thttp_message.c */; }; - ECED68BF10F99944006B4DC9 /* thttp_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68BC10F99944006B4DC9 /* thttp_utl.c */; }; ECED68C410F99979006B4DC9 /* libtinyHTTP.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED689D10F998E4006B4DC9 /* libtinyHTTP.dylib */; }; - ECED696810F9A303006B4DC9 /* tsip_challenge.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68E110F9A303006B4DC9 /* tsip_challenge.c */; }; - ECED696910F9A303006B4DC9 /* tsip_milenage.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68E210F9A303006B4DC9 /* tsip_milenage.c */; }; - ECED696A10F9A303006B4DC9 /* tsip_rijndael.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68E310F9A303006B4DC9 /* tsip_rijndael.c */; }; - ECED696B10F9A303006B4DC9 /* tsip_dialog.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68E510F9A303006B4DC9 /* tsip_dialog.c */; }; - ECED696C10F9A303006B4DC9 /* tsip_dialog_invite.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68E610F9A303006B4DC9 /* tsip_dialog_invite.client.c */; }; - ECED696D10F9A303006B4DC9 /* tsip_dialog_invite.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68E710F9A303006B4DC9 /* tsip_dialog_invite.server.c */; }; - ECED696E10F9A303006B4DC9 /* tsip_dialog_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68E810F9A303006B4DC9 /* tsip_dialog_layer.c */; }; - ECED696F10F9A303006B4DC9 /* tsip_dialog_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68E910F9A303006B4DC9 /* tsip_dialog_message.c */; }; - ECED697010F9A303006B4DC9 /* tsip_dialog_register.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68EA10F9A303006B4DC9 /* tsip_dialog_register.client.c */; }; - ECED697110F9A303006B4DC9 /* tsip_dialog_register.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68EB10F9A303006B4DC9 /* tsip_dialog_register.server.c */; }; - ECED697210F9A303006B4DC9 /* tsip_dialog_subscribe.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68EC10F9A303006B4DC9 /* tsip_dialog_subscribe.client.c */; }; - ECED697310F9A303006B4DC9 /* tsip_dialog_subscribe.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68ED10F9A303006B4DC9 /* tsip_dialog_subscribe.server.c */; }; - ECED697410F9A303006B4DC9 /* tsip_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68EF10F9A303006B4DC9 /* tsip_header.c */; }; - ECED697510F9A303006B4DC9 /* tsip_header_accept.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68F010F9A303006B4DC9 /* tsip_header_accept.c */; }; - ECED697610F9A303006B4DC9 /* tsip_header_Accept_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68F110F9A303006B4DC9 /* tsip_header_Accept_Contact.c */; }; - ECED697710F9A303006B4DC9 /* tsip_header_Accept_Encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68F210F9A303006B4DC9 /* tsip_header_Accept_Encoding.c */; }; - ECED697810F9A303006B4DC9 /* tsip_header_Accept_Language.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68F310F9A303006B4DC9 /* tsip_header_Accept_Language.c */; }; - ECED697910F9A303006B4DC9 /* tsip_header_Accept_Resource_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68F410F9A303006B4DC9 /* tsip_header_Accept_Resource_Priority.c */; }; - ECED697A10F9A303006B4DC9 /* tsip_header_Alert_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68F510F9A303006B4DC9 /* tsip_header_Alert_Info.c */; }; - ECED697B10F9A303006B4DC9 /* tsip_header_Allow.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68F610F9A303006B4DC9 /* tsip_header_Allow.c */; }; - ECED697C10F9A303006B4DC9 /* tsip_header_Allow_Events.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68F710F9A303006B4DC9 /* tsip_header_Allow_Events.c */; }; - ECED697D10F9A303006B4DC9 /* tsip_header_Authentication_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68F810F9A303006B4DC9 /* tsip_header_Authentication_Info.c */; }; - ECED697E10F9A303006B4DC9 /* tsip_header_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68F910F9A303006B4DC9 /* tsip_header_Authorization.c */; }; - ECED697F10F9A303006B4DC9 /* tsip_header_Call_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68FA10F9A303006B4DC9 /* tsip_header_Call_ID.c */; }; - ECED698010F9A303006B4DC9 /* tsip_header_Call_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68FB10F9A303006B4DC9 /* tsip_header_Call_Info.c */; }; - ECED698110F9A303006B4DC9 /* tsip_header_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68FC10F9A303006B4DC9 /* tsip_header_Contact.c */; }; - ECED698210F9A303006B4DC9 /* tsip_header_Content_Disposition.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68FD10F9A303006B4DC9 /* tsip_header_Content_Disposition.c */; }; - ECED698310F9A303006B4DC9 /* tsip_header_Content_Encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68FE10F9A303006B4DC9 /* tsip_header_Content_Encoding.c */; }; - ECED698410F9A303006B4DC9 /* tsip_header_Content_Language.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED68FF10F9A303006B4DC9 /* tsip_header_Content_Language.c */; }; - ECED698510F9A303006B4DC9 /* tsip_header_Content_Length.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690010F9A303006B4DC9 /* tsip_header_Content_Length.c */; }; - ECED698610F9A303006B4DC9 /* tsip_header_Content_Type.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690110F9A303006B4DC9 /* tsip_header_Content_Type.c */; }; - ECED698710F9A303006B4DC9 /* tsip_header_CSeq.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690210F9A303006B4DC9 /* tsip_header_CSeq.c */; }; - ECED698810F9A303006B4DC9 /* tsip_header_Date.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690310F9A303006B4DC9 /* tsip_header_Date.c */; }; - ECED698910F9A303006B4DC9 /* tsip_header_Error_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690410F9A303006B4DC9 /* tsip_header_Error_Info.c */; }; - ECED698A10F9A303006B4DC9 /* tsip_header_Event.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690510F9A303006B4DC9 /* tsip_header_Event.c */; }; - ECED698B10F9A303006B4DC9 /* tsip_header_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690610F9A303006B4DC9 /* tsip_header_Expires.c */; }; - ECED698C10F9A303006B4DC9 /* tsip_header_From.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690710F9A303006B4DC9 /* tsip_header_From.c */; }; - ECED698D10F9A303006B4DC9 /* tsip_header_History_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690810F9A303006B4DC9 /* tsip_header_History_Info.c */; }; - ECED698E10F9A303006B4DC9 /* tsip_header_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690910F9A303006B4DC9 /* tsip_header_Identity.c */; }; - ECED698F10F9A303006B4DC9 /* tsip_header_Identity_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690A10F9A303006B4DC9 /* tsip_header_Identity_Info.c */; }; - ECED699010F9A303006B4DC9 /* tsip_header_In_Reply_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690B10F9A303006B4DC9 /* tsip_header_In_Reply_To.c */; }; - ECED699110F9A303006B4DC9 /* tsip_header_Join.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690C10F9A303006B4DC9 /* tsip_header_Join.c */; }; - ECED699210F9A303006B4DC9 /* tsip_header_Max_Forwards.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690D10F9A303006B4DC9 /* tsip_header_Max_Forwards.c */; }; - ECED699310F9A303006B4DC9 /* tsip_header_MIME_Version.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690E10F9A303006B4DC9 /* tsip_header_MIME_Version.c */; }; - ECED699410F9A303006B4DC9 /* tsip_header_Min_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED690F10F9A303006B4DC9 /* tsip_header_Min_Expires.c */; }; - ECED699510F9A303006B4DC9 /* tsip_header_Min_SE.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691010F9A303006B4DC9 /* tsip_header_Min_SE.c */; }; - ECED699610F9A303006B4DC9 /* tsip_header_Organization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691110F9A303006B4DC9 /* tsip_header_Organization.c */; }; - ECED699710F9A303006B4DC9 /* tsip_header_P_Access_Network_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691210F9A303006B4DC9 /* tsip_header_P_Access_Network_Info.c */; }; - ECED699810F9A303006B4DC9 /* tsip_header_P_Answer_State.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691310F9A303006B4DC9 /* tsip_header_P_Answer_State.c */; }; - ECED699910F9A303006B4DC9 /* tsip_header_P_Asserted_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691410F9A303006B4DC9 /* tsip_header_P_Asserted_Identity.c */; }; - ECED699A10F9A303006B4DC9 /* tsip_header_P_Associated_URI.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691510F9A303006B4DC9 /* tsip_header_P_Associated_URI.c */; }; - ECED699B10F9A303006B4DC9 /* tsip_header_P_Called_Party_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691610F9A303006B4DC9 /* tsip_header_P_Called_Party_ID.c */; }; - ECED699C10F9A303006B4DC9 /* tsip_header_P_Charging_Function_Addresses.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691710F9A303006B4DC9 /* tsip_header_P_Charging_Function_Addresses.c */; }; - ECED699D10F9A303006B4DC9 /* tsip_header_P_Charging_Vector.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691810F9A303006B4DC9 /* tsip_header_P_Charging_Vector.c */; }; - ECED699E10F9A303006B4DC9 /* tsip_header_P_DCS_Billing_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691910F9A303006B4DC9 /* tsip_header_P_DCS_Billing_Info.c */; }; - ECED699F10F9A303006B4DC9 /* tsip_header_P_DCS_LAES.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691A10F9A303006B4DC9 /* tsip_header_P_DCS_LAES.c */; }; - ECED69A010F9A303006B4DC9 /* tsip_header_P_DCS_OSPS.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691B10F9A303006B4DC9 /* tsip_header_P_DCS_OSPS.c */; }; - ECED69A110F9A303006B4DC9 /* tsip_header_P_DCS_Redirect.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691C10F9A303006B4DC9 /* tsip_header_P_DCS_Redirect.c */; }; - ECED69A210F9A303006B4DC9 /* tsip_header_P_DCS_Trace_Party_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691D10F9A303006B4DC9 /* tsip_header_P_DCS_Trace_Party_ID.c */; }; - ECED69A310F9A303006B4DC9 /* tsip_header_P_Early_Media.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691E10F9A303006B4DC9 /* tsip_header_P_Early_Media.c */; }; - ECED69A410F9A303006B4DC9 /* tsip_header_P_Media_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED691F10F9A303006B4DC9 /* tsip_header_P_Media_Authorization.c */; }; - ECED69A510F9A303006B4DC9 /* tsip_header_P_Preferred_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692010F9A303006B4DC9 /* tsip_header_P_Preferred_Identity.c */; }; - ECED69A610F9A303006B4DC9 /* tsip_header_P_Profile_Key.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692110F9A303006B4DC9 /* tsip_header_P_Profile_Key.c */; }; - ECED69A710F9A303006B4DC9 /* tsip_header_P_User_Database.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692210F9A303006B4DC9 /* tsip_header_P_User_Database.c */; }; - ECED69A810F9A303006B4DC9 /* tsip_header_P_Visited_Network_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692310F9A303006B4DC9 /* tsip_header_P_Visited_Network_ID.c */; }; - ECED69A910F9A303006B4DC9 /* tsip_header_Path.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692410F9A303006B4DC9 /* tsip_header_Path.c */; }; - ECED69AA10F9A303006B4DC9 /* tsip_header_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692510F9A303006B4DC9 /* tsip_header_Priority.c */; }; - ECED69AB10F9A303006B4DC9 /* tsip_header_Privacy.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692610F9A303006B4DC9 /* tsip_header_Privacy.c */; }; - ECED69AC10F9A303006B4DC9 /* tsip_header_Proxy_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692710F9A303006B4DC9 /* tsip_header_Proxy_Authenticate.c */; }; - ECED69AD10F9A303006B4DC9 /* tsip_header_Proxy_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692810F9A303006B4DC9 /* tsip_header_Proxy_Authorization.c */; }; - ECED69AE10F9A303006B4DC9 /* tsip_header_Proxy_Require.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692910F9A303006B4DC9 /* tsip_header_Proxy_Require.c */; }; - ECED69AF10F9A303006B4DC9 /* tsip_header_RAck.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692A10F9A303006B4DC9 /* tsip_header_RAck.c */; }; - ECED69B010F9A303006B4DC9 /* tsip_header_Reason.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692B10F9A303006B4DC9 /* tsip_header_Reason.c */; }; - ECED69B110F9A303006B4DC9 /* tsip_header_Record_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692C10F9A303006B4DC9 /* tsip_header_Record_Route.c */; }; - ECED69B210F9A303006B4DC9 /* tsip_header_Refer_Sub.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692D10F9A303006B4DC9 /* tsip_header_Refer_Sub.c */; }; - ECED69B310F9A303006B4DC9 /* tsip_header_Refer_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692E10F9A303006B4DC9 /* tsip_header_Refer_To.c */; }; - ECED69B410F9A303006B4DC9 /* tsip_header_Referred_By.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED692F10F9A303006B4DC9 /* tsip_header_Referred_By.c */; }; - ECED69B510F9A303006B4DC9 /* tsip_header_Reject_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693010F9A303006B4DC9 /* tsip_header_Reject_Contact.c */; }; - ECED69B610F9A303006B4DC9 /* tsip_header_Replaces.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693110F9A303006B4DC9 /* tsip_header_Replaces.c */; }; - ECED69B710F9A303006B4DC9 /* tsip_header_Reply_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693210F9A303006B4DC9 /* tsip_header_Reply_To.c */; }; - ECED69B810F9A303006B4DC9 /* tsip_header_Request_Disposition.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693310F9A303006B4DC9 /* tsip_header_Request_Disposition.c */; }; - ECED69B910F9A303006B4DC9 /* tsip_header_Require.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693410F9A303006B4DC9 /* tsip_header_Require.c */; }; - ECED69BA10F9A303006B4DC9 /* tsip_header_Resource_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693510F9A303006B4DC9 /* tsip_header_Resource_Priority.c */; }; - ECED69BB10F9A303006B4DC9 /* tsip_header_Retry_After.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693610F9A303006B4DC9 /* tsip_header_Retry_After.c */; }; - ECED69BC10F9A303006B4DC9 /* tsip_header_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693710F9A303006B4DC9 /* tsip_header_Route.c */; }; - ECED69BD10F9A303006B4DC9 /* tsip_header_RSeq.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693810F9A303006B4DC9 /* tsip_header_RSeq.c */; }; - ECED69BE10F9A303006B4DC9 /* tsip_header_Security_Client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693910F9A303006B4DC9 /* tsip_header_Security_Client.c */; }; - ECED69BF10F9A303006B4DC9 /* tsip_header_Security_Server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693A10F9A303006B4DC9 /* tsip_header_Security_Server.c */; }; - ECED69C010F9A303006B4DC9 /* tsip_header_Security_Verify.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693B10F9A303006B4DC9 /* tsip_header_Security_Verify.c */; }; - ECED69C110F9A303006B4DC9 /* tsip_header_Server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693C10F9A303006B4DC9 /* tsip_header_Server.c */; }; - ECED69C210F9A303006B4DC9 /* tsip_header_Service_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693D10F9A303006B4DC9 /* tsip_header_Service_Route.c */; }; - ECED69C310F9A303006B4DC9 /* tsip_header_Session_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693E10F9A303006B4DC9 /* tsip_header_Session_Expires.c */; }; - ECED69C410F9A303006B4DC9 /* tsip_header_SIP_ETag.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED693F10F9A303006B4DC9 /* tsip_header_SIP_ETag.c */; }; - ECED69C510F9A303006B4DC9 /* tsip_header_SIP_If_Match.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694010F9A303006B4DC9 /* tsip_header_SIP_If_Match.c */; }; - ECED69C610F9A303006B4DC9 /* tsip_header_Subject.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694110F9A303006B4DC9 /* tsip_header_Subject.c */; }; - ECED69C710F9A303006B4DC9 /* tsip_header_Subscription_State.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694210F9A303006B4DC9 /* tsip_header_Subscription_State.c */; }; - ECED69C810F9A303006B4DC9 /* tsip_header_Supported.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694310F9A303006B4DC9 /* tsip_header_Supported.c */; }; - ECED69C910F9A303006B4DC9 /* tsip_header_Target_Dialog.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694410F9A303006B4DC9 /* tsip_header_Target_Dialog.c */; }; - ECED69CA10F9A303006B4DC9 /* tsip_header_Timestamp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694510F9A303006B4DC9 /* tsip_header_Timestamp.c */; }; - ECED69CB10F9A303006B4DC9 /* tsip_header_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694610F9A303006B4DC9 /* tsip_header_To.c */; }; - ECED69CC10F9A303006B4DC9 /* tsip_header_Unsupported.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694710F9A303006B4DC9 /* tsip_header_Unsupported.c */; }; - ECED69CD10F9A303006B4DC9 /* tsip_header_User_Agent.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694810F9A303006B4DC9 /* tsip_header_User_Agent.c */; }; - ECED69CE10F9A303006B4DC9 /* tsip_header_Via.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694910F9A303006B4DC9 /* tsip_header_Via.c */; }; - ECED69CF10F9A303006B4DC9 /* tsip_header_Warning.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694A10F9A303006B4DC9 /* tsip_header_Warning.c */; }; - ECED69D010F9A303006B4DC9 /* tsip_header_WWW_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694B10F9A303006B4DC9 /* tsip_header_WWW_Authenticate.c */; }; - ECED69D110F9A303006B4DC9 /* tsip_parser_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694D10F9A303006B4DC9 /* tsip_parser_header.c */; }; - ECED69D210F9A303006B4DC9 /* tsip_parser_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694E10F9A303006B4DC9 /* tsip_parser_message.c */; }; - ECED69D310F9A303006B4DC9 /* tsip_parser_uri.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED694F10F9A303006B4DC9 /* tsip_parser_uri.c */; }; - ECED69D410F9A303006B4DC9 /* tsip_ragel_state.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED695010F9A303006B4DC9 /* tsip_ragel_state.c */; }; - ECED69DA10F9A303006B4DC9 /* tsip_dialog_message_sm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED695810F9A303006B4DC9 /* tsip_dialog_message_sm.c */; }; - ECED69DB10F9A303006B4DC9 /* tsip_dialog_register_sm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED695910F9A303006B4DC9 /* tsip_dialog_register_sm.c */; }; - ECED69DC10F9A303006B4DC9 /* tsip_transac_ict_sm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED695A10F9A303006B4DC9 /* tsip_transac_ict_sm.c */; }; - ECED69DD10F9A303006B4DC9 /* tsip_transac_ist_sm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED695B10F9A303006B4DC9 /* tsip_transac_ist_sm.c */; }; - ECED69DE10F9A303006B4DC9 /* tsip_transac_nict_sm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED695C10F9A303006B4DC9 /* tsip_transac_nict_sm.c */; }; - ECED69DF10F9A303006B4DC9 /* tsip_transac_nist_sm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED695D10F9A303006B4DC9 /* tsip_transac_nist_sm.c */; }; - ECED69E010F9A303006B4DC9 /* tsip_transac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED695F10F9A303006B4DC9 /* tsip_transac.c */; }; - ECED69E110F9A303006B4DC9 /* tsip_transac_ict.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED696010F9A303006B4DC9 /* tsip_transac_ict.c */; }; - ECED69E210F9A303006B4DC9 /* tsip_transac_ist.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED696110F9A303006B4DC9 /* tsip_transac_ist.c */; }; - ECED69E310F9A303006B4DC9 /* tsip_transac_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED696210F9A303006B4DC9 /* tsip_transac_layer.c */; }; - ECED69E410F9A303006B4DC9 /* tsip_transac_nict.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED696310F9A303006B4DC9 /* tsip_transac_nict.c */; }; - ECED69E510F9A303006B4DC9 /* tsip_transac_nist.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED696410F9A303006B4DC9 /* tsip_transac_nist.c */; }; - ECED69E610F9A303006B4DC9 /* tsip_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED696610F9A303006B4DC9 /* tsip_transport.c */; }; - ECED69E710F9A303006B4DC9 /* tsip_transport_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED696710F9A303006B4DC9 /* tsip_transport_layer.c */; }; - ECED6A6810F9A343006B4DC9 /* tsip_challenge.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69E910F9A343006B4DC9 /* tsip_challenge.h */; }; - ECED6A6910F9A343006B4DC9 /* tsip_milenage.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69EA10F9A343006B4DC9 /* tsip_milenage.h */; }; - ECED6A6A10F9A343006B4DC9 /* tsip_rijndael.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69EB10F9A343006B4DC9 /* tsip_rijndael.h */; }; - ECED6A6B10F9A343006B4DC9 /* tsip_dialog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69ED10F9A343006B4DC9 /* tsip_dialog.h */; }; - ECED6A6C10F9A343006B4DC9 /* tsip_dialog_invite.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69EE10F9A343006B4DC9 /* tsip_dialog_invite.h */; }; - ECED6A6D10F9A343006B4DC9 /* tsip_dialog_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69EF10F9A343006B4DC9 /* tsip_dialog_layer.h */; }; - ECED6A6E10F9A343006B4DC9 /* tsip_dialog_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69F010F9A343006B4DC9 /* tsip_dialog_message.h */; }; - ECED6A6F10F9A343006B4DC9 /* tsip_dialog_register.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69F110F9A343006B4DC9 /* tsip_dialog_register.h */; }; - ECED6A7010F9A343006B4DC9 /* tsip_dialog_subscribe.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69F210F9A343006B4DC9 /* tsip_dialog_subscribe.h */; }; - ECED6A7110F9A343006B4DC9 /* tsip_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69F410F9A343006B4DC9 /* tsip_header.h */; }; - ECED6A7210F9A343006B4DC9 /* tsip_header_accept.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69F510F9A343006B4DC9 /* tsip_header_accept.h */; }; - ECED6A7310F9A343006B4DC9 /* tsip_header_Accept_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69F610F9A343006B4DC9 /* tsip_header_Accept_Contact.h */; }; - ECED6A7410F9A343006B4DC9 /* tsip_header_Accept_Encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69F710F9A343006B4DC9 /* tsip_header_Accept_Encoding.h */; }; - ECED6A7510F9A343006B4DC9 /* tsip_header_Accept_Language.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69F810F9A343006B4DC9 /* tsip_header_Accept_Language.h */; }; - ECED6A7610F9A343006B4DC9 /* tsip_header_Accept_Resource_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69F910F9A343006B4DC9 /* tsip_header_Accept_Resource_Priority.h */; }; - ECED6A7710F9A343006B4DC9 /* tsip_header_Alert_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69FA10F9A343006B4DC9 /* tsip_header_Alert_Info.h */; }; - ECED6A7810F9A343006B4DC9 /* tsip_header_Allow.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69FB10F9A343006B4DC9 /* tsip_header_Allow.h */; }; - ECED6A7910F9A343006B4DC9 /* tsip_header_Allow_Events.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69FC10F9A343006B4DC9 /* tsip_header_Allow_Events.h */; }; - ECED6A7A10F9A343006B4DC9 /* tsip_header_Authentication_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69FD10F9A343006B4DC9 /* tsip_header_Authentication_Info.h */; }; - ECED6A7B10F9A343006B4DC9 /* tsip_header_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69FE10F9A343006B4DC9 /* tsip_header_Authorization.h */; }; - ECED6A7C10F9A343006B4DC9 /* tsip_header_Call_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED69FF10F9A343006B4DC9 /* tsip_header_Call_ID.h */; }; - ECED6A7D10F9A343006B4DC9 /* tsip_header_Call_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0010F9A343006B4DC9 /* tsip_header_Call_Info.h */; }; - ECED6A7E10F9A343006B4DC9 /* tsip_header_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0110F9A343006B4DC9 /* tsip_header_Contact.h */; }; - ECED6A7F10F9A343006B4DC9 /* tsip_header_Content_Disposition.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0210F9A343006B4DC9 /* tsip_header_Content_Disposition.h */; }; - ECED6A8010F9A343006B4DC9 /* tsip_header_Content_Encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0310F9A343006B4DC9 /* tsip_header_Content_Encoding.h */; }; - ECED6A8110F9A343006B4DC9 /* tsip_header_Content_Language.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0410F9A343006B4DC9 /* tsip_header_Content_Language.h */; }; - ECED6A8210F9A343006B4DC9 /* tsip_header_Content_Length.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0510F9A343006B4DC9 /* tsip_header_Content_Length.h */; }; - ECED6A8310F9A343006B4DC9 /* tsip_header_Content_Type.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0610F9A343006B4DC9 /* tsip_header_Content_Type.h */; }; - ECED6A8410F9A343006B4DC9 /* tsip_header_CSeq.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0710F9A343006B4DC9 /* tsip_header_CSeq.h */; }; - ECED6A8510F9A343006B4DC9 /* tsip_header_Date.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0810F9A343006B4DC9 /* tsip_header_Date.h */; }; - ECED6A8610F9A343006B4DC9 /* tsip_header_Error_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0910F9A343006B4DC9 /* tsip_header_Error_Info.h */; }; - ECED6A8710F9A343006B4DC9 /* tsip_header_Event.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0A10F9A343006B4DC9 /* tsip_header_Event.h */; }; - ECED6A8810F9A343006B4DC9 /* tsip_header_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0B10F9A343006B4DC9 /* tsip_header_Expires.h */; }; - ECED6A8910F9A343006B4DC9 /* tsip_header_From.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0C10F9A343006B4DC9 /* tsip_header_From.h */; }; - ECED6A8A10F9A343006B4DC9 /* tsip_header_History_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0D10F9A343006B4DC9 /* tsip_header_History_Info.h */; }; - ECED6A8B10F9A343006B4DC9 /* tsip_header_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0E10F9A343006B4DC9 /* tsip_header_Identity.h */; }; - ECED6A8C10F9A343006B4DC9 /* tsip_header_Identity_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A0F10F9A343006B4DC9 /* tsip_header_Identity_Info.h */; }; - ECED6A8D10F9A343006B4DC9 /* tsip_header_In_Reply_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1010F9A343006B4DC9 /* tsip_header_In_Reply_To.h */; }; - ECED6A8E10F9A343006B4DC9 /* tsip_header_Join.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1110F9A343006B4DC9 /* tsip_header_Join.h */; }; - ECED6A8F10F9A343006B4DC9 /* tsip_header_Max_Forwards.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1210F9A343006B4DC9 /* tsip_header_Max_Forwards.h */; }; - ECED6A9010F9A343006B4DC9 /* tsip_header_MIME_Version.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1310F9A343006B4DC9 /* tsip_header_MIME_Version.h */; }; - ECED6A9110F9A343006B4DC9 /* tsip_header_Min_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1410F9A343006B4DC9 /* tsip_header_Min_Expires.h */; }; - ECED6A9210F9A343006B4DC9 /* tsip_header_Min_SE.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1510F9A343006B4DC9 /* tsip_header_Min_SE.h */; }; - ECED6A9310F9A343006B4DC9 /* tsip_header_Organization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1610F9A343006B4DC9 /* tsip_header_Organization.h */; }; - ECED6A9410F9A343006B4DC9 /* tsip_header_P_Access_Network_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1710F9A343006B4DC9 /* tsip_header_P_Access_Network_Info.h */; }; - ECED6A9510F9A343006B4DC9 /* tsip_header_P_Answer_State.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1810F9A343006B4DC9 /* tsip_header_P_Answer_State.h */; }; - ECED6A9610F9A343006B4DC9 /* tsip_header_P_Asserted_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1910F9A343006B4DC9 /* tsip_header_P_Asserted_Identity.h */; }; - ECED6A9710F9A343006B4DC9 /* tsip_header_P_Associated_URI.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1A10F9A343006B4DC9 /* tsip_header_P_Associated_URI.h */; }; - ECED6A9810F9A343006B4DC9 /* tsip_header_P_Called_Party_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1B10F9A343006B4DC9 /* tsip_header_P_Called_Party_ID.h */; }; - ECED6A9910F9A343006B4DC9 /* tsip_header_P_Charging_Function_Addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1C10F9A343006B4DC9 /* tsip_header_P_Charging_Function_Addresses.h */; }; - ECED6A9A10F9A343006B4DC9 /* tsip_header_P_Charging_Vector.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1D10F9A343006B4DC9 /* tsip_header_P_Charging_Vector.h */; }; - ECED6A9B10F9A343006B4DC9 /* tsip_header_P_DCS_Billing_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1E10F9A343006B4DC9 /* tsip_header_P_DCS_Billing_Info.h */; }; - ECED6A9C10F9A343006B4DC9 /* tsip_header_P_DCS_LAES.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A1F10F9A343006B4DC9 /* tsip_header_P_DCS_LAES.h */; }; - ECED6A9D10F9A343006B4DC9 /* tsip_header_P_DCS_OSPS.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2010F9A343006B4DC9 /* tsip_header_P_DCS_OSPS.h */; }; - ECED6A9E10F9A343006B4DC9 /* tsip_header_P_DCS_Redirect.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2110F9A343006B4DC9 /* tsip_header_P_DCS_Redirect.h */; }; - ECED6A9F10F9A343006B4DC9 /* tsip_header_P_DCS_Trace_Party_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2210F9A343006B4DC9 /* tsip_header_P_DCS_Trace_Party_ID.h */; }; - ECED6AA010F9A343006B4DC9 /* tsip_header_P_Early_Media.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2310F9A343006B4DC9 /* tsip_header_P_Early_Media.h */; }; - ECED6AA110F9A343006B4DC9 /* tsip_header_P_Media_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2410F9A343006B4DC9 /* tsip_header_P_Media_Authorization.h */; }; - ECED6AA210F9A343006B4DC9 /* tsip_header_P_Preferred_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2510F9A343006B4DC9 /* tsip_header_P_Preferred_Identity.h */; }; - ECED6AA310F9A343006B4DC9 /* tsip_header_P_Profile_Key.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2610F9A343006B4DC9 /* tsip_header_P_Profile_Key.h */; }; - ECED6AA410F9A343006B4DC9 /* tsip_header_P_User_Database.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2710F9A343006B4DC9 /* tsip_header_P_User_Database.h */; }; - ECED6AA510F9A343006B4DC9 /* tsip_header_P_Visited_Network_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2810F9A343006B4DC9 /* tsip_header_P_Visited_Network_ID.h */; }; - ECED6AA610F9A343006B4DC9 /* tsip_header_Path.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2910F9A343006B4DC9 /* tsip_header_Path.h */; }; - ECED6AA710F9A343006B4DC9 /* tsip_header_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2A10F9A343006B4DC9 /* tsip_header_Priority.h */; }; - ECED6AA810F9A343006B4DC9 /* tsip_header_Privacy.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2B10F9A343006B4DC9 /* tsip_header_Privacy.h */; }; - ECED6AA910F9A343006B4DC9 /* tsip_header_Proxy_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2C10F9A343006B4DC9 /* tsip_header_Proxy_Authenticate.h */; }; - ECED6AAA10F9A343006B4DC9 /* tsip_header_Proxy_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2D10F9A343006B4DC9 /* tsip_header_Proxy_Authorization.h */; }; - ECED6AAB10F9A343006B4DC9 /* tsip_header_Proxy_Require.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2E10F9A343006B4DC9 /* tsip_header_Proxy_Require.h */; }; - ECED6AAC10F9A343006B4DC9 /* tsip_header_RAck.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A2F10F9A343006B4DC9 /* tsip_header_RAck.h */; }; - ECED6AAD10F9A343006B4DC9 /* tsip_header_Reason.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3010F9A343006B4DC9 /* tsip_header_Reason.h */; }; - ECED6AAE10F9A343006B4DC9 /* tsip_header_Record_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3110F9A343006B4DC9 /* tsip_header_Record_Route.h */; }; - ECED6AAF10F9A343006B4DC9 /* tsip_header_Refer_Sub.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3210F9A343006B4DC9 /* tsip_header_Refer_Sub.h */; }; - ECED6AB010F9A343006B4DC9 /* tsip_header_Refer_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3310F9A343006B4DC9 /* tsip_header_Refer_To.h */; }; - ECED6AB110F9A343006B4DC9 /* tsip_header_Referred_By.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3410F9A343006B4DC9 /* tsip_header_Referred_By.h */; }; - ECED6AB210F9A343006B4DC9 /* tsip_header_Reject_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3510F9A343006B4DC9 /* tsip_header_Reject_Contact.h */; }; - ECED6AB310F9A343006B4DC9 /* tsip_header_Replaces.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3610F9A343006B4DC9 /* tsip_header_Replaces.h */; }; - ECED6AB410F9A343006B4DC9 /* tsip_header_Reply_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3710F9A343006B4DC9 /* tsip_header_Reply_To.h */; }; - ECED6AB510F9A343006B4DC9 /* tsip_header_Request_Disposition.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3810F9A343006B4DC9 /* tsip_header_Request_Disposition.h */; }; - ECED6AB610F9A343006B4DC9 /* tsip_header_Require.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3910F9A343006B4DC9 /* tsip_header_Require.h */; }; - ECED6AB710F9A343006B4DC9 /* tsip_header_Resource_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3A10F9A343006B4DC9 /* tsip_header_Resource_Priority.h */; }; - ECED6AB810F9A343006B4DC9 /* tsip_header_Retry_After.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3B10F9A343006B4DC9 /* tsip_header_Retry_After.h */; }; - ECED6AB910F9A343006B4DC9 /* tsip_header_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3C10F9A343006B4DC9 /* tsip_header_Route.h */; }; - ECED6ABA10F9A343006B4DC9 /* tsip_header_RSeq.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3D10F9A343006B4DC9 /* tsip_header_RSeq.h */; }; - ECED6ABB10F9A343006B4DC9 /* tsip_header_Security_Client.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3E10F9A343006B4DC9 /* tsip_header_Security_Client.h */; }; - ECED6ABC10F9A343006B4DC9 /* tsip_header_Security_Server.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A3F10F9A343006B4DC9 /* tsip_header_Security_Server.h */; }; - ECED6ABD10F9A343006B4DC9 /* tsip_header_Security_Verify.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4010F9A343006B4DC9 /* tsip_header_Security_Verify.h */; }; - ECED6ABE10F9A343006B4DC9 /* tsip_header_Server.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4110F9A343006B4DC9 /* tsip_header_Server.h */; }; - ECED6ABF10F9A343006B4DC9 /* tsip_header_Service_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4210F9A343006B4DC9 /* tsip_header_Service_Route.h */; }; - ECED6AC010F9A343006B4DC9 /* tsip_header_Session_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4310F9A343006B4DC9 /* tsip_header_Session_Expires.h */; }; - ECED6AC110F9A343006B4DC9 /* tsip_header_SIP_ETag.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4410F9A343006B4DC9 /* tsip_header_SIP_ETag.h */; }; - ECED6AC210F9A343006B4DC9 /* tsip_header_SIP_If_Match.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4510F9A343006B4DC9 /* tsip_header_SIP_If_Match.h */; }; - ECED6AC310F9A343006B4DC9 /* tsip_header_Subject.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4610F9A343006B4DC9 /* tsip_header_Subject.h */; }; - ECED6AC410F9A343006B4DC9 /* tsip_header_Subscription_State.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4710F9A343006B4DC9 /* tsip_header_Subscription_State.h */; }; - ECED6AC510F9A343006B4DC9 /* tsip_header_Supported.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4810F9A343006B4DC9 /* tsip_header_Supported.h */; }; - ECED6AC610F9A343006B4DC9 /* tsip_header_Target_Dialog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4910F9A343006B4DC9 /* tsip_header_Target_Dialog.h */; }; - ECED6AC710F9A343006B4DC9 /* tsip_header_Timestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4A10F9A343006B4DC9 /* tsip_header_Timestamp.h */; }; - ECED6AC810F9A343006B4DC9 /* tsip_header_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4B10F9A343006B4DC9 /* tsip_header_To.h */; }; - ECED6AC910F9A343006B4DC9 /* tsip_header_Unsupported.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4C10F9A343006B4DC9 /* tsip_header_Unsupported.h */; }; - ECED6ACA10F9A343006B4DC9 /* tsip_header_User_Agent.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4D10F9A343006B4DC9 /* tsip_header_User_Agent.h */; }; - ECED6ACB10F9A343006B4DC9 /* tsip_header_Via.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4E10F9A343006B4DC9 /* tsip_header_Via.h */; }; - ECED6ACC10F9A343006B4DC9 /* tsip_header_Warning.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A4F10F9A343006B4DC9 /* tsip_header_Warning.h */; }; - ECED6ACD10F9A343006B4DC9 /* tsip_header_WWW_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5010F9A343006B4DC9 /* tsip_header_WWW_Authenticate.h */; }; - ECED6ACE10F9A343006B4DC9 /* tsip_headers.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5110F9A343006B4DC9 /* tsip_headers.h */; }; - ECED6ACF10F9A343006B4DC9 /* tsip_parser_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5310F9A343006B4DC9 /* tsip_parser_header.h */; }; - ECED6AD010F9A343006B4DC9 /* tsip_parser_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5410F9A343006B4DC9 /* tsip_parser_message.h */; }; - ECED6AD110F9A343006B4DC9 /* tsip_parser_uri.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5510F9A343006B4DC9 /* tsip_parser_uri.h */; }; - ECED6AD210F9A343006B4DC9 /* tsip_ragel_state.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5610F9A343006B4DC9 /* tsip_ragel_state.h */; }; - ECED6AD310F9A343006B4DC9 /* tsip_dialog_message_sm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5810F9A343006B4DC9 /* tsip_dialog_message_sm.h */; }; - ECED6AD410F9A343006B4DC9 /* tsip_dialog_register_sm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5910F9A343006B4DC9 /* tsip_dialog_register_sm.h */; }; - ECED6AD510F9A343006B4DC9 /* tsip_transac_ict_sm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5A10F9A343006B4DC9 /* tsip_transac_ict_sm.h */; }; - ECED6AD610F9A343006B4DC9 /* tsip_transac_ist_sm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5B10F9A343006B4DC9 /* tsip_transac_ist_sm.h */; }; - ECED6AD710F9A343006B4DC9 /* tsip_transac_nict_sm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5C10F9A343006B4DC9 /* tsip_transac_nict_sm.h */; }; - ECED6AD810F9A343006B4DC9 /* tsip_transac_nist_sm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5D10F9A343006B4DC9 /* tsip_transac_nist_sm.h */; }; - ECED6AD910F9A343006B4DC9 /* tsip_transac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A5F10F9A343006B4DC9 /* tsip_transac.h */; }; - ECED6ADA10F9A343006B4DC9 /* tsip_transac_ict.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A6010F9A343006B4DC9 /* tsip_transac_ict.h */; }; - ECED6ADB10F9A343006B4DC9 /* tsip_transac_ist.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A6110F9A343006B4DC9 /* tsip_transac_ist.h */; }; - ECED6ADC10F9A343006B4DC9 /* tsip_transac_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A6210F9A343006B4DC9 /* tsip_transac_layer.h */; }; - ECED6ADD10F9A343006B4DC9 /* tsip_transac_nict.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A6310F9A343006B4DC9 /* tsip_transac_nict.h */; }; - ECED6ADE10F9A343006B4DC9 /* tsip_transac_nist.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A6410F9A343006B4DC9 /* tsip_transac_nist.h */; }; - ECED6ADF10F9A343006B4DC9 /* tsip_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A6610F9A343006B4DC9 /* tsip_transport.h */; }; - ECED6AE010F9A343006B4DC9 /* tsip_transport_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED6A6710F9A343006B4DC9 /* tsip_transport_layer.h */; }; - ECED6AEE10F9A66E006B4DC9 /* thttp_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED6AEB10F9A66E006B4DC9 /* thttp_auth.c */; }; ECED6AF210F9A68F006B4DC9 /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED65E610F9968A006B4DC9 /* libtinySAK.dylib */; }; ECED6B0A10F9A94A006B4DC9 /* libtinyHTTP.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED689D10F998E4006B4DC9 /* libtinyHTTP.dylib */; }; ECED6B0B10F9A94A006B4DC9 /* libtinyNET.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED686410F997F2006B4DC9 /* libtinyNET.dylib */; }; @@ -350,6 +71,385 @@ ECED6B0D10F9A94A006B4DC9 /* libtinySIP.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D2AAC0630554660B00DB518D /* libtinySIP.dylib */; }; ECED6B1810F9A971006B4DC9 /* stdafx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED6B1010F9A971006B4DC9 /* stdafx.c */; }; ECED6B1910F9A971006B4DC9 /* test.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED6B1310F9A971006B4DC9 /* test.c */; }; + ECF4698F11346C6B00390CBE /* tnet_dhcp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4692811346C6A00390CBE /* tnet_dhcp.c */; }; + ECF4699011346C6B00390CBE /* tnet_dhcp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4692911346C6A00390CBE /* tnet_dhcp.h */; }; + ECF4699111346C6B00390CBE /* tnet_dhcp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4692A11346C6A00390CBE /* tnet_dhcp_message.c */; }; + ECF4699211346C6B00390CBE /* tnet_dhcp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4692B11346C6A00390CBE /* tnet_dhcp_message.h */; }; + ECF4699311346C6B00390CBE /* tnet_dhcp_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4692C11346C6A00390CBE /* tnet_dhcp_option.c */; }; + ECF4699411346C6B00390CBE /* tnet_dhcp_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4692D11346C6A00390CBE /* tnet_dhcp_option.h */; }; + ECF4699511346C6B00390CBE /* tnet_dhcp_option_sip.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4692E11346C6A00390CBE /* tnet_dhcp_option_sip.c */; }; + ECF4699611346C6B00390CBE /* tnet_dhcp_option_sip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4692F11346C6A00390CBE /* tnet_dhcp_option_sip.h */; }; + ECF4699711346C6B00390CBE /* tnet_dhcp6.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4693111346C6A00390CBE /* tnet_dhcp6.c */; }; + ECF4699811346C6B00390CBE /* tnet_dhcp6.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4693211346C6A00390CBE /* tnet_dhcp6.h */; }; + ECF4699911346C6B00390CBE /* tnet_dhcp6_duid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4693311346C6A00390CBE /* tnet_dhcp6_duid.c */; }; + ECF4699A11346C6B00390CBE /* tnet_dhcp6_duid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4693411346C6A00390CBE /* tnet_dhcp6_duid.h */; }; + ECF4699B11346C6B00390CBE /* tnet_dhcp6_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4693511346C6A00390CBE /* tnet_dhcp6_message.c */; }; + ECF4699C11346C6B00390CBE /* tnet_dhcp6_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4693611346C6A00390CBE /* tnet_dhcp6_message.h */; }; + ECF4699D11346C6B00390CBE /* tnet_dhcp6_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4693711346C6A00390CBE /* tnet_dhcp6_option.c */; }; + ECF4699E11346C6B00390CBE /* tnet_dhcp6_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4693811346C6A00390CBE /* tnet_dhcp6_option.h */; }; + ECF4699F11346C6B00390CBE /* tnet_dns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4693A11346C6A00390CBE /* tnet_dns.c */; }; + ECF469A011346C6B00390CBE /* tnet_dns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4693B11346C6A00390CBE /* tnet_dns.h */; }; + ECF469A111346C6B00390CBE /* tnet_dns_a.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4693C11346C6A00390CBE /* tnet_dns_a.c */; }; + ECF469A211346C6B00390CBE /* tnet_dns_a.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4693D11346C6A00390CBE /* tnet_dns_a.h */; }; + ECF469A311346C6B00390CBE /* tnet_dns_aaaa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4693E11346C6A00390CBE /* tnet_dns_aaaa.c */; }; + ECF469A411346C6B00390CBE /* tnet_dns_aaaa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4693F11346C6A00390CBE /* tnet_dns_aaaa.h */; }; + ECF469A511346C6B00390CBE /* tnet_dns_cname.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4694011346C6A00390CBE /* tnet_dns_cname.c */; }; + ECF469A611346C6B00390CBE /* tnet_dns_cname.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4694111346C6A00390CBE /* tnet_dns_cname.h */; }; + ECF469A711346C6B00390CBE /* tnet_dns_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4694211346C6A00390CBE /* tnet_dns_message.c */; }; + ECF469A811346C6B00390CBE /* tnet_dns_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4694311346C6A00390CBE /* tnet_dns_message.h */; }; + ECF469A911346C6B00390CBE /* tnet_dns_mx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4694411346C6A00390CBE /* tnet_dns_mx.c */; }; + ECF469AA11346C6B00390CBE /* tnet_dns_mx.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4694511346C6A00390CBE /* tnet_dns_mx.h */; }; + ECF469AB11346C6B00390CBE /* tnet_dns_naptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4694611346C6A00390CBE /* tnet_dns_naptr.c */; }; + ECF469AC11346C6B00390CBE /* tnet_dns_naptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4694711346C6A00390CBE /* tnet_dns_naptr.h */; }; + ECF469AD11346C6B00390CBE /* tnet_dns_ns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4694811346C6A00390CBE /* tnet_dns_ns.c */; }; + ECF469AE11346C6B00390CBE /* tnet_dns_ns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4694911346C6A00390CBE /* tnet_dns_ns.h */; }; + ECF469AF11346C6B00390CBE /* tnet_dns_opt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4694A11346C6A00390CBE /* tnet_dns_opt.c */; }; + ECF469B011346C6B00390CBE /* tnet_dns_opt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4694B11346C6A00390CBE /* tnet_dns_opt.h */; }; + ECF469B111346C6B00390CBE /* tnet_dns_ptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4694C11346C6A00390CBE /* tnet_dns_ptr.c */; }; + ECF469B211346C6B00390CBE /* tnet_dns_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4694D11346C6A00390CBE /* tnet_dns_ptr.h */; }; + ECF469B311346C6B00390CBE /* tnet_dns_rr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4694E11346C6A00390CBE /* tnet_dns_rr.c */; }; + ECF469B411346C6B00390CBE /* tnet_dns_rr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4694F11346C6A00390CBE /* tnet_dns_rr.h */; }; + ECF469B511346C6B00390CBE /* tnet_dns_soa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4695011346C6A00390CBE /* tnet_dns_soa.c */; }; + ECF469B611346C6B00390CBE /* tnet_dns_soa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4695111346C6A00390CBE /* tnet_dns_soa.h */; }; + ECF469B711346C6B00390CBE /* tnet_dns_srv.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4695211346C6A00390CBE /* tnet_dns_srv.c */; }; + ECF469B811346C6B00390CBE /* tnet_dns_srv.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4695311346C6A00390CBE /* tnet_dns_srv.h */; }; + ECF469B911346C6B00390CBE /* tnet_dns_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4695411346C6A00390CBE /* tnet_dns_txt.c */; }; + ECF469BA11346C6B00390CBE /* tnet_dns_txt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4695511346C6A00390CBE /* tnet_dns_txt.h */; }; + ECF469BB11346C6B00390CBE /* tnet_ice.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4695711346C6A00390CBE /* tnet_ice.c */; }; + ECF469BC11346C6B00390CBE /* tnet_ice.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4695811346C6A00390CBE /* tnet_ice.h */; }; + ECF469BE11346C6B00390CBE /* tnet_stun.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4695C11346C6A00390CBE /* tnet_stun.c */; }; + ECF469BF11346C6B00390CBE /* tnet_stun.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4695D11346C6A00390CBE /* tnet_stun.h */; }; + ECF469C011346C6B00390CBE /* tnet_stun_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4695E11346C6A00390CBE /* tnet_stun_attribute.c */; }; + ECF469C111346C6B00390CBE /* tnet_stun_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4695F11346C6A00390CBE /* tnet_stun_attribute.h */; }; + ECF469C211346C6B00390CBE /* tnet_stun_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4696011346C6A00390CBE /* tnet_stun_message.c */; }; + ECF469C311346C6B00390CBE /* tnet_stun_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4696111346C6A00390CBE /* tnet_stun_message.h */; }; + ECF469C411346C6B00390CBE /* tinyNET_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4696211346C6A00390CBE /* tinyNET_config.h */; }; + ECF469C511346C6B00390CBE /* tnet.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4696311346C6A00390CBE /* tnet.c */; }; + ECF469C611346C6B00390CBE /* tnet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4696411346C6A00390CBE /* tnet.h */; }; + ECF469C711346C6B00390CBE /* tnet_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4696511346C6A00390CBE /* tnet_auth.c */; }; + ECF469C811346C6B00390CBE /* tnet_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4696611346C6A00390CBE /* tnet_auth.h */; }; + ECF469C911346C6B00390CBE /* tnet_hardwares.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4696711346C6A00390CBE /* tnet_hardwares.h */; }; + ECF469CA11346C6B00390CBE /* tnet_nat.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4696811346C6A00390CBE /* tnet_nat.c */; }; + ECF469CB11346C6B00390CBE /* tnet_nat.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4696911346C6A00390CBE /* tnet_nat.h */; }; + ECF469CC11346C6B00390CBE /* tnet_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4696A11346C6A00390CBE /* tnet_poll.c */; }; + ECF469CD11346C6B00390CBE /* tnet_poll.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4696B11346C6A00390CBE /* tnet_poll.h */; }; + ECF469CE11346C6B00390CBE /* tnet_proto.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4696C11346C6A00390CBE /* tnet_proto.h */; }; + ECF469CF11346C6B00390CBE /* tnet_socket.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4696D11346C6A00390CBE /* tnet_socket.c */; }; + ECF469D011346C6B00390CBE /* tnet_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4696E11346C6A00390CBE /* tnet_socket.h */; }; + ECF469D111346C6B00390CBE /* tnet_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4696F11346C6A00390CBE /* tnet_transport.c */; }; + ECF469D211346C6B00390CBE /* tnet_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4697011346C6A00390CBE /* tnet_transport.h */; }; + ECF469D311346C6B00390CBE /* tnet_transport_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4697111346C6A00390CBE /* tnet_transport_poll.c */; }; + ECF469D411346C6B00390CBE /* tnet_transport_win32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4697211346C6A00390CBE /* tnet_transport_win32.c */; }; + ECF469D511346C6B00390CBE /* tnet_types.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4697311346C6A00390CBE /* tnet_types.h */; }; + ECF469D611346C6B00390CBE /* tnet_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4697411346C6A00390CBE /* tnet_utils.c */; }; + ECF469D711346C6B00390CBE /* tnet_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4697511346C6A00390CBE /* tnet_utils.h */; }; + ECF469D811346C6B00390CBE /* tnet_turn.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4697711346C6A00390CBE /* tnet_turn.c */; }; + ECF469D911346C6B00390CBE /* tnet_turn.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4697811346C6A00390CBE /* tnet_turn.h */; }; + ECF469DA11346C6B00390CBE /* tnet_turn_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4697911346C6A00390CBE /* tnet_turn_attribute.c */; }; + ECF469DB11346C6B00390CBE /* tnet_turn_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4697A11346C6A00390CBE /* tnet_turn_attribute.h */; }; + ECF469DC11346C6B00390CBE /* tnet_turn_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4697B11346C6A00390CBE /* tnet_turn_message.c */; }; + ECF469DD11346C6B00390CBE /* tnet_turn_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4697C11346C6A00390CBE /* tnet_turn_message.h */; }; + ECF46A251134737200390CBE /* tsk_fsm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A1D1134737200390CBE /* tsk_fsm.c */; }; + ECF46A261134737200390CBE /* tsk_fsm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A1E1134737200390CBE /* tsk_fsm.h */; }; + ECF46A271134737200390CBE /* tsk_ppfcs32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A1F1134737200390CBE /* tsk_ppfcs32.c */; }; + ECF46A281134737200390CBE /* tsk_ppfcs32.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A201134737200390CBE /* tsk_ppfcs32.h */; }; + ECF46A291134737200390CBE /* tsk_ragel_state.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A211134737200390CBE /* tsk_ragel_state.c */; }; + ECF46A2A1134737200390CBE /* tsk_ragel_state.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A221134737200390CBE /* tsk_ragel_state.h */; }; + ECF46A2B1134737200390CBE /* tsk_uuid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A231134737200390CBE /* tsk_uuid.c */; }; + ECF46A2C1134737200390CBE /* tsk_uuid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A241134737200390CBE /* tsk_uuid.h */; }; + ECF46A70113473CC00390CBE /* thttp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A36113473CC00390CBE /* thttp.h */; }; + ECF46A71113473CC00390CBE /* thttp_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A39113473CC00390CBE /* thttp_auth.h */; }; + ECF46A72113473CC00390CBE /* thttp_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A3B113473CC00390CBE /* thttp_header.h */; }; + ECF46A73113473CC00390CBE /* thttp_header_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A3C113473CC00390CBE /* thttp_header_Authorization.h */; }; + ECF46A74113473CC00390CBE /* thttp_header_Content_Length.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A3D113473CC00390CBE /* thttp_header_Content_Length.h */; }; + ECF46A75113473CC00390CBE /* thttp_header_Content_Type.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A3E113473CC00390CBE /* thttp_header_Content_Type.h */; }; + ECF46A76113473CC00390CBE /* thttp_header_Proxy_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A3F113473CC00390CBE /* thttp_header_Proxy_Authenticate.h */; }; + ECF46A77113473CC00390CBE /* thttp_header_WWW_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A40113473CC00390CBE /* thttp_header_WWW_Authenticate.h */; }; + ECF46A78113473CC00390CBE /* thttp_parser_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A42113473CC00390CBE /* thttp_parser_header.h */; }; + ECF46A79113473CC00390CBE /* thttp_parser_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A43113473CC00390CBE /* thttp_parser_message.h */; }; + ECF46A7A113473CC00390CBE /* thttp_parser_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A44113473CC00390CBE /* thttp_parser_url.h */; }; + ECF46A7B113473CC00390CBE /* thttp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A45113473CC00390CBE /* thttp_message.h */; }; + ECF46A7C113473CC00390CBE /* thttp_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A46113473CC00390CBE /* thttp_url.h */; }; + ECF46A7D113473CC00390CBE /* tinyhttp_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46A47113473CC00390CBE /* tinyhttp_config.h */; }; + ECF46A7E113473CC00390CBE /* thttp_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A56113473CC00390CBE /* thttp_auth.c */; }; + ECF46A7F113473CC00390CBE /* thttp_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A58113473CC00390CBE /* thttp_header.c */; }; + ECF46A80113473CC00390CBE /* thttp_header_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A59113473CC00390CBE /* thttp_header_Authorization.c */; }; + ECF46A81113473CC00390CBE /* thttp_header_Content_Length.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A5A113473CC00390CBE /* thttp_header_Content_Length.c */; }; + ECF46A82113473CC00390CBE /* thttp_header_Content_Type.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A5B113473CC00390CBE /* thttp_header_Content_Type.c */; }; + ECF46A83113473CC00390CBE /* thttp_header_Proxy_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A5C113473CC00390CBE /* thttp_header_Proxy_Authenticate.c */; }; + ECF46A84113473CC00390CBE /* thttp_header_WWW_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A5D113473CC00390CBE /* thttp_header_WWW_Authenticate.c */; }; + ECF46A86113473CC00390CBE /* thttp_parser_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A60113473CC00390CBE /* thttp_parser_header.c */; }; + ECF46A87113473CC00390CBE /* thttp_parser_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A61113473CC00390CBE /* thttp_parser_message.c */; }; + ECF46A88113473CC00390CBE /* thttp_parser_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A62113473CC00390CBE /* thttp_parser_url.c */; }; + ECF46A89113473CC00390CBE /* thttp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A63113473CC00390CBE /* thttp.c */; }; + ECF46A8A113473CC00390CBE /* thttp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A64113473CC00390CBE /* thttp_message.c */; }; + ECF46A8B113473CC00390CBE /* thttp_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46A65113473CC00390CBE /* thttp_url.c */; }; + ECF46C2B1134755E00390CBE /* tsip_api_invite.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AA91134755E00390CBE /* tsip_api_invite.h */; }; + ECF46C2C1134755E00390CBE /* tsip_api_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AAA1134755E00390CBE /* tsip_api_message.h */; }; + ECF46C2D1134755E00390CBE /* tsip_api_publish.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AAB1134755E00390CBE /* tsip_api_publish.h */; }; + ECF46C2E1134755E00390CBE /* tsip_api_register.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AAC1134755E00390CBE /* tsip_api_register.h */; }; + ECF46C2F1134755E00390CBE /* tsip_api_subscribe.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AAD1134755E00390CBE /* tsip_api_subscribe.h */; }; + ECF46C301134755E00390CBE /* tsip_challenge.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AAF1134755E00390CBE /* tsip_challenge.h */; }; + ECF46C311134755E00390CBE /* tsip_milenage.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AB01134755E00390CBE /* tsip_milenage.h */; }; + ECF46C321134755E00390CBE /* tsip_rijndael.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AB11134755E00390CBE /* tsip_rijndael.h */; }; + ECF46C331134755E00390CBE /* tsip_dialog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AB31134755E00390CBE /* tsip_dialog.h */; }; + ECF46C341134755E00390CBE /* tsip_dialog_invite.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AB41134755E00390CBE /* tsip_dialog_invite.h */; }; + ECF46C351134755E00390CBE /* tsip_dialog_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AB51134755E00390CBE /* tsip_dialog_layer.h */; }; + ECF46C361134755E00390CBE /* tsip_dialog_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AB61134755E00390CBE /* tsip_dialog_message.h */; }; + ECF46C371134755E00390CBE /* tsip_dialog_register.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AB71134755E00390CBE /* tsip_dialog_register.h */; }; + ECF46C381134755E00390CBE /* tsip_dialog_subscribe.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AB81134755E00390CBE /* tsip_dialog_subscribe.h */; }; + ECF46C391134755E00390CBE /* tsip_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ABA1134755E00390CBE /* tsip_header.h */; }; + ECF46C3A1134755E00390CBE /* tsip_header_accept.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ABB1134755E00390CBE /* tsip_header_accept.h */; }; + ECF46C3B1134755E00390CBE /* tsip_header_Accept_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ABC1134755E00390CBE /* tsip_header_Accept_Contact.h */; }; + ECF46C3C1134755E00390CBE /* tsip_header_Accept_Encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ABD1134755E00390CBE /* tsip_header_Accept_Encoding.h */; }; + ECF46C3D1134755E00390CBE /* tsip_header_Accept_Language.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ABE1134755E00390CBE /* tsip_header_Accept_Language.h */; }; + ECF46C3E1134755E00390CBE /* tsip_header_Accept_Resource_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ABF1134755E00390CBE /* tsip_header_Accept_Resource_Priority.h */; }; + ECF46C3F1134755E00390CBE /* tsip_header_Alert_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AC01134755E00390CBE /* tsip_header_Alert_Info.h */; }; + ECF46C401134755E00390CBE /* tsip_header_Allow.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AC11134755E00390CBE /* tsip_header_Allow.h */; }; + ECF46C411134755E00390CBE /* tsip_header_Allow_Events.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AC21134755E00390CBE /* tsip_header_Allow_Events.h */; }; + ECF46C421134755E00390CBE /* tsip_header_Authentication_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AC31134755E00390CBE /* tsip_header_Authentication_Info.h */; }; + ECF46C431134755E00390CBE /* tsip_header_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AC41134755E00390CBE /* tsip_header_Authorization.h */; }; + ECF46C441134755E00390CBE /* tsip_header_Call_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AC51134755E00390CBE /* tsip_header_Call_ID.h */; }; + ECF46C451134755E00390CBE /* tsip_header_Call_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AC61134755E00390CBE /* tsip_header_Call_Info.h */; }; + ECF46C461134755E00390CBE /* tsip_header_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AC71134755E00390CBE /* tsip_header_Contact.h */; }; + ECF46C471134755E00390CBE /* tsip_header_Content_Disposition.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AC81134755E00390CBE /* tsip_header_Content_Disposition.h */; }; + ECF46C481134755E00390CBE /* tsip_header_Content_Encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AC91134755E00390CBE /* tsip_header_Content_Encoding.h */; }; + ECF46C491134755E00390CBE /* tsip_header_Content_Language.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ACA1134755E00390CBE /* tsip_header_Content_Language.h */; }; + ECF46C4A1134755E00390CBE /* tsip_header_Content_Length.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ACB1134755E00390CBE /* tsip_header_Content_Length.h */; }; + ECF46C4B1134755E00390CBE /* tsip_header_Content_Type.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ACC1134755E00390CBE /* tsip_header_Content_Type.h */; }; + ECF46C4C1134755E00390CBE /* tsip_header_CSeq.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ACD1134755E00390CBE /* tsip_header_CSeq.h */; }; + ECF46C4D1134755E00390CBE /* tsip_header_Date.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ACE1134755E00390CBE /* tsip_header_Date.h */; }; + ECF46C4E1134755E00390CBE /* tsip_header_Error_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ACF1134755E00390CBE /* tsip_header_Error_Info.h */; }; + ECF46C4F1134755E00390CBE /* tsip_header_Event.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AD01134755E00390CBE /* tsip_header_Event.h */; }; + ECF46C501134755E00390CBE /* tsip_header_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AD11134755E00390CBE /* tsip_header_Expires.h */; }; + ECF46C511134755E00390CBE /* tsip_header_From.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AD21134755E00390CBE /* tsip_header_From.h */; }; + ECF46C521134755E00390CBE /* tsip_header_History_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AD31134755E00390CBE /* tsip_header_History_Info.h */; }; + ECF46C531134755E00390CBE /* tsip_header_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AD41134755E00390CBE /* tsip_header_Identity.h */; }; + ECF46C541134755E00390CBE /* tsip_header_Identity_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AD51134755E00390CBE /* tsip_header_Identity_Info.h */; }; + ECF46C551134755E00390CBE /* tsip_header_In_Reply_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AD61134755E00390CBE /* tsip_header_In_Reply_To.h */; }; + ECF46C561134755E00390CBE /* tsip_header_Join.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AD71134755E00390CBE /* tsip_header_Join.h */; }; + ECF46C571134755E00390CBE /* tsip_header_Max_Forwards.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AD81134755E00390CBE /* tsip_header_Max_Forwards.h */; }; + ECF46C581134755E00390CBE /* tsip_header_MIME_Version.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AD91134755E00390CBE /* tsip_header_MIME_Version.h */; }; + ECF46C591134755E00390CBE /* tsip_header_Min_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ADA1134755E00390CBE /* tsip_header_Min_Expires.h */; }; + ECF46C5A1134755E00390CBE /* tsip_header_Min_SE.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ADB1134755E00390CBE /* tsip_header_Min_SE.h */; }; + ECF46C5B1134755E00390CBE /* tsip_header_Organization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ADC1134755E00390CBE /* tsip_header_Organization.h */; }; + ECF46C5C1134755E00390CBE /* tsip_header_P_Access_Network_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ADD1134755E00390CBE /* tsip_header_P_Access_Network_Info.h */; }; + ECF46C5D1134755E00390CBE /* tsip_header_P_Answer_State.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ADE1134755E00390CBE /* tsip_header_P_Answer_State.h */; }; + ECF46C5E1134755E00390CBE /* tsip_header_P_Asserted_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46ADF1134755E00390CBE /* tsip_header_P_Asserted_Identity.h */; }; + ECF46C5F1134755E00390CBE /* tsip_header_P_Associated_URI.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AE01134755E00390CBE /* tsip_header_P_Associated_URI.h */; }; + ECF46C601134755E00390CBE /* tsip_header_P_Called_Party_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AE11134755E00390CBE /* tsip_header_P_Called_Party_ID.h */; }; + ECF46C611134755E00390CBE /* tsip_header_P_Charging_Function_Addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AE21134755E00390CBE /* tsip_header_P_Charging_Function_Addresses.h */; }; + ECF46C621134755E00390CBE /* tsip_header_P_Charging_Vector.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AE31134755E00390CBE /* tsip_header_P_Charging_Vector.h */; }; + ECF46C631134755E00390CBE /* tsip_header_P_DCS_Billing_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AE41134755E00390CBE /* tsip_header_P_DCS_Billing_Info.h */; }; + ECF46C641134755E00390CBE /* tsip_header_P_DCS_LAES.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AE51134755E00390CBE /* tsip_header_P_DCS_LAES.h */; }; + ECF46C651134755E00390CBE /* tsip_header_P_DCS_OSPS.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AE61134755E00390CBE /* tsip_header_P_DCS_OSPS.h */; }; + ECF46C661134755E00390CBE /* tsip_header_P_DCS_Redirect.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AE71134755E00390CBE /* tsip_header_P_DCS_Redirect.h */; }; + ECF46C671134755E00390CBE /* tsip_header_P_DCS_Trace_Party_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AE81134755E00390CBE /* tsip_header_P_DCS_Trace_Party_ID.h */; }; + ECF46C681134755E00390CBE /* tsip_header_P_Early_Media.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AE91134755E00390CBE /* tsip_header_P_Early_Media.h */; }; + ECF46C691134755E00390CBE /* tsip_header_P_Media_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AEA1134755E00390CBE /* tsip_header_P_Media_Authorization.h */; }; + ECF46C6A1134755E00390CBE /* tsip_header_P_Preferred_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AEB1134755E00390CBE /* tsip_header_P_Preferred_Identity.h */; }; + ECF46C6B1134755E00390CBE /* tsip_header_P_Profile_Key.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AEC1134755E00390CBE /* tsip_header_P_Profile_Key.h */; }; + ECF46C6C1134755E00390CBE /* tsip_header_P_User_Database.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AED1134755E00390CBE /* tsip_header_P_User_Database.h */; }; + ECF46C6D1134755E00390CBE /* tsip_header_P_Visited_Network_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AEE1134755E00390CBE /* tsip_header_P_Visited_Network_ID.h */; }; + ECF46C6E1134755E00390CBE /* tsip_header_Path.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AEF1134755E00390CBE /* tsip_header_Path.h */; }; + ECF46C6F1134755E00390CBE /* tsip_header_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AF01134755E00390CBE /* tsip_header_Priority.h */; }; + ECF46C701134755E00390CBE /* tsip_header_Privacy.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AF11134755E00390CBE /* tsip_header_Privacy.h */; }; + ECF46C711134755E00390CBE /* tsip_header_Proxy_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AF21134755E00390CBE /* tsip_header_Proxy_Authenticate.h */; }; + ECF46C721134755E00390CBE /* tsip_header_Proxy_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AF31134755E00390CBE /* tsip_header_Proxy_Authorization.h */; }; + ECF46C731134755E00390CBE /* tsip_header_Proxy_Require.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AF41134755E00390CBE /* tsip_header_Proxy_Require.h */; }; + ECF46C741134755E00390CBE /* tsip_header_RAck.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AF51134755E00390CBE /* tsip_header_RAck.h */; }; + ECF46C751134755E00390CBE /* tsip_header_Reason.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AF61134755E00390CBE /* tsip_header_Reason.h */; }; + ECF46C761134755E00390CBE /* tsip_header_Record_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AF71134755E00390CBE /* tsip_header_Record_Route.h */; }; + ECF46C771134755E00390CBE /* tsip_header_Refer_Sub.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AF81134755E00390CBE /* tsip_header_Refer_Sub.h */; }; + ECF46C781134755E00390CBE /* tsip_header_Refer_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AF91134755E00390CBE /* tsip_header_Refer_To.h */; }; + ECF46C791134755E00390CBE /* tsip_header_Referred_By.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AFA1134755E00390CBE /* tsip_header_Referred_By.h */; }; + ECF46C7A1134755E00390CBE /* tsip_header_Reject_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AFB1134755E00390CBE /* tsip_header_Reject_Contact.h */; }; + ECF46C7B1134755E00390CBE /* tsip_header_Replaces.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AFC1134755E00390CBE /* tsip_header_Replaces.h */; }; + ECF46C7C1134755E00390CBE /* tsip_header_Reply_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AFD1134755E00390CBE /* tsip_header_Reply_To.h */; }; + ECF46C7D1134755E00390CBE /* tsip_header_Request_Disposition.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AFE1134755E00390CBE /* tsip_header_Request_Disposition.h */; }; + ECF46C7E1134755E00390CBE /* tsip_header_Require.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46AFF1134755E00390CBE /* tsip_header_Require.h */; }; + ECF46C7F1134755E00390CBE /* tsip_header_Resource_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B001134755E00390CBE /* tsip_header_Resource_Priority.h */; }; + ECF46C801134755E00390CBE /* tsip_header_Retry_After.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B011134755E00390CBE /* tsip_header_Retry_After.h */; }; + ECF46C811134755E00390CBE /* tsip_header_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B021134755E00390CBE /* tsip_header_Route.h */; }; + ECF46C821134755E00390CBE /* tsip_header_RSeq.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B031134755E00390CBE /* tsip_header_RSeq.h */; }; + ECF46C831134755E00390CBE /* tsip_header_Security_Client.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B041134755E00390CBE /* tsip_header_Security_Client.h */; }; + ECF46C841134755E00390CBE /* tsip_header_Security_Server.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B051134755E00390CBE /* tsip_header_Security_Server.h */; }; + ECF46C851134755E00390CBE /* tsip_header_Security_Verify.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B061134755E00390CBE /* tsip_header_Security_Verify.h */; }; + ECF46C861134755E00390CBE /* tsip_header_Server.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B071134755E00390CBE /* tsip_header_Server.h */; }; + ECF46C871134755E00390CBE /* tsip_header_Service_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B081134755E00390CBE /* tsip_header_Service_Route.h */; }; + ECF46C881134755E00390CBE /* tsip_header_Session_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B091134755E00390CBE /* tsip_header_Session_Expires.h */; }; + ECF46C891134755E00390CBE /* tsip_header_SIP_ETag.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B0A1134755E00390CBE /* tsip_header_SIP_ETag.h */; }; + ECF46C8A1134755E00390CBE /* tsip_header_SIP_If_Match.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B0B1134755E00390CBE /* tsip_header_SIP_If_Match.h */; }; + ECF46C8B1134755E00390CBE /* tsip_header_Subject.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B0C1134755E00390CBE /* tsip_header_Subject.h */; }; + ECF46C8C1134755E00390CBE /* tsip_header_Subscription_State.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B0D1134755E00390CBE /* tsip_header_Subscription_State.h */; }; + ECF46C8D1134755E00390CBE /* tsip_header_Supported.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B0E1134755E00390CBE /* tsip_header_Supported.h */; }; + ECF46C8E1134755E00390CBE /* tsip_header_Target_Dialog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B0F1134755E00390CBE /* tsip_header_Target_Dialog.h */; }; + ECF46C8F1134755E00390CBE /* tsip_header_Timestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B101134755E00390CBE /* tsip_header_Timestamp.h */; }; + ECF46C901134755E00390CBE /* tsip_header_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B111134755E00390CBE /* tsip_header_To.h */; }; + ECF46C911134755E00390CBE /* tsip_header_Unsupported.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B121134755E00390CBE /* tsip_header_Unsupported.h */; }; + ECF46C921134755E00390CBE /* tsip_header_User_Agent.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B131134755E00390CBE /* tsip_header_User_Agent.h */; }; + ECF46C931134755E00390CBE /* tsip_header_Via.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B141134755E00390CBE /* tsip_header_Via.h */; }; + ECF46C941134755E00390CBE /* tsip_header_Warning.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B151134755E00390CBE /* tsip_header_Warning.h */; }; + ECF46C951134755E00390CBE /* tsip_header_WWW_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B161134755E00390CBE /* tsip_header_WWW_Authenticate.h */; }; + ECF46C961134755E00390CBE /* tsip_headers.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B171134755E00390CBE /* tsip_headers.h */; }; + ECF46C971134755E00390CBE /* tsip_parser_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B191134755E00390CBE /* tsip_parser_header.h */; }; + ECF46C981134755E00390CBE /* tsip_parser_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B1A1134755E00390CBE /* tsip_parser_message.h */; }; + ECF46C991134755E00390CBE /* tsip_parser_uri.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B1B1134755E00390CBE /* tsip_parser_uri.h */; }; + ECF46C9A1134755E00390CBE /* tsip_transac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B1D1134755E00390CBE /* tsip_transac.h */; }; + ECF46C9B1134755E00390CBE /* tsip_transac_ict.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B1E1134755E00390CBE /* tsip_transac_ict.h */; }; + ECF46C9C1134755E00390CBE /* tsip_transac_ist.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B1F1134755E00390CBE /* tsip_transac_ist.h */; }; + ECF46C9D1134755E00390CBE /* tsip_transac_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B201134755E00390CBE /* tsip_transac_layer.h */; }; + ECF46C9E1134755E00390CBE /* tsip_transac_nict.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B211134755E00390CBE /* tsip_transac_nict.h */; }; + ECF46C9F1134755E00390CBE /* tsip_transac_nist.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B221134755E00390CBE /* tsip_transac_nist.h */; }; + ECF46CA01134755E00390CBE /* tsip_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B241134755E00390CBE /* tsip_transport.h */; }; + ECF46CA11134755E00390CBE /* tsip_transport_ipsec.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B251134755E00390CBE /* tsip_transport_ipsec.h */; }; + ECF46CA21134755E00390CBE /* tsip_transport_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B261134755E00390CBE /* tsip_transport_layer.h */; }; + ECF46CA31134755E00390CBE /* tsip_event.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B271134755E00390CBE /* tsip_event.h */; }; + ECF46CA41134755E00390CBE /* tsip_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B281134755E00390CBE /* tsip_message.h */; }; + ECF46CA51134755E00390CBE /* tsip_operation.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B291134755E00390CBE /* tsip_operation.h */; }; + ECF46CA61134755E00390CBE /* tsip_timers.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B2A1134755E00390CBE /* tsip_timers.h */; }; + ECF46CA71134755E00390CBE /* tsip_uri.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B2B1134755E00390CBE /* tsip_uri.h */; }; + ECF46CA81134755E00390CBE /* tinysip_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B2C1134755E00390CBE /* tinysip_config.h */; }; + ECF46CA91134755E00390CBE /* tsip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46B2D1134755E00390CBE /* tsip.h */; }; + ECF46CAA1134755E00390CBE /* tsip_api_invite.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46B961134755E00390CBE /* tsip_api_invite.c */; }; + ECF46CAB1134755E00390CBE /* tsip_api_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46B971134755E00390CBE /* tsip_api_message.c */; }; + ECF46CAC1134755E00390CBE /* tsip_api_publish.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46B981134755E00390CBE /* tsip_api_publish.c */; }; + ECF46CAD1134755E00390CBE /* tsip_api_register.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46B991134755E00390CBE /* tsip_api_register.c */; }; + ECF46CAE1134755E00390CBE /* tsip_api_subscribe.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46B9A1134755E00390CBE /* tsip_api_subscribe.c */; }; + ECF46CAF1134755E00390CBE /* tsip_challenge.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46B9C1134755E00390CBE /* tsip_challenge.c */; }; + ECF46CB01134755E00390CBE /* tsip_milenage.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46B9D1134755E00390CBE /* tsip_milenage.c */; }; + ECF46CB11134755E00390CBE /* tsip_rijndael.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46B9E1134755E00390CBE /* tsip_rijndael.c */; }; + ECF46CB21134755E00390CBE /* tsip_dialog.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BA01134755E00390CBE /* tsip_dialog.c */; }; + ECF46CB31134755E00390CBE /* tsip_dialog_invite.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BA11134755E00390CBE /* tsip_dialog_invite.client.c */; }; + ECF46CB41134755E00390CBE /* tsip_dialog_invite.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BA21134755E00390CBE /* tsip_dialog_invite.server.c */; }; + ECF46CB51134755E00390CBE /* tsip_dialog_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BA31134755E00390CBE /* tsip_dialog_layer.c */; }; + ECF46CB61134755E00390CBE /* tsip_dialog_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BA41134755E00390CBE /* tsip_dialog_message.c */; }; + ECF46CB71134755E00390CBE /* tsip_dialog_register.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BA51134755E00390CBE /* tsip_dialog_register.client.c */; }; + ECF46CB81134755E00390CBE /* tsip_dialog_register.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BA61134755E00390CBE /* tsip_dialog_register.server.c */; }; + ECF46CB91134755E00390CBE /* tsip_dialog_subscribe.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BA71134755E00390CBE /* tsip_dialog_subscribe.client.c */; }; + ECF46CBA1134755E00390CBE /* tsip_dialog_subscribe.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BA81134755E00390CBE /* tsip_dialog_subscribe.server.c */; }; + ECF46CBB1134755E00390CBE /* tsip_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BAA1134755E00390CBE /* tsip_header.c */; }; + ECF46CBC1134755E00390CBE /* tsip_header_accept.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BAB1134755E00390CBE /* tsip_header_accept.c */; }; + ECF46CBD1134755E00390CBE /* tsip_header_Accept_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BAC1134755E00390CBE /* tsip_header_Accept_Contact.c */; }; + ECF46CBE1134755E00390CBE /* tsip_header_Accept_Encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BAD1134755E00390CBE /* tsip_header_Accept_Encoding.c */; }; + ECF46CBF1134755E00390CBE /* tsip_header_Accept_Language.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BAE1134755E00390CBE /* tsip_header_Accept_Language.c */; }; + ECF46CC01134755E00390CBE /* tsip_header_Accept_Resource_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BAF1134755E00390CBE /* tsip_header_Accept_Resource_Priority.c */; }; + ECF46CC11134755E00390CBE /* tsip_header_Alert_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BB01134755E00390CBE /* tsip_header_Alert_Info.c */; }; + ECF46CC21134755E00390CBE /* tsip_header_Allow.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BB11134755E00390CBE /* tsip_header_Allow.c */; }; + ECF46CC31134755E00390CBE /* tsip_header_Allow_Events.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BB21134755E00390CBE /* tsip_header_Allow_Events.c */; }; + ECF46CC41134755E00390CBE /* tsip_header_Authentication_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BB31134755E00390CBE /* tsip_header_Authentication_Info.c */; }; + ECF46CC51134755E00390CBE /* tsip_header_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BB41134755E00390CBE /* tsip_header_Authorization.c */; }; + ECF46CC61134755E00390CBE /* tsip_header_Call_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BB51134755E00390CBE /* tsip_header_Call_ID.c */; }; + ECF46CC71134755E00390CBE /* tsip_header_Call_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BB61134755E00390CBE /* tsip_header_Call_Info.c */; }; + ECF46CC81134755E00390CBE /* tsip_header_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BB71134755E00390CBE /* tsip_header_Contact.c */; }; + ECF46CC91134755E00390CBE /* tsip_header_Content_Disposition.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BB81134755E00390CBE /* tsip_header_Content_Disposition.c */; }; + ECF46CCA1134755E00390CBE /* tsip_header_Content_Encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BB91134755E00390CBE /* tsip_header_Content_Encoding.c */; }; + ECF46CCB1134755E00390CBE /* tsip_header_Content_Language.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BBA1134755E00390CBE /* tsip_header_Content_Language.c */; }; + ECF46CCC1134755E00390CBE /* tsip_header_Content_Length.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BBB1134755E00390CBE /* tsip_header_Content_Length.c */; }; + ECF46CCD1134755E00390CBE /* tsip_header_Content_Type.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BBC1134755E00390CBE /* tsip_header_Content_Type.c */; }; + ECF46CCE1134755E00390CBE /* tsip_header_CSeq.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BBD1134755E00390CBE /* tsip_header_CSeq.c */; }; + ECF46CCF1134755E00390CBE /* tsip_header_Date.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BBE1134755E00390CBE /* tsip_header_Date.c */; }; + ECF46CD01134755E00390CBE /* tsip_header_Error_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BBF1134755E00390CBE /* tsip_header_Error_Info.c */; }; + ECF46CD11134755E00390CBE /* tsip_header_Event.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BC01134755E00390CBE /* tsip_header_Event.c */; }; + ECF46CD21134755E00390CBE /* tsip_header_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BC11134755E00390CBE /* tsip_header_Expires.c */; }; + ECF46CD31134755E00390CBE /* tsip_header_From.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BC21134755E00390CBE /* tsip_header_From.c */; }; + ECF46CD41134755E00390CBE /* tsip_header_History_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BC31134755E00390CBE /* tsip_header_History_Info.c */; }; + ECF46CD51134755E00390CBE /* tsip_header_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BC41134755E00390CBE /* tsip_header_Identity.c */; }; + ECF46CD61134755E00390CBE /* tsip_header_Identity_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BC51134755E00390CBE /* tsip_header_Identity_Info.c */; }; + ECF46CD71134755E00390CBE /* tsip_header_In_Reply_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BC61134755E00390CBE /* tsip_header_In_Reply_To.c */; }; + ECF46CD81134755E00390CBE /* tsip_header_Join.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BC71134755E00390CBE /* tsip_header_Join.c */; }; + ECF46CD91134755E00390CBE /* tsip_header_Max_Forwards.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BC81134755E00390CBE /* tsip_header_Max_Forwards.c */; }; + ECF46CDA1134755E00390CBE /* tsip_header_MIME_Version.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BC91134755E00390CBE /* tsip_header_MIME_Version.c */; }; + ECF46CDB1134755E00390CBE /* tsip_header_Min_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BCA1134755E00390CBE /* tsip_header_Min_Expires.c */; }; + ECF46CDC1134755E00390CBE /* tsip_header_Min_SE.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BCB1134755E00390CBE /* tsip_header_Min_SE.c */; }; + ECF46CDD1134755E00390CBE /* tsip_header_Organization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BCC1134755E00390CBE /* tsip_header_Organization.c */; }; + ECF46CDE1134755E00390CBE /* tsip_header_P_Access_Network_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BCD1134755E00390CBE /* tsip_header_P_Access_Network_Info.c */; }; + ECF46CDF1134755E00390CBE /* tsip_header_P_Answer_State.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BCE1134755E00390CBE /* tsip_header_P_Answer_State.c */; }; + ECF46CE01134755E00390CBE /* tsip_header_P_Asserted_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BCF1134755E00390CBE /* tsip_header_P_Asserted_Identity.c */; }; + ECF46CE11134755E00390CBE /* tsip_header_P_Associated_URI.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BD01134755E00390CBE /* tsip_header_P_Associated_URI.c */; }; + ECF46CE21134755E00390CBE /* tsip_header_P_Called_Party_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BD11134755E00390CBE /* tsip_header_P_Called_Party_ID.c */; }; + ECF46CE31134755E00390CBE /* tsip_header_P_Charging_Function_Addresses.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BD21134755E00390CBE /* tsip_header_P_Charging_Function_Addresses.c */; }; + ECF46CE41134755E00390CBE /* tsip_header_P_Charging_Vector.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BD31134755E00390CBE /* tsip_header_P_Charging_Vector.c */; }; + ECF46CE51134755E00390CBE /* tsip_header_P_DCS_Billing_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BD41134755E00390CBE /* tsip_header_P_DCS_Billing_Info.c */; }; + ECF46CE61134755E00390CBE /* tsip_header_P_DCS_LAES.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BD51134755E00390CBE /* tsip_header_P_DCS_LAES.c */; }; + ECF46CE71134755E00390CBE /* tsip_header_P_DCS_OSPS.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BD61134755E00390CBE /* tsip_header_P_DCS_OSPS.c */; }; + ECF46CE81134755E00390CBE /* tsip_header_P_DCS_Redirect.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BD71134755E00390CBE /* tsip_header_P_DCS_Redirect.c */; }; + ECF46CE91134755E00390CBE /* tsip_header_P_DCS_Trace_Party_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BD81134755E00390CBE /* tsip_header_P_DCS_Trace_Party_ID.c */; }; + ECF46CEA1134755E00390CBE /* tsip_header_P_Early_Media.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BD91134755E00390CBE /* tsip_header_P_Early_Media.c */; }; + ECF46CEB1134755E00390CBE /* tsip_header_P_Media_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BDA1134755E00390CBE /* tsip_header_P_Media_Authorization.c */; }; + ECF46CEC1134755E00390CBE /* tsip_header_P_Preferred_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BDB1134755E00390CBE /* tsip_header_P_Preferred_Identity.c */; }; + ECF46CED1134755E00390CBE /* tsip_header_P_Profile_Key.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BDC1134755E00390CBE /* tsip_header_P_Profile_Key.c */; }; + ECF46CEE1134755E00390CBE /* tsip_header_P_User_Database.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BDD1134755E00390CBE /* tsip_header_P_User_Database.c */; }; + ECF46CEF1134755E00390CBE /* tsip_header_P_Visited_Network_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BDE1134755E00390CBE /* tsip_header_P_Visited_Network_ID.c */; }; + ECF46CF01134755E00390CBE /* tsip_header_Path.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BDF1134755E00390CBE /* tsip_header_Path.c */; }; + ECF46CF11134755E00390CBE /* tsip_header_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BE01134755E00390CBE /* tsip_header_Priority.c */; }; + ECF46CF21134755E00390CBE /* tsip_header_Privacy.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BE11134755E00390CBE /* tsip_header_Privacy.c */; }; + ECF46CF31134755E00390CBE /* tsip_header_Proxy_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BE21134755E00390CBE /* tsip_header_Proxy_Authenticate.c */; }; + ECF46CF41134755E00390CBE /* tsip_header_Proxy_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BE31134755E00390CBE /* tsip_header_Proxy_Authorization.c */; }; + ECF46CF51134755E00390CBE /* tsip_header_Proxy_Require.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BE41134755E00390CBE /* tsip_header_Proxy_Require.c */; }; + ECF46CF61134755E00390CBE /* tsip_header_RAck.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BE51134755E00390CBE /* tsip_header_RAck.c */; }; + ECF46CF71134755E00390CBE /* tsip_header_Reason.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BE61134755E00390CBE /* tsip_header_Reason.c */; }; + ECF46CF81134755E00390CBE /* tsip_header_Record_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BE71134755E00390CBE /* tsip_header_Record_Route.c */; }; + ECF46CF91134755E00390CBE /* tsip_header_Refer_Sub.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BE81134755E00390CBE /* tsip_header_Refer_Sub.c */; }; + ECF46CFA1134755E00390CBE /* tsip_header_Refer_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BE91134755E00390CBE /* tsip_header_Refer_To.c */; }; + ECF46CFB1134755E00390CBE /* tsip_header_Referred_By.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BEA1134755E00390CBE /* tsip_header_Referred_By.c */; }; + ECF46CFC1134755E00390CBE /* tsip_header_Reject_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BEB1134755E00390CBE /* tsip_header_Reject_Contact.c */; }; + ECF46CFD1134755E00390CBE /* tsip_header_Replaces.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BEC1134755E00390CBE /* tsip_header_Replaces.c */; }; + ECF46CFE1134755E00390CBE /* tsip_header_Reply_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BED1134755E00390CBE /* tsip_header_Reply_To.c */; }; + ECF46CFF1134755E00390CBE /* tsip_header_Request_Disposition.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BEE1134755E00390CBE /* tsip_header_Request_Disposition.c */; }; + ECF46D001134755E00390CBE /* tsip_header_Require.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BEF1134755E00390CBE /* tsip_header_Require.c */; }; + ECF46D011134755E00390CBE /* tsip_header_Resource_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BF01134755E00390CBE /* tsip_header_Resource_Priority.c */; }; + ECF46D021134755E00390CBE /* tsip_header_Retry_After.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BF11134755E00390CBE /* tsip_header_Retry_After.c */; }; + ECF46D031134755E00390CBE /* tsip_header_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BF21134755E00390CBE /* tsip_header_Route.c */; }; + ECF46D041134755E00390CBE /* tsip_header_RSeq.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BF31134755E00390CBE /* tsip_header_RSeq.c */; }; + ECF46D051134755E00390CBE /* tsip_header_Security_Client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BF41134755E00390CBE /* tsip_header_Security_Client.c */; }; + ECF46D061134755E00390CBE /* tsip_header_Security_Server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BF51134755E00390CBE /* tsip_header_Security_Server.c */; }; + ECF46D071134755E00390CBE /* tsip_header_Security_Verify.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BF61134755E00390CBE /* tsip_header_Security_Verify.c */; }; + ECF46D081134755E00390CBE /* tsip_header_Server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BF71134755E00390CBE /* tsip_header_Server.c */; }; + ECF46D091134755E00390CBE /* tsip_header_Service_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BF81134755E00390CBE /* tsip_header_Service_Route.c */; }; + ECF46D0A1134755E00390CBE /* tsip_header_Session_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BF91134755E00390CBE /* tsip_header_Session_Expires.c */; }; + ECF46D0B1134755E00390CBE /* tsip_header_SIP_ETag.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BFA1134755E00390CBE /* tsip_header_SIP_ETag.c */; }; + ECF46D0C1134755E00390CBE /* tsip_header_SIP_If_Match.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BFB1134755E00390CBE /* tsip_header_SIP_If_Match.c */; }; + ECF46D0D1134755E00390CBE /* tsip_header_Subject.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BFC1134755E00390CBE /* tsip_header_Subject.c */; }; + ECF46D0E1134755E00390CBE /* tsip_header_Subscription_State.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BFD1134755E00390CBE /* tsip_header_Subscription_State.c */; }; + ECF46D0F1134755E00390CBE /* tsip_header_Supported.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BFE1134755E00390CBE /* tsip_header_Supported.c */; }; + ECF46D101134755E00390CBE /* tsip_header_Target_Dialog.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46BFF1134755E00390CBE /* tsip_header_Target_Dialog.c */; }; + ECF46D111134755E00390CBE /* tsip_header_Timestamp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C001134755E00390CBE /* tsip_header_Timestamp.c */; }; + ECF46D121134755E00390CBE /* tsip_header_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C011134755E00390CBE /* tsip_header_To.c */; }; + ECF46D131134755E00390CBE /* tsip_header_Unsupported.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C021134755E00390CBE /* tsip_header_Unsupported.c */; }; + ECF46D141134755E00390CBE /* tsip_header_User_Agent.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C031134755E00390CBE /* tsip_header_User_Agent.c */; }; + ECF46D151134755E00390CBE /* tsip_header_Via.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C041134755E00390CBE /* tsip_header_Via.c */; }; + ECF46D161134755E00390CBE /* tsip_header_Warning.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C051134755E00390CBE /* tsip_header_Warning.c */; }; + ECF46D171134755E00390CBE /* tsip_header_WWW_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C061134755E00390CBE /* tsip_header_WWW_Authenticate.c */; }; + ECF46D191134755E00390CBE /* tsip_parser_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C091134755E00390CBE /* tsip_parser_header.c */; }; + ECF46D1A1134755E00390CBE /* tsip_parser_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C0A1134755E00390CBE /* tsip_parser_message.c */; }; + ECF46D1B1134755E00390CBE /* tsip_parser_uri.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C0B1134755E00390CBE /* tsip_parser_uri.c */; }; + ECF46D1C1134755E00390CBE /* tsip_transac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C0D1134755E00390CBE /* tsip_transac.c */; }; + ECF46D1D1134755E00390CBE /* tsip_transac_ict.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C0E1134755E00390CBE /* tsip_transac_ict.c */; }; + ECF46D1E1134755E00390CBE /* tsip_transac_ist.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C0F1134755E00390CBE /* tsip_transac_ist.c */; }; + ECF46D1F1134755E00390CBE /* tsip_transac_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C101134755E00390CBE /* tsip_transac_layer.c */; }; + ECF46D201134755E00390CBE /* tsip_transac_nict.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C111134755E00390CBE /* tsip_transac_nict.c */; }; + ECF46D211134755E00390CBE /* tsip_transac_nist.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C121134755E00390CBE /* tsip_transac_nist.c */; }; + ECF46D221134755E00390CBE /* tsip_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C141134755E00390CBE /* tsip_transport.c */; }; + ECF46D231134755E00390CBE /* tsip_transport_ipsec.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C151134755E00390CBE /* tsip_transport_ipsec.c */; }; + ECF46D241134755E00390CBE /* tsip_transport_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C161134755E00390CBE /* tsip_transport_layer.c */; }; + ECF46D251134755E00390CBE /* tsip.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C171134755E00390CBE /* tsip.c */; }; + ECF46D261134755E00390CBE /* tsip_event.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C181134755E00390CBE /* tsip_event.c */; }; + ECF46D271134755E00390CBE /* tsip_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C191134755E00390CBE /* tsip_message.c */; }; + ECF46D281134755E00390CBE /* tsip_operation.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C1A1134755E00390CBE /* tsip_operation.c */; }; + ECF46D291134755E00390CBE /* tsip_timers.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C1B1134755E00390CBE /* tsip_timers.c */; }; + ECF46D2A1134755E00390CBE /* tsip_uri.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46C1C1134755E00390CBE /* tsip_uri.c */; }; + ECF46DC411347FAA00390CBE /* tipsec.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46D43113476BD00390CBE /* tipsec.c */; }; + ECF46DC511347FAB00390CBE /* tipsec_xp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46D4B113476BD00390CBE /* tipsec_xp.c */; }; + ECF46DC611347FAC00390CBE /* tipsec_xp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D4C113476BD00390CBE /* tipsec_xp.h */; }; + ECF46DC711347FAC00390CBE /* tinyipsec_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D42113476BD00390CBE /* tinyipsec_config.h */; }; + ECF46DC811347FAD00390CBE /* tipsec_common.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D46113476BD00390CBE /* tipsec_common.h */; }; + ECF46DC911347FAD00390CBE /* tipsec_racoon.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46D47113476BD00390CBE /* tipsec_racoon.c */; }; + ECF46DCA11347FAE00390CBE /* tipsec_racoon.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D48113476BD00390CBE /* tipsec_racoon.h */; }; + ECF46DCB11347FAE00390CBE /* tipsec.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D44113476BD00390CBE /* tipsec.h */; }; + ECF46DCC11347FAF00390CBE /* tipsec_vista.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46D49113476BD00390CBE /* tipsec_vista.c */; }; + ECF46DCD11347FB100390CBE /* tipsec_common.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46D45113476BD00390CBE /* tipsec_common.c */; }; + ECF46DCE11347FB100390CBE /* tipsec_vista.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D4A113476BD00390CBE /* tipsec_vista.h */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -423,16 +523,6 @@ ECED644810F99599006B4DC9 /* abnf */ = {isa = PBXFileReference; lastKnownFileType = folder; name = abnf; path = ../../tinySIP/abnf; sourceTree = SOURCE_ROOT; }; ECED644B10F995A8006B4DC9 /* graph */ = {isa = PBXFileReference; lastKnownFileType = folder; name = graph; path = ../../tinySIP/graph; sourceTree = SOURCE_ROOT; }; ECED644D10F995B8006B4DC9 /* ragel */ = {isa = PBXFileReference; lastKnownFileType = folder; name = ragel; path = ../../tinySIP/ragel; sourceTree = SOURCE_ROOT; }; - ECED64B010F995DB006B4DC9 /* smc */ = {isa = PBXFileReference; lastKnownFileType = folder; name = smc; path = ../../tinySIP/smc; sourceTree = SOURCE_ROOT; }; - ECED654010F99647006B4DC9 /* tsip_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsip_message.h; path = ../../tinySIP/include/tinysip/tsip_message.h; sourceTree = SOURCE_ROOT; }; - ECED654110F99647006B4DC9 /* tsip_operation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsip_operation.h; path = ../../tinySIP/include/tinysip/tsip_operation.h; sourceTree = SOURCE_ROOT; }; - ECED654210F99647006B4DC9 /* tsip_timers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsip_timers.h; path = ../../tinySIP/include/tinysip/tsip_timers.h; sourceTree = SOURCE_ROOT; }; - ECED654310F99647006B4DC9 /* tsip_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsip_uri.h; path = ../../tinySIP/include/tinysip/tsip_uri.h; sourceTree = SOURCE_ROOT; }; - ECED65D810F99666006B4DC9 /* tsip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsip.c; path = ../../tinySIP/source/tsip.c; sourceTree = SOURCE_ROOT; }; - ECED65D910F99666006B4DC9 /* tsip_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsip_message.c; path = ../../tinySIP/source/tsip_message.c; sourceTree = SOURCE_ROOT; }; - ECED65DA10F99666006B4DC9 /* tsip_operation.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsip_operation.c; path = ../../tinySIP/source/tsip_operation.c; sourceTree = SOURCE_ROOT; }; - ECED65DB10F99666006B4DC9 /* tsip_timers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsip_timers.c; path = ../../tinySIP/source/tsip_timers.c; sourceTree = SOURCE_ROOT; }; - ECED65DC10F99666006B4DC9 /* tsip_uri.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsip_uri.c; path = ../../tinySIP/source/tsip_uri.c; sourceTree = SOURCE_ROOT; }; ECED65E610F9968A006B4DC9 /* libtinySAK.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinySAK.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; ECED67EE10F996F6006B4DC9 /* tinySAK_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tinySAK_config.h; path = ../../tinySAK/src/tinySAK_config.h; sourceTree = SOURCE_ROOT; }; ECED67EF10F996F6006B4DC9 /* tsk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk.c; path = ../../tinySAK/src/tsk.c; sourceTree = SOURCE_ROOT; }; @@ -487,281 +577,8 @@ ECED682010F996F6006B4DC9 /* tsk_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_url.h; path = ../../tinySAK/src/tsk_url.h; sourceTree = SOURCE_ROOT; }; ECED682110F996F6006B4DC9 /* tsk_xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_xml.c; path = ../../tinySAK/src/tsk_xml.c; sourceTree = SOURCE_ROOT; }; ECED682210F996F6006B4DC9 /* tsk_xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_xml.h; path = ../../tinySAK/src/tsk_xml.h; sourceTree = SOURCE_ROOT; }; - ECED685A10F997BF006B4DC9 /* tinysip_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tinysip_config.h; path = ../../tinySIP/include/tinysip_config.h; sourceTree = SOURCE_ROOT; }; - ECED685B10F997BF006B4DC9 /* tsip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsip.h; path = ../../tinySIP/include/tsip.h; sourceTree = SOURCE_ROOT; }; ECED686410F997F2006B4DC9 /* libtinyNET.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyNET.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; - ECED686910F99811006B4DC9 /* tinyNET_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tinyNET_config.h; path = ../../tinyNET/src/tinyNET_config.h; sourceTree = SOURCE_ROOT; }; - ECED686A10F99811006B4DC9 /* tnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tnet.c; path = ../../tinyNET/src/tnet.c; sourceTree = SOURCE_ROOT; }; - ECED686B10F99811006B4DC9 /* tnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tnet.h; path = ../../tinyNET/src/tnet.h; sourceTree = SOURCE_ROOT; }; - ECED686C10F99811006B4DC9 /* tnet_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tnet_auth.c; path = ../../tinyNET/src/tnet_auth.c; sourceTree = SOURCE_ROOT; }; - ECED686D10F99811006B4DC9 /* tnet_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tnet_auth.h; path = ../../tinyNET/src/tnet_auth.h; sourceTree = SOURCE_ROOT; }; - ECED686E10F99811006B4DC9 /* tnet_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tnet_poll.c; path = ../../tinyNET/src/tnet_poll.c; sourceTree = SOURCE_ROOT; }; - ECED686F10F99811006B4DC9 /* tnet_poll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tnet_poll.h; path = ../../tinyNET/src/tnet_poll.h; sourceTree = SOURCE_ROOT; }; - ECED687010F99811006B4DC9 /* tnet_socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tnet_socket.c; path = ../../tinyNET/src/tnet_socket.c; sourceTree = SOURCE_ROOT; }; - ECED687110F99811006B4DC9 /* tnet_socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tnet_socket.h; path = ../../tinyNET/src/tnet_socket.h; sourceTree = SOURCE_ROOT; }; - ECED687210F99811006B4DC9 /* tnet_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tnet_transport.c; path = ../../tinyNET/src/tnet_transport.c; sourceTree = SOURCE_ROOT; }; - ECED687310F99811006B4DC9 /* tnet_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tnet_transport.h; path = ../../tinyNET/src/tnet_transport.h; sourceTree = SOURCE_ROOT; }; - ECED687410F99811006B4DC9 /* tnet_transport_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tnet_transport_poll.c; path = ../../tinyNET/src/tnet_transport_poll.c; sourceTree = SOURCE_ROOT; }; - ECED687510F99811006B4DC9 /* tnet_transport_win32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tnet_transport_win32.c; path = ../../tinyNET/src/tnet_transport_win32.c; sourceTree = SOURCE_ROOT; }; - ECED687610F99811006B4DC9 /* tnet_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tnet_types.h; path = ../../tinyNET/src/tnet_types.h; sourceTree = SOURCE_ROOT; }; - ECED687710F99811006B4DC9 /* tnet_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tnet_utils.c; path = ../../tinyNET/src/tnet_utils.c; sourceTree = SOURCE_ROOT; }; - ECED687810F99811006B4DC9 /* tnet_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tnet_utils.h; path = ../../tinyNET/src/tnet_utils.h; sourceTree = SOURCE_ROOT; }; ECED689D10F998E4006B4DC9 /* libtinyHTTP.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyHTTP.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; - ECED68A410F9991C006B4DC9 /* auth */ = {isa = PBXFileReference; lastKnownFileType = folder; name = auth; path = ../../tinyHTTP/include/tinyHTTP/auth; sourceTree = SOURCE_ROOT; }; - ECED68A710F9991C006B4DC9 /* headers */ = {isa = PBXFileReference; lastKnownFileType = folder; name = headers; path = ../../tinyHTTP/include/tinyHTTP/headers; sourceTree = SOURCE_ROOT; }; - ECED68A910F9991C006B4DC9 /* parsers */ = {isa = PBXFileReference; lastKnownFileType = folder; name = parsers; path = ../../tinyHTTP/include/tinyHTTP/parsers; sourceTree = SOURCE_ROOT; }; - ECED68AB10F9991C006B4DC9 /* thttp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = thttp_message.h; path = ../../tinyHTTP/include/tinyHTTP/thttp_message.h; sourceTree = SOURCE_ROOT; }; - ECED68AC10F9991C006B4DC9 /* thttp_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = thttp_url.h; path = ../../tinyHTTP/include/tinyHTTP/thttp_url.h; sourceTree = SOURCE_ROOT; }; - ECED68AF10F9992F006B4DC9 /* thttp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = thttp.h; path = ../../tinyHTTP/include/thttp.h; sourceTree = SOURCE_ROOT; }; - ECED68B010F9992F006B4DC9 /* tinyhttp_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tinyhttp_config.h; path = ../../tinyHTTP/include/tinyhttp_config.h; sourceTree = SOURCE_ROOT; }; - ECED68BA10F99944006B4DC9 /* thttp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = thttp.c; path = ../../tinyHTTP/source/thttp.c; sourceTree = SOURCE_ROOT; }; - ECED68BB10F99944006B4DC9 /* thttp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = thttp_message.c; path = ../../tinyHTTP/source/thttp_message.c; sourceTree = SOURCE_ROOT; }; - ECED68BC10F99944006B4DC9 /* thttp_utl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = thttp_utl.c; path = ../../tinyHTTP/source/thttp_utl.c; sourceTree = SOURCE_ROOT; }; - ECED68E110F9A303006B4DC9 /* tsip_challenge.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_challenge.c; sourceTree = ""; }; - ECED68E210F9A303006B4DC9 /* tsip_milenage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_milenage.c; sourceTree = ""; }; - ECED68E310F9A303006B4DC9 /* tsip_rijndael.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_rijndael.c; sourceTree = ""; }; - ECED68E510F9A303006B4DC9 /* tsip_dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog.c; sourceTree = ""; }; - ECED68E610F9A303006B4DC9 /* tsip_dialog_invite.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_invite.client.c; sourceTree = ""; }; - ECED68E710F9A303006B4DC9 /* tsip_dialog_invite.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_invite.server.c; sourceTree = ""; }; - ECED68E810F9A303006B4DC9 /* tsip_dialog_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_layer.c; sourceTree = ""; }; - ECED68E910F9A303006B4DC9 /* tsip_dialog_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_message.c; sourceTree = ""; }; - ECED68EA10F9A303006B4DC9 /* tsip_dialog_register.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_register.client.c; sourceTree = ""; }; - ECED68EB10F9A303006B4DC9 /* tsip_dialog_register.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_register.server.c; sourceTree = ""; }; - ECED68EC10F9A303006B4DC9 /* tsip_dialog_subscribe.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_subscribe.client.c; sourceTree = ""; }; - ECED68ED10F9A303006B4DC9 /* tsip_dialog_subscribe.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_subscribe.server.c; sourceTree = ""; }; - ECED68EF10F9A303006B4DC9 /* tsip_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header.c; sourceTree = ""; }; - ECED68F010F9A303006B4DC9 /* tsip_header_accept.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_accept.c; sourceTree = ""; }; - ECED68F110F9A303006B4DC9 /* tsip_header_Accept_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Contact.c; sourceTree = ""; }; - ECED68F210F9A303006B4DC9 /* tsip_header_Accept_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Encoding.c; sourceTree = ""; }; - ECED68F310F9A303006B4DC9 /* tsip_header_Accept_Language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Language.c; sourceTree = ""; }; - ECED68F410F9A303006B4DC9 /* tsip_header_Accept_Resource_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Resource_Priority.c; sourceTree = ""; }; - ECED68F510F9A303006B4DC9 /* tsip_header_Alert_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Alert_Info.c; sourceTree = ""; }; - ECED68F610F9A303006B4DC9 /* tsip_header_Allow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Allow.c; sourceTree = ""; }; - ECED68F710F9A303006B4DC9 /* tsip_header_Allow_Events.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Allow_Events.c; sourceTree = ""; }; - ECED68F810F9A303006B4DC9 /* tsip_header_Authentication_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Authentication_Info.c; sourceTree = ""; }; - ECED68F910F9A303006B4DC9 /* tsip_header_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Authorization.c; sourceTree = ""; }; - ECED68FA10F9A303006B4DC9 /* tsip_header_Call_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Call_ID.c; sourceTree = ""; }; - ECED68FB10F9A303006B4DC9 /* tsip_header_Call_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Call_Info.c; sourceTree = ""; }; - ECED68FC10F9A303006B4DC9 /* tsip_header_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Contact.c; sourceTree = ""; }; - ECED68FD10F9A303006B4DC9 /* tsip_header_Content_Disposition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Disposition.c; sourceTree = ""; }; - ECED68FE10F9A303006B4DC9 /* tsip_header_Content_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Encoding.c; sourceTree = ""; }; - ECED68FF10F9A303006B4DC9 /* tsip_header_Content_Language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Language.c; sourceTree = ""; }; - ECED690010F9A303006B4DC9 /* tsip_header_Content_Length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Length.c; sourceTree = ""; }; - ECED690110F9A303006B4DC9 /* tsip_header_Content_Type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Type.c; sourceTree = ""; }; - ECED690210F9A303006B4DC9 /* tsip_header_CSeq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_CSeq.c; sourceTree = ""; }; - ECED690310F9A303006B4DC9 /* tsip_header_Date.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Date.c; sourceTree = ""; }; - ECED690410F9A303006B4DC9 /* tsip_header_Error_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Error_Info.c; sourceTree = ""; }; - ECED690510F9A303006B4DC9 /* tsip_header_Event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Event.c; sourceTree = ""; }; - ECED690610F9A303006B4DC9 /* tsip_header_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Expires.c; sourceTree = ""; }; - ECED690710F9A303006B4DC9 /* tsip_header_From.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_From.c; sourceTree = ""; }; - ECED690810F9A303006B4DC9 /* tsip_header_History_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_History_Info.c; sourceTree = ""; }; - ECED690910F9A303006B4DC9 /* tsip_header_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Identity.c; sourceTree = ""; }; - ECED690A10F9A303006B4DC9 /* tsip_header_Identity_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Identity_Info.c; sourceTree = ""; }; - ECED690B10F9A303006B4DC9 /* tsip_header_In_Reply_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_In_Reply_To.c; sourceTree = ""; }; - ECED690C10F9A303006B4DC9 /* tsip_header_Join.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Join.c; sourceTree = ""; }; - ECED690D10F9A303006B4DC9 /* tsip_header_Max_Forwards.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Max_Forwards.c; sourceTree = ""; }; - ECED690E10F9A303006B4DC9 /* tsip_header_MIME_Version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_MIME_Version.c; sourceTree = ""; }; - ECED690F10F9A303006B4DC9 /* tsip_header_Min_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Min_Expires.c; sourceTree = ""; }; - ECED691010F9A303006B4DC9 /* tsip_header_Min_SE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Min_SE.c; sourceTree = ""; }; - ECED691110F9A303006B4DC9 /* tsip_header_Organization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Organization.c; sourceTree = ""; }; - ECED691210F9A303006B4DC9 /* tsip_header_P_Access_Network_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Access_Network_Info.c; sourceTree = ""; }; - ECED691310F9A303006B4DC9 /* tsip_header_P_Answer_State.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Answer_State.c; sourceTree = ""; }; - ECED691410F9A303006B4DC9 /* tsip_header_P_Asserted_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Asserted_Identity.c; sourceTree = ""; }; - ECED691510F9A303006B4DC9 /* tsip_header_P_Associated_URI.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Associated_URI.c; sourceTree = ""; }; - ECED691610F9A303006B4DC9 /* tsip_header_P_Called_Party_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Called_Party_ID.c; sourceTree = ""; }; - ECED691710F9A303006B4DC9 /* tsip_header_P_Charging_Function_Addresses.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Charging_Function_Addresses.c; sourceTree = ""; }; - ECED691810F9A303006B4DC9 /* tsip_header_P_Charging_Vector.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Charging_Vector.c; sourceTree = ""; }; - ECED691910F9A303006B4DC9 /* tsip_header_P_DCS_Billing_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_Billing_Info.c; sourceTree = ""; }; - ECED691A10F9A303006B4DC9 /* tsip_header_P_DCS_LAES.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_LAES.c; sourceTree = ""; }; - ECED691B10F9A303006B4DC9 /* tsip_header_P_DCS_OSPS.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_OSPS.c; sourceTree = ""; }; - ECED691C10F9A303006B4DC9 /* tsip_header_P_DCS_Redirect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_Redirect.c; sourceTree = ""; }; - ECED691D10F9A303006B4DC9 /* tsip_header_P_DCS_Trace_Party_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_Trace_Party_ID.c; sourceTree = ""; }; - ECED691E10F9A303006B4DC9 /* tsip_header_P_Early_Media.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Early_Media.c; sourceTree = ""; }; - ECED691F10F9A303006B4DC9 /* tsip_header_P_Media_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Media_Authorization.c; sourceTree = ""; }; - ECED692010F9A303006B4DC9 /* tsip_header_P_Preferred_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Preferred_Identity.c; sourceTree = ""; }; - ECED692110F9A303006B4DC9 /* tsip_header_P_Profile_Key.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Profile_Key.c; sourceTree = ""; }; - ECED692210F9A303006B4DC9 /* tsip_header_P_User_Database.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_User_Database.c; sourceTree = ""; }; - ECED692310F9A303006B4DC9 /* tsip_header_P_Visited_Network_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Visited_Network_ID.c; sourceTree = ""; }; - ECED692410F9A303006B4DC9 /* tsip_header_Path.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Path.c; sourceTree = ""; }; - ECED692510F9A303006B4DC9 /* tsip_header_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Priority.c; sourceTree = ""; }; - ECED692610F9A303006B4DC9 /* tsip_header_Privacy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Privacy.c; sourceTree = ""; }; - ECED692710F9A303006B4DC9 /* tsip_header_Proxy_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Authenticate.c; sourceTree = ""; }; - ECED692810F9A303006B4DC9 /* tsip_header_Proxy_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Authorization.c; sourceTree = ""; }; - ECED692910F9A303006B4DC9 /* tsip_header_Proxy_Require.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Require.c; sourceTree = ""; }; - ECED692A10F9A303006B4DC9 /* tsip_header_RAck.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_RAck.c; sourceTree = ""; }; - ECED692B10F9A303006B4DC9 /* tsip_header_Reason.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reason.c; sourceTree = ""; }; - ECED692C10F9A303006B4DC9 /* tsip_header_Record_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Record_Route.c; sourceTree = ""; }; - ECED692D10F9A303006B4DC9 /* tsip_header_Refer_Sub.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Refer_Sub.c; sourceTree = ""; }; - ECED692E10F9A303006B4DC9 /* tsip_header_Refer_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Refer_To.c; sourceTree = ""; }; - ECED692F10F9A303006B4DC9 /* tsip_header_Referred_By.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Referred_By.c; sourceTree = ""; }; - ECED693010F9A303006B4DC9 /* tsip_header_Reject_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reject_Contact.c; sourceTree = ""; }; - ECED693110F9A303006B4DC9 /* tsip_header_Replaces.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Replaces.c; sourceTree = ""; }; - ECED693210F9A303006B4DC9 /* tsip_header_Reply_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reply_To.c; sourceTree = ""; }; - ECED693310F9A303006B4DC9 /* tsip_header_Request_Disposition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Request_Disposition.c; sourceTree = ""; }; - ECED693410F9A303006B4DC9 /* tsip_header_Require.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Require.c; sourceTree = ""; }; - ECED693510F9A303006B4DC9 /* tsip_header_Resource_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Resource_Priority.c; sourceTree = ""; }; - ECED693610F9A303006B4DC9 /* tsip_header_Retry_After.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Retry_After.c; sourceTree = ""; }; - ECED693710F9A303006B4DC9 /* tsip_header_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Route.c; sourceTree = ""; }; - ECED693810F9A303006B4DC9 /* tsip_header_RSeq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_RSeq.c; sourceTree = ""; }; - ECED693910F9A303006B4DC9 /* tsip_header_Security_Client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Client.c; sourceTree = ""; }; - ECED693A10F9A303006B4DC9 /* tsip_header_Security_Server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Server.c; sourceTree = ""; }; - ECED693B10F9A303006B4DC9 /* tsip_header_Security_Verify.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Verify.c; sourceTree = ""; }; - ECED693C10F9A303006B4DC9 /* tsip_header_Server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Server.c; sourceTree = ""; }; - ECED693D10F9A303006B4DC9 /* tsip_header_Service_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Service_Route.c; sourceTree = ""; }; - ECED693E10F9A303006B4DC9 /* tsip_header_Session_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Session_Expires.c; sourceTree = ""; }; - ECED693F10F9A303006B4DC9 /* tsip_header_SIP_ETag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_SIP_ETag.c; sourceTree = ""; }; - ECED694010F9A303006B4DC9 /* tsip_header_SIP_If_Match.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_SIP_If_Match.c; sourceTree = ""; }; - ECED694110F9A303006B4DC9 /* tsip_header_Subject.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Subject.c; sourceTree = ""; }; - ECED694210F9A303006B4DC9 /* tsip_header_Subscription_State.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Subscription_State.c; sourceTree = ""; }; - ECED694310F9A303006B4DC9 /* tsip_header_Supported.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Supported.c; sourceTree = ""; }; - ECED694410F9A303006B4DC9 /* tsip_header_Target_Dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Target_Dialog.c; sourceTree = ""; }; - ECED694510F9A303006B4DC9 /* tsip_header_Timestamp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Timestamp.c; sourceTree = ""; }; - ECED694610F9A303006B4DC9 /* tsip_header_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_To.c; sourceTree = ""; }; - ECED694710F9A303006B4DC9 /* tsip_header_Unsupported.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Unsupported.c; sourceTree = ""; }; - ECED694810F9A303006B4DC9 /* tsip_header_User_Agent.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_User_Agent.c; sourceTree = ""; }; - ECED694910F9A303006B4DC9 /* tsip_header_Via.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Via.c; sourceTree = ""; }; - ECED694A10F9A303006B4DC9 /* tsip_header_Warning.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Warning.c; sourceTree = ""; }; - ECED694B10F9A303006B4DC9 /* tsip_header_WWW_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_WWW_Authenticate.c; sourceTree = ""; }; - ECED694D10F9A303006B4DC9 /* tsip_parser_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_header.c; sourceTree = ""; }; - ECED694E10F9A303006B4DC9 /* tsip_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_message.c; sourceTree = ""; }; - ECED694F10F9A303006B4DC9 /* tsip_parser_uri.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_uri.c; sourceTree = ""; }; - ECED695010F9A303006B4DC9 /* tsip_ragel_state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_ragel_state.c; sourceTree = ""; }; - ECED695810F9A303006B4DC9 /* tsip_dialog_message_sm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_message_sm.c; sourceTree = ""; }; - ECED695910F9A303006B4DC9 /* tsip_dialog_register_sm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_register_sm.c; sourceTree = ""; }; - ECED695A10F9A303006B4DC9 /* tsip_transac_ict_sm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ict_sm.c; sourceTree = ""; }; - ECED695B10F9A303006B4DC9 /* tsip_transac_ist_sm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ist_sm.c; sourceTree = ""; }; - ECED695C10F9A303006B4DC9 /* tsip_transac_nict_sm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nict_sm.c; sourceTree = ""; }; - ECED695D10F9A303006B4DC9 /* tsip_transac_nist_sm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nist_sm.c; sourceTree = ""; }; - ECED695F10F9A303006B4DC9 /* tsip_transac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac.c; sourceTree = ""; }; - ECED696010F9A303006B4DC9 /* tsip_transac_ict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ict.c; sourceTree = ""; }; - ECED696110F9A303006B4DC9 /* tsip_transac_ist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ist.c; sourceTree = ""; }; - ECED696210F9A303006B4DC9 /* tsip_transac_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_layer.c; sourceTree = ""; }; - ECED696310F9A303006B4DC9 /* tsip_transac_nict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nict.c; sourceTree = ""; }; - ECED696410F9A303006B4DC9 /* tsip_transac_nist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nist.c; sourceTree = ""; }; - ECED696610F9A303006B4DC9 /* tsip_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport.c; sourceTree = ""; }; - ECED696710F9A303006B4DC9 /* tsip_transport_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_layer.c; sourceTree = ""; }; - ECED69E910F9A343006B4DC9 /* tsip_challenge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_challenge.h; sourceTree = ""; }; - ECED69EA10F9A343006B4DC9 /* tsip_milenage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_milenage.h; sourceTree = ""; }; - ECED69EB10F9A343006B4DC9 /* tsip_rijndael.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_rijndael.h; sourceTree = ""; }; - ECED69ED10F9A343006B4DC9 /* tsip_dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog.h; sourceTree = ""; }; - ECED69EE10F9A343006B4DC9 /* tsip_dialog_invite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_invite.h; sourceTree = ""; }; - ECED69EF10F9A343006B4DC9 /* tsip_dialog_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_layer.h; sourceTree = ""; }; - ECED69F010F9A343006B4DC9 /* tsip_dialog_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_message.h; sourceTree = ""; }; - ECED69F110F9A343006B4DC9 /* tsip_dialog_register.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_register.h; sourceTree = ""; }; - ECED69F210F9A343006B4DC9 /* tsip_dialog_subscribe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_subscribe.h; sourceTree = ""; }; - ECED69F410F9A343006B4DC9 /* tsip_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header.h; sourceTree = ""; }; - ECED69F510F9A343006B4DC9 /* tsip_header_accept.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_accept.h; sourceTree = ""; }; - ECED69F610F9A343006B4DC9 /* tsip_header_Accept_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Contact.h; sourceTree = ""; }; - ECED69F710F9A343006B4DC9 /* tsip_header_Accept_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Encoding.h; sourceTree = ""; }; - ECED69F810F9A343006B4DC9 /* tsip_header_Accept_Language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Language.h; sourceTree = ""; }; - ECED69F910F9A343006B4DC9 /* tsip_header_Accept_Resource_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Resource_Priority.h; sourceTree = ""; }; - ECED69FA10F9A343006B4DC9 /* tsip_header_Alert_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Alert_Info.h; sourceTree = ""; }; - ECED69FB10F9A343006B4DC9 /* tsip_header_Allow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Allow.h; sourceTree = ""; }; - ECED69FC10F9A343006B4DC9 /* tsip_header_Allow_Events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Allow_Events.h; sourceTree = ""; }; - ECED69FD10F9A343006B4DC9 /* tsip_header_Authentication_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Authentication_Info.h; sourceTree = ""; }; - ECED69FE10F9A343006B4DC9 /* tsip_header_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Authorization.h; sourceTree = ""; }; - ECED69FF10F9A343006B4DC9 /* tsip_header_Call_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Call_ID.h; sourceTree = ""; }; - ECED6A0010F9A343006B4DC9 /* tsip_header_Call_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Call_Info.h; sourceTree = ""; }; - ECED6A0110F9A343006B4DC9 /* tsip_header_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Contact.h; sourceTree = ""; }; - ECED6A0210F9A343006B4DC9 /* tsip_header_Content_Disposition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Disposition.h; sourceTree = ""; }; - ECED6A0310F9A343006B4DC9 /* tsip_header_Content_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Encoding.h; sourceTree = ""; }; - ECED6A0410F9A343006B4DC9 /* tsip_header_Content_Language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Language.h; sourceTree = ""; }; - ECED6A0510F9A343006B4DC9 /* tsip_header_Content_Length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Length.h; sourceTree = ""; }; - ECED6A0610F9A343006B4DC9 /* tsip_header_Content_Type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Type.h; sourceTree = ""; }; - ECED6A0710F9A343006B4DC9 /* tsip_header_CSeq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_CSeq.h; sourceTree = ""; }; - ECED6A0810F9A343006B4DC9 /* tsip_header_Date.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Date.h; sourceTree = ""; }; - ECED6A0910F9A343006B4DC9 /* tsip_header_Error_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Error_Info.h; sourceTree = ""; }; - ECED6A0A10F9A343006B4DC9 /* tsip_header_Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Event.h; sourceTree = ""; }; - ECED6A0B10F9A343006B4DC9 /* tsip_header_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Expires.h; sourceTree = ""; }; - ECED6A0C10F9A343006B4DC9 /* tsip_header_From.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_From.h; sourceTree = ""; }; - ECED6A0D10F9A343006B4DC9 /* tsip_header_History_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_History_Info.h; sourceTree = ""; }; - ECED6A0E10F9A343006B4DC9 /* tsip_header_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Identity.h; sourceTree = ""; }; - ECED6A0F10F9A343006B4DC9 /* tsip_header_Identity_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Identity_Info.h; sourceTree = ""; }; - ECED6A1010F9A343006B4DC9 /* tsip_header_In_Reply_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_In_Reply_To.h; sourceTree = ""; }; - ECED6A1110F9A343006B4DC9 /* tsip_header_Join.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Join.h; sourceTree = ""; }; - ECED6A1210F9A343006B4DC9 /* tsip_header_Max_Forwards.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Max_Forwards.h; sourceTree = ""; }; - ECED6A1310F9A343006B4DC9 /* tsip_header_MIME_Version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_MIME_Version.h; sourceTree = ""; }; - ECED6A1410F9A343006B4DC9 /* tsip_header_Min_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Min_Expires.h; sourceTree = ""; }; - ECED6A1510F9A343006B4DC9 /* tsip_header_Min_SE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Min_SE.h; sourceTree = ""; }; - ECED6A1610F9A343006B4DC9 /* tsip_header_Organization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Organization.h; sourceTree = ""; }; - ECED6A1710F9A343006B4DC9 /* tsip_header_P_Access_Network_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Access_Network_Info.h; sourceTree = ""; }; - ECED6A1810F9A343006B4DC9 /* tsip_header_P_Answer_State.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Answer_State.h; sourceTree = ""; }; - ECED6A1910F9A343006B4DC9 /* tsip_header_P_Asserted_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Asserted_Identity.h; sourceTree = ""; }; - ECED6A1A10F9A343006B4DC9 /* tsip_header_P_Associated_URI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Associated_URI.h; sourceTree = ""; }; - ECED6A1B10F9A343006B4DC9 /* tsip_header_P_Called_Party_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Called_Party_ID.h; sourceTree = ""; }; - ECED6A1C10F9A343006B4DC9 /* tsip_header_P_Charging_Function_Addresses.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Charging_Function_Addresses.h; sourceTree = ""; }; - ECED6A1D10F9A343006B4DC9 /* tsip_header_P_Charging_Vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Charging_Vector.h; sourceTree = ""; }; - ECED6A1E10F9A343006B4DC9 /* tsip_header_P_DCS_Billing_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_Billing_Info.h; sourceTree = ""; }; - ECED6A1F10F9A343006B4DC9 /* tsip_header_P_DCS_LAES.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_LAES.h; sourceTree = ""; }; - ECED6A2010F9A343006B4DC9 /* tsip_header_P_DCS_OSPS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_OSPS.h; sourceTree = ""; }; - ECED6A2110F9A343006B4DC9 /* tsip_header_P_DCS_Redirect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_Redirect.h; sourceTree = ""; }; - ECED6A2210F9A343006B4DC9 /* tsip_header_P_DCS_Trace_Party_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_Trace_Party_ID.h; sourceTree = ""; }; - ECED6A2310F9A343006B4DC9 /* tsip_header_P_Early_Media.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Early_Media.h; sourceTree = ""; }; - ECED6A2410F9A343006B4DC9 /* tsip_header_P_Media_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Media_Authorization.h; sourceTree = ""; }; - ECED6A2510F9A343006B4DC9 /* tsip_header_P_Preferred_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Preferred_Identity.h; sourceTree = ""; }; - ECED6A2610F9A343006B4DC9 /* tsip_header_P_Profile_Key.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Profile_Key.h; sourceTree = ""; }; - ECED6A2710F9A343006B4DC9 /* tsip_header_P_User_Database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_User_Database.h; sourceTree = ""; }; - ECED6A2810F9A343006B4DC9 /* tsip_header_P_Visited_Network_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Visited_Network_ID.h; sourceTree = ""; }; - ECED6A2910F9A343006B4DC9 /* tsip_header_Path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Path.h; sourceTree = ""; }; - ECED6A2A10F9A343006B4DC9 /* tsip_header_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Priority.h; sourceTree = ""; }; - ECED6A2B10F9A343006B4DC9 /* tsip_header_Privacy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Privacy.h; sourceTree = ""; }; - ECED6A2C10F9A343006B4DC9 /* tsip_header_Proxy_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Authenticate.h; sourceTree = ""; }; - ECED6A2D10F9A343006B4DC9 /* tsip_header_Proxy_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Authorization.h; sourceTree = ""; }; - ECED6A2E10F9A343006B4DC9 /* tsip_header_Proxy_Require.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Require.h; sourceTree = ""; }; - ECED6A2F10F9A343006B4DC9 /* tsip_header_RAck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_RAck.h; sourceTree = ""; }; - ECED6A3010F9A343006B4DC9 /* tsip_header_Reason.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reason.h; sourceTree = ""; }; - ECED6A3110F9A343006B4DC9 /* tsip_header_Record_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Record_Route.h; sourceTree = ""; }; - ECED6A3210F9A343006B4DC9 /* tsip_header_Refer_Sub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Refer_Sub.h; sourceTree = ""; }; - ECED6A3310F9A343006B4DC9 /* tsip_header_Refer_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Refer_To.h; sourceTree = ""; }; - ECED6A3410F9A343006B4DC9 /* tsip_header_Referred_By.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Referred_By.h; sourceTree = ""; }; - ECED6A3510F9A343006B4DC9 /* tsip_header_Reject_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reject_Contact.h; sourceTree = ""; }; - ECED6A3610F9A343006B4DC9 /* tsip_header_Replaces.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Replaces.h; sourceTree = ""; }; - ECED6A3710F9A343006B4DC9 /* tsip_header_Reply_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reply_To.h; sourceTree = ""; }; - ECED6A3810F9A343006B4DC9 /* tsip_header_Request_Disposition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Request_Disposition.h; sourceTree = ""; }; - ECED6A3910F9A343006B4DC9 /* tsip_header_Require.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Require.h; sourceTree = ""; }; - ECED6A3A10F9A343006B4DC9 /* tsip_header_Resource_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Resource_Priority.h; sourceTree = ""; }; - ECED6A3B10F9A343006B4DC9 /* tsip_header_Retry_After.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Retry_After.h; sourceTree = ""; }; - ECED6A3C10F9A343006B4DC9 /* tsip_header_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Route.h; sourceTree = ""; }; - ECED6A3D10F9A343006B4DC9 /* tsip_header_RSeq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_RSeq.h; sourceTree = ""; }; - ECED6A3E10F9A343006B4DC9 /* tsip_header_Security_Client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Client.h; sourceTree = ""; }; - ECED6A3F10F9A343006B4DC9 /* tsip_header_Security_Server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Server.h; sourceTree = ""; }; - ECED6A4010F9A343006B4DC9 /* tsip_header_Security_Verify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Verify.h; sourceTree = ""; }; - ECED6A4110F9A343006B4DC9 /* tsip_header_Server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Server.h; sourceTree = ""; }; - ECED6A4210F9A343006B4DC9 /* tsip_header_Service_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Service_Route.h; sourceTree = ""; }; - ECED6A4310F9A343006B4DC9 /* tsip_header_Session_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Session_Expires.h; sourceTree = ""; }; - ECED6A4410F9A343006B4DC9 /* tsip_header_SIP_ETag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_SIP_ETag.h; sourceTree = ""; }; - ECED6A4510F9A343006B4DC9 /* tsip_header_SIP_If_Match.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_SIP_If_Match.h; sourceTree = ""; }; - ECED6A4610F9A343006B4DC9 /* tsip_header_Subject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Subject.h; sourceTree = ""; }; - ECED6A4710F9A343006B4DC9 /* tsip_header_Subscription_State.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Subscription_State.h; sourceTree = ""; }; - ECED6A4810F9A343006B4DC9 /* tsip_header_Supported.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Supported.h; sourceTree = ""; }; - ECED6A4910F9A343006B4DC9 /* tsip_header_Target_Dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Target_Dialog.h; sourceTree = ""; }; - ECED6A4A10F9A343006B4DC9 /* tsip_header_Timestamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Timestamp.h; sourceTree = ""; }; - ECED6A4B10F9A343006B4DC9 /* tsip_header_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_To.h; sourceTree = ""; }; - ECED6A4C10F9A343006B4DC9 /* tsip_header_Unsupported.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Unsupported.h; sourceTree = ""; }; - ECED6A4D10F9A343006B4DC9 /* tsip_header_User_Agent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_User_Agent.h; sourceTree = ""; }; - ECED6A4E10F9A343006B4DC9 /* tsip_header_Via.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Via.h; sourceTree = ""; }; - ECED6A4F10F9A343006B4DC9 /* tsip_header_Warning.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Warning.h; sourceTree = ""; }; - ECED6A5010F9A343006B4DC9 /* tsip_header_WWW_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_WWW_Authenticate.h; sourceTree = ""; }; - ECED6A5110F9A343006B4DC9 /* tsip_headers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_headers.h; sourceTree = ""; }; - ECED6A5310F9A343006B4DC9 /* tsip_parser_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_header.h; sourceTree = ""; }; - ECED6A5410F9A343006B4DC9 /* tsip_parser_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_message.h; sourceTree = ""; }; - ECED6A5510F9A343006B4DC9 /* tsip_parser_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_uri.h; sourceTree = ""; }; - ECED6A5610F9A343006B4DC9 /* tsip_ragel_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_ragel_state.h; sourceTree = ""; }; - ECED6A5810F9A343006B4DC9 /* tsip_dialog_message_sm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_message_sm.h; sourceTree = ""; }; - ECED6A5910F9A343006B4DC9 /* tsip_dialog_register_sm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_register_sm.h; sourceTree = ""; }; - ECED6A5A10F9A343006B4DC9 /* tsip_transac_ict_sm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ict_sm.h; sourceTree = ""; }; - ECED6A5B10F9A343006B4DC9 /* tsip_transac_ist_sm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ist_sm.h; sourceTree = ""; }; - ECED6A5C10F9A343006B4DC9 /* tsip_transac_nict_sm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nict_sm.h; sourceTree = ""; }; - ECED6A5D10F9A343006B4DC9 /* tsip_transac_nist_sm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nist_sm.h; sourceTree = ""; }; - ECED6A5F10F9A343006B4DC9 /* tsip_transac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac.h; sourceTree = ""; }; - ECED6A6010F9A343006B4DC9 /* tsip_transac_ict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ict.h; sourceTree = ""; }; - ECED6A6110F9A343006B4DC9 /* tsip_transac_ist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ist.h; sourceTree = ""; }; - ECED6A6210F9A343006B4DC9 /* tsip_transac_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_layer.h; sourceTree = ""; }; - ECED6A6310F9A343006B4DC9 /* tsip_transac_nict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nict.h; sourceTree = ""; }; - ECED6A6410F9A343006B4DC9 /* tsip_transac_nist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nist.h; sourceTree = ""; }; - ECED6A6610F9A343006B4DC9 /* tsip_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport.h; sourceTree = ""; }; - ECED6A6710F9A343006B4DC9 /* tsip_transport_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_layer.h; sourceTree = ""; }; - ECED6AEB10F9A66E006B4DC9 /* thttp_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_auth.c; sourceTree = ""; }; ECED6AFE10F9A93A006B4DC9 /* test */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = test; sourceTree = BUILT_PRODUCTS_DIR; }; ECED6B1010F9A971006B4DC9 /* stdafx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = stdafx.c; path = ../../tinySIP/test/test/stdafx.c; sourceTree = SOURCE_ROOT; }; ECED6B1110F9A971006B4DC9 /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stdafx.h; path = ../../tinySIP/test/test/stdafx.h; sourceTree = SOURCE_ROOT; }; @@ -771,6 +588,509 @@ ECED6B1510F9A971006B4DC9 /* test_stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_stack.h; path = ../../tinySIP/test/test/test_stack.h; sourceTree = SOURCE_ROOT; }; ECED6B1610F9A971006B4DC9 /* test_transac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_transac.h; path = ../../tinySIP/test/test/test_transac.h; sourceTree = SOURCE_ROOT; }; ECED6B1710F9A971006B4DC9 /* test_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_uri.h; path = ../../tinySIP/test/test/test_uri.h; sourceTree = SOURCE_ROOT; }; + ECF4692311346C6A00390CBE /* ice.sm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ice.sm; sourceTree = ""; }; + ECF4692411346C6A00390CBE /* stun.sm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stun.sm; sourceTree = ""; }; + ECF4692511346C6A00390CBE /* turn.sm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = turn.sm; sourceTree = ""; }; + ECF4692811346C6A00390CBE /* tnet_dhcp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp.c; sourceTree = ""; }; + ECF4692911346C6A00390CBE /* tnet_dhcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp.h; sourceTree = ""; }; + ECF4692A11346C6A00390CBE /* tnet_dhcp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_message.c; sourceTree = ""; }; + ECF4692B11346C6A00390CBE /* tnet_dhcp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_message.h; sourceTree = ""; }; + ECF4692C11346C6A00390CBE /* tnet_dhcp_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option.c; sourceTree = ""; }; + ECF4692D11346C6A00390CBE /* tnet_dhcp_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option.h; sourceTree = ""; }; + ECF4692E11346C6A00390CBE /* tnet_dhcp_option_sip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option_sip.c; sourceTree = ""; }; + ECF4692F11346C6A00390CBE /* tnet_dhcp_option_sip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option_sip.h; sourceTree = ""; }; + ECF4693111346C6A00390CBE /* tnet_dhcp6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6.c; sourceTree = ""; }; + ECF4693211346C6A00390CBE /* tnet_dhcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6.h; sourceTree = ""; }; + ECF4693311346C6A00390CBE /* tnet_dhcp6_duid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_duid.c; sourceTree = ""; }; + ECF4693411346C6A00390CBE /* tnet_dhcp6_duid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_duid.h; sourceTree = ""; }; + ECF4693511346C6A00390CBE /* tnet_dhcp6_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_message.c; sourceTree = ""; }; + ECF4693611346C6A00390CBE /* tnet_dhcp6_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_message.h; sourceTree = ""; }; + ECF4693711346C6A00390CBE /* tnet_dhcp6_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_option.c; sourceTree = ""; }; + ECF4693811346C6A00390CBE /* tnet_dhcp6_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_option.h; sourceTree = ""; }; + ECF4693A11346C6A00390CBE /* tnet_dns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns.c; sourceTree = ""; }; + ECF4693B11346C6A00390CBE /* tnet_dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns.h; sourceTree = ""; }; + ECF4693C11346C6A00390CBE /* tnet_dns_a.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_a.c; sourceTree = ""; }; + ECF4693D11346C6A00390CBE /* tnet_dns_a.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_a.h; sourceTree = ""; }; + ECF4693E11346C6A00390CBE /* tnet_dns_aaaa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_aaaa.c; sourceTree = ""; }; + ECF4693F11346C6A00390CBE /* tnet_dns_aaaa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_aaaa.h; sourceTree = ""; }; + ECF4694011346C6A00390CBE /* tnet_dns_cname.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_cname.c; sourceTree = ""; }; + ECF4694111346C6A00390CBE /* tnet_dns_cname.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_cname.h; sourceTree = ""; }; + ECF4694211346C6A00390CBE /* tnet_dns_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_message.c; sourceTree = ""; }; + ECF4694311346C6A00390CBE /* tnet_dns_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_message.h; sourceTree = ""; }; + ECF4694411346C6A00390CBE /* tnet_dns_mx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_mx.c; sourceTree = ""; }; + ECF4694511346C6A00390CBE /* tnet_dns_mx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_mx.h; sourceTree = ""; }; + ECF4694611346C6A00390CBE /* tnet_dns_naptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_naptr.c; sourceTree = ""; }; + ECF4694711346C6A00390CBE /* tnet_dns_naptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_naptr.h; sourceTree = ""; }; + ECF4694811346C6A00390CBE /* tnet_dns_ns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ns.c; sourceTree = ""; }; + ECF4694911346C6A00390CBE /* tnet_dns_ns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ns.h; sourceTree = ""; }; + ECF4694A11346C6A00390CBE /* tnet_dns_opt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_opt.c; sourceTree = ""; }; + ECF4694B11346C6A00390CBE /* tnet_dns_opt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_opt.h; sourceTree = ""; }; + ECF4694C11346C6A00390CBE /* tnet_dns_ptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ptr.c; sourceTree = ""; }; + ECF4694D11346C6A00390CBE /* tnet_dns_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ptr.h; sourceTree = ""; }; + ECF4694E11346C6A00390CBE /* tnet_dns_rr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_rr.c; sourceTree = ""; }; + ECF4694F11346C6A00390CBE /* tnet_dns_rr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_rr.h; sourceTree = ""; }; + ECF4695011346C6A00390CBE /* tnet_dns_soa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_soa.c; sourceTree = ""; }; + ECF4695111346C6A00390CBE /* tnet_dns_soa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_soa.h; sourceTree = ""; }; + ECF4695211346C6A00390CBE /* tnet_dns_srv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_srv.c; sourceTree = ""; }; + ECF4695311346C6A00390CBE /* tnet_dns_srv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_srv.h; sourceTree = ""; }; + ECF4695411346C6A00390CBE /* tnet_dns_txt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_txt.c; sourceTree = ""; }; + ECF4695511346C6A00390CBE /* tnet_dns_txt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_txt.h; sourceTree = ""; }; + ECF4695711346C6A00390CBE /* tnet_ice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_ice.c; sourceTree = ""; }; + ECF4695811346C6A00390CBE /* tnet_ice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_ice.h; sourceTree = ""; }; + ECF4695C11346C6A00390CBE /* tnet_stun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun.c; sourceTree = ""; }; + ECF4695D11346C6A00390CBE /* tnet_stun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun.h; sourceTree = ""; }; + ECF4695E11346C6A00390CBE /* tnet_stun_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_attribute.c; sourceTree = ""; }; + ECF4695F11346C6A00390CBE /* tnet_stun_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_attribute.h; sourceTree = ""; }; + ECF4696011346C6A00390CBE /* tnet_stun_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_message.c; sourceTree = ""; }; + ECF4696111346C6A00390CBE /* tnet_stun_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_message.h; sourceTree = ""; }; + ECF4696211346C6A00390CBE /* tinyNET_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyNET_config.h; sourceTree = ""; }; + ECF4696311346C6A00390CBE /* tnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet.c; sourceTree = ""; }; + ECF4696411346C6A00390CBE /* tnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet.h; sourceTree = ""; }; + ECF4696511346C6A00390CBE /* tnet_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_auth.c; sourceTree = ""; }; + ECF4696611346C6A00390CBE /* tnet_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_auth.h; sourceTree = ""; }; + ECF4696711346C6A00390CBE /* tnet_hardwares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_hardwares.h; sourceTree = ""; }; + ECF4696811346C6A00390CBE /* tnet_nat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_nat.c; sourceTree = ""; }; + ECF4696911346C6A00390CBE /* tnet_nat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_nat.h; sourceTree = ""; }; + ECF4696A11346C6A00390CBE /* tnet_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_poll.c; sourceTree = ""; }; + ECF4696B11346C6A00390CBE /* tnet_poll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_poll.h; sourceTree = ""; }; + ECF4696C11346C6A00390CBE /* tnet_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_proto.h; sourceTree = ""; }; + ECF4696D11346C6A00390CBE /* tnet_socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_socket.c; sourceTree = ""; }; + ECF4696E11346C6A00390CBE /* tnet_socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_socket.h; sourceTree = ""; }; + ECF4696F11346C6A00390CBE /* tnet_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport.c; sourceTree = ""; }; + ECF4697011346C6A00390CBE /* tnet_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_transport.h; sourceTree = ""; }; + ECF4697111346C6A00390CBE /* tnet_transport_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_poll.c; sourceTree = ""; }; + ECF4697211346C6A00390CBE /* tnet_transport_win32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_win32.c; sourceTree = ""; }; + ECF4697311346C6A00390CBE /* tnet_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_types.h; sourceTree = ""; }; + ECF4697411346C6A00390CBE /* tnet_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_utils.c; sourceTree = ""; }; + ECF4697511346C6A00390CBE /* tnet_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_utils.h; sourceTree = ""; }; + ECF4697711346C6A00390CBE /* tnet_turn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn.c; sourceTree = ""; }; + ECF4697811346C6A00390CBE /* tnet_turn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn.h; sourceTree = ""; }; + ECF4697911346C6A00390CBE /* tnet_turn_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_attribute.c; sourceTree = ""; }; + ECF4697A11346C6A00390CBE /* tnet_turn_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_attribute.h; sourceTree = ""; }; + ECF4697B11346C6A00390CBE /* tnet_turn_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_message.c; sourceTree = ""; }; + ECF4697C11346C6A00390CBE /* tnet_turn_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_message.h; sourceTree = ""; }; + ECF46A1D1134737200390CBE /* tsk_fsm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_fsm.c; path = ../../tinySAK/src/tsk_fsm.c; sourceTree = SOURCE_ROOT; }; + ECF46A1E1134737200390CBE /* tsk_fsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_fsm.h; path = ../../tinySAK/src/tsk_fsm.h; sourceTree = SOURCE_ROOT; }; + ECF46A1F1134737200390CBE /* tsk_ppfcs32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_ppfcs32.c; path = ../../tinySAK/src/tsk_ppfcs32.c; sourceTree = SOURCE_ROOT; }; + ECF46A201134737200390CBE /* tsk_ppfcs32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_ppfcs32.h; path = ../../tinySAK/src/tsk_ppfcs32.h; sourceTree = SOURCE_ROOT; }; + ECF46A211134737200390CBE /* tsk_ragel_state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_ragel_state.c; path = ../../tinySAK/src/tsk_ragel_state.c; sourceTree = SOURCE_ROOT; }; + ECF46A221134737200390CBE /* tsk_ragel_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_ragel_state.h; path = ../../tinySAK/src/tsk_ragel_state.h; sourceTree = SOURCE_ROOT; }; + ECF46A231134737200390CBE /* tsk_uuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_uuid.c; path = ../../tinySAK/src/tsk_uuid.c; sourceTree = SOURCE_ROOT; }; + ECF46A241134737200390CBE /* tsk_uuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_uuid.h; path = ../../tinySAK/src/tsk_uuid.h; sourceTree = SOURCE_ROOT; }; + ECF46A32113473CC00390CBE /* http.abnf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = http.abnf; sourceTree = ""; }; + ECF46A33113473CC00390CBE /* httpauth.abnf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = httpauth.abnf; sourceTree = ""; }; + ECF46A34113473CC00390CBE /* uri.abnf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uri.abnf; sourceTree = ""; }; + ECF46A36113473CC00390CBE /* thttp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp.h; sourceTree = ""; }; + ECF46A39113473CC00390CBE /* thttp_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_auth.h; sourceTree = ""; }; + ECF46A3B113473CC00390CBE /* thttp_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header.h; sourceTree = ""; }; + ECF46A3C113473CC00390CBE /* thttp_header_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Authorization.h; sourceTree = ""; }; + ECF46A3D113473CC00390CBE /* thttp_header_Content_Length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Content_Length.h; sourceTree = ""; }; + ECF46A3E113473CC00390CBE /* thttp_header_Content_Type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Content_Type.h; sourceTree = ""; }; + ECF46A3F113473CC00390CBE /* thttp_header_Proxy_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Proxy_Authenticate.h; sourceTree = ""; }; + ECF46A40113473CC00390CBE /* thttp_header_WWW_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_WWW_Authenticate.h; sourceTree = ""; }; + ECF46A42113473CC00390CBE /* thttp_parser_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_header.h; sourceTree = ""; }; + ECF46A43113473CC00390CBE /* thttp_parser_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_message.h; sourceTree = ""; }; + ECF46A44113473CC00390CBE /* thttp_parser_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_url.h; sourceTree = ""; }; + ECF46A45113473CC00390CBE /* thttp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_message.h; sourceTree = ""; }; + ECF46A46113473CC00390CBE /* thttp_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_url.h; sourceTree = ""; }; + ECF46A47113473CC00390CBE /* tinyhttp_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyhttp_config.h; sourceTree = ""; }; + ECF46A49113473CC00390CBE /* thttp_machine_header.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_machine_header.rl; sourceTree = ""; }; + ECF46A4A113473CC00390CBE /* thttp_machine_message.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_machine_message.rl; sourceTree = ""; }; + ECF46A4B113473CC00390CBE /* thttp_machine_utils.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_machine_utils.rl; sourceTree = ""; }; + ECF46A4C113473CC00390CBE /* thttp_parser_header.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header.rl; sourceTree = ""; }; + ECF46A4D113473CC00390CBE /* thttp_parser_header_Authorization.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header_Authorization.rl; sourceTree = ""; }; + ECF46A4E113473CC00390CBE /* thttp_parser_header_Content_Length.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header_Content_Length.rl; sourceTree = ""; }; + ECF46A4F113473CC00390CBE /* thttp_parser_header_Content_Type.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header_Content_Type.rl; sourceTree = ""; }; + ECF46A50113473CC00390CBE /* thttp_parser_header_WWW_Authenticate.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header_WWW_Authenticate.rl; sourceTree = ""; }; + ECF46A51113473CC00390CBE /* thttp_parser_message.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_message.rl; sourceTree = ""; }; + ECF46A52113473CC00390CBE /* thttp_parser_url.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_url.rl; sourceTree = ""; }; + ECF46A53113473CC00390CBE /* ragel.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = ragel.sh; sourceTree = ""; }; + ECF46A56113473CC00390CBE /* thttp_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_auth.c; sourceTree = ""; }; + ECF46A58113473CC00390CBE /* thttp_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header.c; sourceTree = ""; }; + ECF46A59113473CC00390CBE /* thttp_header_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Authorization.c; sourceTree = ""; }; + ECF46A5A113473CC00390CBE /* thttp_header_Content_Length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Length.c; sourceTree = ""; }; + ECF46A5B113473CC00390CBE /* thttp_header_Content_Type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Type.c; sourceTree = ""; }; + ECF46A5C113473CC00390CBE /* thttp_header_Proxy_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Proxy_Authenticate.c; sourceTree = ""; }; + ECF46A5D113473CC00390CBE /* thttp_header_WWW_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_WWW_Authenticate.c; sourceTree = ""; }; + ECF46A60113473CC00390CBE /* thttp_parser_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_header.c; sourceTree = ""; }; + ECF46A61113473CC00390CBE /* thttp_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_message.c; sourceTree = ""; }; + ECF46A62113473CC00390CBE /* thttp_parser_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_url.c; sourceTree = ""; }; + ECF46A63113473CC00390CBE /* thttp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp.c; sourceTree = ""; }; + ECF46A64113473CC00390CBE /* thttp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_message.c; sourceTree = ""; }; + ECF46A65113473CC00390CBE /* thttp_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_url.c; sourceTree = ""; }; + ECF46AA91134755E00390CBE /* tsip_api_invite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_invite.h; sourceTree = ""; }; + ECF46AAA1134755E00390CBE /* tsip_api_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_message.h; sourceTree = ""; }; + ECF46AAB1134755E00390CBE /* tsip_api_publish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_publish.h; sourceTree = ""; }; + ECF46AAC1134755E00390CBE /* tsip_api_register.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_register.h; sourceTree = ""; }; + ECF46AAD1134755E00390CBE /* tsip_api_subscribe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_subscribe.h; sourceTree = ""; }; + ECF46AAF1134755E00390CBE /* tsip_challenge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_challenge.h; sourceTree = ""; }; + ECF46AB01134755E00390CBE /* tsip_milenage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_milenage.h; sourceTree = ""; }; + ECF46AB11134755E00390CBE /* tsip_rijndael.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_rijndael.h; sourceTree = ""; }; + ECF46AB31134755E00390CBE /* tsip_dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog.h; sourceTree = ""; }; + ECF46AB41134755E00390CBE /* tsip_dialog_invite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_invite.h; sourceTree = ""; }; + ECF46AB51134755E00390CBE /* tsip_dialog_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_layer.h; sourceTree = ""; }; + ECF46AB61134755E00390CBE /* tsip_dialog_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_message.h; sourceTree = ""; }; + ECF46AB71134755E00390CBE /* tsip_dialog_register.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_register.h; sourceTree = ""; }; + ECF46AB81134755E00390CBE /* tsip_dialog_subscribe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_subscribe.h; sourceTree = ""; }; + ECF46ABA1134755E00390CBE /* tsip_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header.h; sourceTree = ""; }; + ECF46ABB1134755E00390CBE /* tsip_header_accept.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_accept.h; sourceTree = ""; }; + ECF46ABC1134755E00390CBE /* tsip_header_Accept_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Contact.h; sourceTree = ""; }; + ECF46ABD1134755E00390CBE /* tsip_header_Accept_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Encoding.h; sourceTree = ""; }; + ECF46ABE1134755E00390CBE /* tsip_header_Accept_Language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Language.h; sourceTree = ""; }; + ECF46ABF1134755E00390CBE /* tsip_header_Accept_Resource_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Resource_Priority.h; sourceTree = ""; }; + ECF46AC01134755E00390CBE /* tsip_header_Alert_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Alert_Info.h; sourceTree = ""; }; + ECF46AC11134755E00390CBE /* tsip_header_Allow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Allow.h; sourceTree = ""; }; + ECF46AC21134755E00390CBE /* tsip_header_Allow_Events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Allow_Events.h; sourceTree = ""; }; + ECF46AC31134755E00390CBE /* tsip_header_Authentication_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Authentication_Info.h; sourceTree = ""; }; + ECF46AC41134755E00390CBE /* tsip_header_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Authorization.h; sourceTree = ""; }; + ECF46AC51134755E00390CBE /* tsip_header_Call_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Call_ID.h; sourceTree = ""; }; + ECF46AC61134755E00390CBE /* tsip_header_Call_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Call_Info.h; sourceTree = ""; }; + ECF46AC71134755E00390CBE /* tsip_header_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Contact.h; sourceTree = ""; }; + ECF46AC81134755E00390CBE /* tsip_header_Content_Disposition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Disposition.h; sourceTree = ""; }; + ECF46AC91134755E00390CBE /* tsip_header_Content_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Encoding.h; sourceTree = ""; }; + ECF46ACA1134755E00390CBE /* tsip_header_Content_Language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Language.h; sourceTree = ""; }; + ECF46ACB1134755E00390CBE /* tsip_header_Content_Length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Length.h; sourceTree = ""; }; + ECF46ACC1134755E00390CBE /* tsip_header_Content_Type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Type.h; sourceTree = ""; }; + ECF46ACD1134755E00390CBE /* tsip_header_CSeq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_CSeq.h; sourceTree = ""; }; + ECF46ACE1134755E00390CBE /* tsip_header_Date.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Date.h; sourceTree = ""; }; + ECF46ACF1134755E00390CBE /* tsip_header_Error_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Error_Info.h; sourceTree = ""; }; + ECF46AD01134755E00390CBE /* tsip_header_Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Event.h; sourceTree = ""; }; + ECF46AD11134755E00390CBE /* tsip_header_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Expires.h; sourceTree = ""; }; + ECF46AD21134755E00390CBE /* tsip_header_From.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_From.h; sourceTree = ""; }; + ECF46AD31134755E00390CBE /* tsip_header_History_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_History_Info.h; sourceTree = ""; }; + ECF46AD41134755E00390CBE /* tsip_header_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Identity.h; sourceTree = ""; }; + ECF46AD51134755E00390CBE /* tsip_header_Identity_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Identity_Info.h; sourceTree = ""; }; + ECF46AD61134755E00390CBE /* tsip_header_In_Reply_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_In_Reply_To.h; sourceTree = ""; }; + ECF46AD71134755E00390CBE /* tsip_header_Join.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Join.h; sourceTree = ""; }; + ECF46AD81134755E00390CBE /* tsip_header_Max_Forwards.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Max_Forwards.h; sourceTree = ""; }; + ECF46AD91134755E00390CBE /* tsip_header_MIME_Version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_MIME_Version.h; sourceTree = ""; }; + ECF46ADA1134755E00390CBE /* tsip_header_Min_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Min_Expires.h; sourceTree = ""; }; + ECF46ADB1134755E00390CBE /* tsip_header_Min_SE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Min_SE.h; sourceTree = ""; }; + ECF46ADC1134755E00390CBE /* tsip_header_Organization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Organization.h; sourceTree = ""; }; + ECF46ADD1134755E00390CBE /* tsip_header_P_Access_Network_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Access_Network_Info.h; sourceTree = ""; }; + ECF46ADE1134755E00390CBE /* tsip_header_P_Answer_State.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Answer_State.h; sourceTree = ""; }; + ECF46ADF1134755E00390CBE /* tsip_header_P_Asserted_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Asserted_Identity.h; sourceTree = ""; }; + ECF46AE01134755E00390CBE /* tsip_header_P_Associated_URI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Associated_URI.h; sourceTree = ""; }; + ECF46AE11134755E00390CBE /* tsip_header_P_Called_Party_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Called_Party_ID.h; sourceTree = ""; }; + ECF46AE21134755E00390CBE /* tsip_header_P_Charging_Function_Addresses.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Charging_Function_Addresses.h; sourceTree = ""; }; + ECF46AE31134755E00390CBE /* tsip_header_P_Charging_Vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Charging_Vector.h; sourceTree = ""; }; + ECF46AE41134755E00390CBE /* tsip_header_P_DCS_Billing_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_Billing_Info.h; sourceTree = ""; }; + ECF46AE51134755E00390CBE /* tsip_header_P_DCS_LAES.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_LAES.h; sourceTree = ""; }; + ECF46AE61134755E00390CBE /* tsip_header_P_DCS_OSPS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_OSPS.h; sourceTree = ""; }; + ECF46AE71134755E00390CBE /* tsip_header_P_DCS_Redirect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_Redirect.h; sourceTree = ""; }; + ECF46AE81134755E00390CBE /* tsip_header_P_DCS_Trace_Party_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_Trace_Party_ID.h; sourceTree = ""; }; + ECF46AE91134755E00390CBE /* tsip_header_P_Early_Media.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Early_Media.h; sourceTree = ""; }; + ECF46AEA1134755E00390CBE /* tsip_header_P_Media_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Media_Authorization.h; sourceTree = ""; }; + ECF46AEB1134755E00390CBE /* tsip_header_P_Preferred_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Preferred_Identity.h; sourceTree = ""; }; + ECF46AEC1134755E00390CBE /* tsip_header_P_Profile_Key.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Profile_Key.h; sourceTree = ""; }; + ECF46AED1134755E00390CBE /* tsip_header_P_User_Database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_User_Database.h; sourceTree = ""; }; + ECF46AEE1134755E00390CBE /* tsip_header_P_Visited_Network_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Visited_Network_ID.h; sourceTree = ""; }; + ECF46AEF1134755E00390CBE /* tsip_header_Path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Path.h; sourceTree = ""; }; + ECF46AF01134755E00390CBE /* tsip_header_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Priority.h; sourceTree = ""; }; + ECF46AF11134755E00390CBE /* tsip_header_Privacy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Privacy.h; sourceTree = ""; }; + ECF46AF21134755E00390CBE /* tsip_header_Proxy_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Authenticate.h; sourceTree = ""; }; + ECF46AF31134755E00390CBE /* tsip_header_Proxy_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Authorization.h; sourceTree = ""; }; + ECF46AF41134755E00390CBE /* tsip_header_Proxy_Require.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Require.h; sourceTree = ""; }; + ECF46AF51134755E00390CBE /* tsip_header_RAck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_RAck.h; sourceTree = ""; }; + ECF46AF61134755E00390CBE /* tsip_header_Reason.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reason.h; sourceTree = ""; }; + ECF46AF71134755E00390CBE /* tsip_header_Record_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Record_Route.h; sourceTree = ""; }; + ECF46AF81134755E00390CBE /* tsip_header_Refer_Sub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Refer_Sub.h; sourceTree = ""; }; + ECF46AF91134755E00390CBE /* tsip_header_Refer_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Refer_To.h; sourceTree = ""; }; + ECF46AFA1134755E00390CBE /* tsip_header_Referred_By.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Referred_By.h; sourceTree = ""; }; + ECF46AFB1134755E00390CBE /* tsip_header_Reject_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reject_Contact.h; sourceTree = ""; }; + ECF46AFC1134755E00390CBE /* tsip_header_Replaces.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Replaces.h; sourceTree = ""; }; + ECF46AFD1134755E00390CBE /* tsip_header_Reply_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reply_To.h; sourceTree = ""; }; + ECF46AFE1134755E00390CBE /* tsip_header_Request_Disposition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Request_Disposition.h; sourceTree = ""; }; + ECF46AFF1134755E00390CBE /* tsip_header_Require.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Require.h; sourceTree = ""; }; + ECF46B001134755E00390CBE /* tsip_header_Resource_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Resource_Priority.h; sourceTree = ""; }; + ECF46B011134755E00390CBE /* tsip_header_Retry_After.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Retry_After.h; sourceTree = ""; }; + ECF46B021134755E00390CBE /* tsip_header_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Route.h; sourceTree = ""; }; + ECF46B031134755E00390CBE /* tsip_header_RSeq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_RSeq.h; sourceTree = ""; }; + ECF46B041134755E00390CBE /* tsip_header_Security_Client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Client.h; sourceTree = ""; }; + ECF46B051134755E00390CBE /* tsip_header_Security_Server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Server.h; sourceTree = ""; }; + ECF46B061134755E00390CBE /* tsip_header_Security_Verify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Verify.h; sourceTree = ""; }; + ECF46B071134755E00390CBE /* tsip_header_Server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Server.h; sourceTree = ""; }; + ECF46B081134755E00390CBE /* tsip_header_Service_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Service_Route.h; sourceTree = ""; }; + ECF46B091134755E00390CBE /* tsip_header_Session_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Session_Expires.h; sourceTree = ""; }; + ECF46B0A1134755E00390CBE /* tsip_header_SIP_ETag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_SIP_ETag.h; sourceTree = ""; }; + ECF46B0B1134755E00390CBE /* tsip_header_SIP_If_Match.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_SIP_If_Match.h; sourceTree = ""; }; + ECF46B0C1134755E00390CBE /* tsip_header_Subject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Subject.h; sourceTree = ""; }; + ECF46B0D1134755E00390CBE /* tsip_header_Subscription_State.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Subscription_State.h; sourceTree = ""; }; + ECF46B0E1134755E00390CBE /* tsip_header_Supported.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Supported.h; sourceTree = ""; }; + ECF46B0F1134755E00390CBE /* tsip_header_Target_Dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Target_Dialog.h; sourceTree = ""; }; + ECF46B101134755E00390CBE /* tsip_header_Timestamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Timestamp.h; sourceTree = ""; }; + ECF46B111134755E00390CBE /* tsip_header_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_To.h; sourceTree = ""; }; + ECF46B121134755E00390CBE /* tsip_header_Unsupported.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Unsupported.h; sourceTree = ""; }; + ECF46B131134755E00390CBE /* tsip_header_User_Agent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_User_Agent.h; sourceTree = ""; }; + ECF46B141134755E00390CBE /* tsip_header_Via.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Via.h; sourceTree = ""; }; + ECF46B151134755E00390CBE /* tsip_header_Warning.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Warning.h; sourceTree = ""; }; + ECF46B161134755E00390CBE /* tsip_header_WWW_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_WWW_Authenticate.h; sourceTree = ""; }; + ECF46B171134755E00390CBE /* tsip_headers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_headers.h; sourceTree = ""; }; + ECF46B191134755E00390CBE /* tsip_parser_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_header.h; sourceTree = ""; }; + ECF46B1A1134755E00390CBE /* tsip_parser_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_message.h; sourceTree = ""; }; + ECF46B1B1134755E00390CBE /* tsip_parser_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_uri.h; sourceTree = ""; }; + ECF46B1D1134755E00390CBE /* tsip_transac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac.h; sourceTree = ""; }; + ECF46B1E1134755E00390CBE /* tsip_transac_ict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ict.h; sourceTree = ""; }; + ECF46B1F1134755E00390CBE /* tsip_transac_ist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ist.h; sourceTree = ""; }; + ECF46B201134755E00390CBE /* tsip_transac_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_layer.h; sourceTree = ""; }; + ECF46B211134755E00390CBE /* tsip_transac_nict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nict.h; sourceTree = ""; }; + ECF46B221134755E00390CBE /* tsip_transac_nist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nist.h; sourceTree = ""; }; + ECF46B241134755E00390CBE /* tsip_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport.h; sourceTree = ""; }; + ECF46B251134755E00390CBE /* tsip_transport_ipsec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_ipsec.h; sourceTree = ""; }; + ECF46B261134755E00390CBE /* tsip_transport_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_layer.h; sourceTree = ""; }; + ECF46B271134755E00390CBE /* tsip_event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_event.h; sourceTree = ""; }; + ECF46B281134755E00390CBE /* tsip_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_message.h; sourceTree = ""; }; + ECF46B291134755E00390CBE /* tsip_operation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_operation.h; sourceTree = ""; }; + ECF46B2A1134755E00390CBE /* tsip_timers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_timers.h; sourceTree = ""; }; + ECF46B2B1134755E00390CBE /* tsip_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_uri.h; sourceTree = ""; }; + ECF46B2C1134755E00390CBE /* tinysip_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinysip_config.h; sourceTree = ""; }; + ECF46B2D1134755E00390CBE /* tsip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip.h; sourceTree = ""; }; + ECF46B2F1134755E00390CBE /* tsip_machine_header.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_machine_header.rl; sourceTree = ""; }; + ECF46B301134755E00390CBE /* tsip_machine_message.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_machine_message.rl; sourceTree = ""; }; + ECF46B311134755E00390CBE /* tsip_machine_utils.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_machine_utils.rl; sourceTree = ""; }; + ECF46B321134755E00390CBE /* tsip_parser_header.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header.rl; sourceTree = ""; }; + ECF46B331134755E00390CBE /* tsip_parser_header_Accept_Contact.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Accept_Contact.rl; sourceTree = ""; }; + ECF46B341134755E00390CBE /* tsip_parser_header_Accept_Encoding.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Accept_Encoding.rl; sourceTree = ""; }; + ECF46B351134755E00390CBE /* tsip_parser_header_Accept_Language.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Accept_Language.rl; sourceTree = ""; }; + ECF46B361134755E00390CBE /* tsip_parser_header_Accept_Resource_Priority.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Accept_Resource_Priority.rl; sourceTree = ""; }; + ECF46B371134755E00390CBE /* tsip_parser_header_Alert_Info.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Alert_Info.rl; sourceTree = ""; }; + ECF46B381134755E00390CBE /* tsip_parser_header_Allow.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Allow.rl; sourceTree = ""; }; + ECF46B391134755E00390CBE /* tsip_parser_header_Allow_Events.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Allow_Events.rl; sourceTree = ""; }; + ECF46B3A1134755E00390CBE /* tsip_parser_header_Authentication_Info.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Authentication_Info.rl; sourceTree = ""; }; + ECF46B3B1134755E00390CBE /* tsip_parser_header_Authorization.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Authorization.rl; sourceTree = ""; }; + ECF46B3C1134755E00390CBE /* tsip_parser_header_Call_ID.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Call_ID.rl; sourceTree = ""; }; + ECF46B3D1134755E00390CBE /* tsip_parser_header_Call_Info.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Call_Info.rl; sourceTree = ""; }; + ECF46B3E1134755E00390CBE /* tsip_parser_header_Contact.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Contact.rl; sourceTree = ""; }; + ECF46B3F1134755E00390CBE /* tsip_parser_header_Content_Disposition.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Content_Disposition.rl; sourceTree = ""; }; + ECF46B401134755E00390CBE /* tsip_parser_header_Content_Encoding.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Content_Encoding.rl; sourceTree = ""; }; + ECF46B411134755E00390CBE /* tsip_parser_header_Content_Language.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Content_Language.rl; sourceTree = ""; }; + ECF46B421134755E00390CBE /* tsip_parser_header_Content_Length.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Content_Length.rl; sourceTree = ""; }; + ECF46B431134755E00390CBE /* tsip_parser_header_Content_Type.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Content_Type.rl; sourceTree = ""; }; + ECF46B441134755E00390CBE /* tsip_parser_header_CSeq.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_CSeq.rl; sourceTree = ""; }; + ECF46B451134755E00390CBE /* tsip_parser_header_Date.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Date.rl; sourceTree = ""; }; + ECF46B461134755E00390CBE /* tsip_parser_header_Error_Info.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Error_Info.rl; sourceTree = ""; }; + ECF46B471134755E00390CBE /* tsip_parser_header_Event.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Event.rl; sourceTree = ""; }; + ECF46B481134755E00390CBE /* tsip_parser_header_Expires.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Expires.rl; sourceTree = ""; }; + ECF46B491134755E00390CBE /* tsip_parser_header_From.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_From.rl; sourceTree = ""; }; + ECF46B4A1134755E00390CBE /* tsip_parser_header_History_Info.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_History_Info.rl; sourceTree = ""; }; + ECF46B4B1134755E00390CBE /* tsip_parser_header_Identity.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Identity.rl; sourceTree = ""; }; + ECF46B4C1134755E00390CBE /* tsip_parser_header_Identity_Info.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Identity_Info.rl; sourceTree = ""; }; + ECF46B4D1134755E00390CBE /* tsip_parser_header_In_Reply_To.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_In_Reply_To.rl; sourceTree = ""; }; + ECF46B4E1134755E00390CBE /* tsip_parser_header_Join.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Join.rl; sourceTree = ""; }; + ECF46B4F1134755E00390CBE /* tsip_parser_header_Max_Forwards.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Max_Forwards.rl; sourceTree = ""; }; + ECF46B501134755E00390CBE /* tsip_parser_header_MIME_Version.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_MIME_Version.rl; sourceTree = ""; }; + ECF46B511134755E00390CBE /* tsip_parser_header_Min_Expires.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Min_Expires.rl; sourceTree = ""; }; + ECF46B521134755E00390CBE /* tsip_parser_header_Min_SE.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Min_SE.rl; sourceTree = ""; }; + ECF46B531134755E00390CBE /* tsip_parser_header_Organization.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Organization.rl; sourceTree = ""; }; + ECF46B541134755E00390CBE /* tsip_parser_header_P_Access_Network_Info.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Access_Network_Info.rl; sourceTree = ""; }; + ECF46B551134755E00390CBE /* tsip_parser_header_P_Answer_State.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Answer_State.rl; sourceTree = ""; }; + ECF46B561134755E00390CBE /* tsip_parser_header_P_Asserted_Identity.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Asserted_Identity.rl; sourceTree = ""; }; + ECF46B571134755E00390CBE /* tsip_parser_header_P_Associated_URI.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Associated_URI.rl; sourceTree = ""; }; + ECF46B581134755E00390CBE /* tsip_parser_header_P_Called_Party_ID.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Called_Party_ID.rl; sourceTree = ""; }; + ECF46B591134755E00390CBE /* tsip_parser_header_P_Charging_Function_Addresses.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Charging_Function_Addresses.rl; sourceTree = ""; }; + ECF46B5A1134755E00390CBE /* tsip_parser_header_P_Charging_Vector.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Charging_Vector.rl; sourceTree = ""; }; + ECF46B5B1134755E00390CBE /* tsip_parser_header_P_DCS_Billing_Info.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_DCS_Billing_Info.rl; sourceTree = ""; }; + ECF46B5C1134755E00390CBE /* tsip_parser_header_P_DCS_LAES.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_DCS_LAES.rl; sourceTree = ""; }; + ECF46B5D1134755E00390CBE /* tsip_parser_header_P_DCS_OSPS.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_DCS_OSPS.rl; sourceTree = ""; }; + ECF46B5E1134755E00390CBE /* tsip_parser_header_P_DCS_Redirect.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_DCS_Redirect.rl; sourceTree = ""; }; + ECF46B5F1134755E00390CBE /* tsip_parser_header_P_DCS_Trace_Party_ID.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_DCS_Trace_Party_ID.rl; sourceTree = ""; }; + ECF46B601134755E00390CBE /* tsip_parser_header_P_Early_Media.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Early_Media.rl; sourceTree = ""; }; + ECF46B611134755E00390CBE /* tsip_parser_header_P_Media_Authorization.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Media_Authorization.rl; sourceTree = ""; }; + ECF46B621134755E00390CBE /* tsip_parser_header_P_Preferred_Identity.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Preferred_Identity.rl; sourceTree = ""; }; + ECF46B631134755E00390CBE /* tsip_parser_header_P_Profile_Key.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Profile_Key.rl; sourceTree = ""; }; + ECF46B641134755E00390CBE /* tsip_parser_header_P_User_Database.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_User_Database.rl; sourceTree = ""; }; + ECF46B651134755E00390CBE /* tsip_parser_header_P_Visited_Network_ID.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_P_Visited_Network_ID.rl; sourceTree = ""; }; + ECF46B661134755E00390CBE /* tsip_parser_header_Path.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Path.rl; sourceTree = ""; }; + ECF46B671134755E00390CBE /* tsip_parser_header_Priority.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Priority.rl; sourceTree = ""; }; + ECF46B681134755E00390CBE /* tsip_parser_header_Privacy.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Privacy.rl; sourceTree = ""; }; + ECF46B691134755E00390CBE /* tsip_parser_header_Proxy_Authenticate.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Proxy_Authenticate.rl; sourceTree = ""; }; + ECF46B6A1134755E00390CBE /* tsip_parser_header_Proxy_Authorization.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Proxy_Authorization.rl; sourceTree = ""; }; + ECF46B6B1134755E00390CBE /* tsip_parser_header_Proxy_Require.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Proxy_Require.rl; sourceTree = ""; }; + ECF46B6C1134755E00390CBE /* tsip_parser_header_RAck.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_RAck.rl; sourceTree = ""; }; + ECF46B6D1134755E00390CBE /* tsip_parser_header_Reason.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Reason.rl; sourceTree = ""; }; + ECF46B6E1134755E00390CBE /* tsip_parser_header_Record_Route.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Record_Route.rl; sourceTree = ""; }; + ECF46B6F1134755E00390CBE /* tsip_parser_header_Refer_Sub.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Refer_Sub.rl; sourceTree = ""; }; + ECF46B701134755E00390CBE /* tsip_parser_header_Refer_To.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Refer_To.rl; sourceTree = ""; }; + ECF46B711134755E00390CBE /* tsip_parser_header_Referred_By.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Referred_By.rl; sourceTree = ""; }; + ECF46B721134755E00390CBE /* tsip_parser_header_Reject_Contact.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Reject_Contact.rl; sourceTree = ""; }; + ECF46B731134755E00390CBE /* tsip_parser_header_Replaces.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Replaces.rl; sourceTree = ""; }; + ECF46B741134755E00390CBE /* tsip_parser_header_Reply_To.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Reply_To.rl; sourceTree = ""; }; + ECF46B751134755E00390CBE /* tsip_parser_header_Request_Disposition.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Request_Disposition.rl; sourceTree = ""; }; + ECF46B761134755E00390CBE /* tsip_parser_header_Require.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Require.rl; sourceTree = ""; }; + ECF46B771134755E00390CBE /* tsip_parser_header_Resource_Priority.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Resource_Priority.rl; sourceTree = ""; }; + ECF46B781134755E00390CBE /* tsip_parser_header_Retry_After.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Retry_After.rl; sourceTree = ""; }; + ECF46B791134755E00390CBE /* tsip_parser_header_Route.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Route.rl; sourceTree = ""; }; + ECF46B7A1134755E00390CBE /* tsip_parser_header_RSeq.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_RSeq.rl; sourceTree = ""; }; + ECF46B7B1134755E00390CBE /* tsip_parser_header_Security_Client.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Security_Client.rl; sourceTree = ""; }; + ECF46B7C1134755E00390CBE /* tsip_parser_header_Security_Server.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Security_Server.rl; sourceTree = ""; }; + ECF46B7D1134755E00390CBE /* tsip_parser_header_Security_Verify.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Security_Verify.rl; sourceTree = ""; }; + ECF46B7E1134755E00390CBE /* tsip_parser_header_Server.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Server.rl; sourceTree = ""; }; + ECF46B7F1134755E00390CBE /* tsip_parser_header_Service_Route.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Service_Route.rl; sourceTree = ""; }; + ECF46B801134755E00390CBE /* tsip_parser_header_Session_Expires.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Session_Expires.rl; sourceTree = ""; }; + ECF46B811134755E00390CBE /* tsip_parser_header_SIP_ETag.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_SIP_ETag.rl; sourceTree = ""; }; + ECF46B821134755E00390CBE /* tsip_parser_header_SIP_If_Match.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_SIP_If_Match.rl; sourceTree = ""; }; + ECF46B831134755E00390CBE /* tsip_parser_header_Subject.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Subject.rl; sourceTree = ""; }; + ECF46B841134755E00390CBE /* tsip_parser_header_Subscription_State.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Subscription_State.rl; sourceTree = ""; }; + ECF46B851134755E00390CBE /* tsip_parser_header_Supported.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Supported.rl; sourceTree = ""; }; + ECF46B861134755E00390CBE /* tsip_parser_header_Target_Dialog.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Target_Dialog.rl; sourceTree = ""; }; + ECF46B871134755E00390CBE /* tsip_parser_header_Timestamp.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Timestamp.rl; sourceTree = ""; }; + ECF46B881134755E00390CBE /* tsip_parser_header_To.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_To.rl; sourceTree = ""; }; + ECF46B891134755E00390CBE /* tsip_parser_header_Unsupported.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Unsupported.rl; sourceTree = ""; }; + ECF46B8A1134755E00390CBE /* tsip_parser_header_User_Agent.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_User_Agent.rl; sourceTree = ""; }; + ECF46B8B1134755E00390CBE /* tsip_parser_header_Via.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Via.rl; sourceTree = ""; }; + ECF46B8C1134755E00390CBE /* tsip_parser_header_Warning.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_Warning.rl; sourceTree = ""; }; + ECF46B8D1134755E00390CBE /* tsip_parser_header_WWW_Authenticate.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_header_WWW_Authenticate.rl; sourceTree = ""; }; + ECF46B8E1134755E00390CBE /* tsip_parser_message.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_message.rl; sourceTree = ""; }; + ECF46B8F1134755E00390CBE /* tsip_parser_uri.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tsip_parser_uri.rl; sourceTree = ""; }; + ECF46B961134755E00390CBE /* tsip_api_invite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_invite.c; sourceTree = ""; }; + ECF46B971134755E00390CBE /* tsip_api_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_message.c; sourceTree = ""; }; + ECF46B981134755E00390CBE /* tsip_api_publish.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_publish.c; sourceTree = ""; }; + ECF46B991134755E00390CBE /* tsip_api_register.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_register.c; sourceTree = ""; }; + ECF46B9A1134755E00390CBE /* tsip_api_subscribe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_subscribe.c; sourceTree = ""; }; + ECF46B9C1134755E00390CBE /* tsip_challenge.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_challenge.c; sourceTree = ""; }; + ECF46B9D1134755E00390CBE /* tsip_milenage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_milenage.c; sourceTree = ""; }; + ECF46B9E1134755E00390CBE /* tsip_rijndael.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_rijndael.c; sourceTree = ""; }; + ECF46BA01134755E00390CBE /* tsip_dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog.c; sourceTree = ""; }; + ECF46BA11134755E00390CBE /* tsip_dialog_invite.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_invite.client.c; sourceTree = ""; }; + ECF46BA21134755E00390CBE /* tsip_dialog_invite.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_invite.server.c; sourceTree = ""; }; + ECF46BA31134755E00390CBE /* tsip_dialog_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_layer.c; sourceTree = ""; }; + ECF46BA41134755E00390CBE /* tsip_dialog_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_message.c; sourceTree = ""; }; + ECF46BA51134755E00390CBE /* tsip_dialog_register.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_register.client.c; sourceTree = ""; }; + ECF46BA61134755E00390CBE /* tsip_dialog_register.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_register.server.c; sourceTree = ""; }; + ECF46BA71134755E00390CBE /* tsip_dialog_subscribe.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_subscribe.client.c; sourceTree = ""; }; + ECF46BA81134755E00390CBE /* tsip_dialog_subscribe.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_subscribe.server.c; sourceTree = ""; }; + ECF46BAA1134755E00390CBE /* tsip_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header.c; sourceTree = ""; }; + ECF46BAB1134755E00390CBE /* tsip_header_accept.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_accept.c; sourceTree = ""; }; + ECF46BAC1134755E00390CBE /* tsip_header_Accept_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Contact.c; sourceTree = ""; }; + ECF46BAD1134755E00390CBE /* tsip_header_Accept_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Encoding.c; sourceTree = ""; }; + ECF46BAE1134755E00390CBE /* tsip_header_Accept_Language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Language.c; sourceTree = ""; }; + ECF46BAF1134755E00390CBE /* tsip_header_Accept_Resource_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Resource_Priority.c; sourceTree = ""; }; + ECF46BB01134755E00390CBE /* tsip_header_Alert_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Alert_Info.c; sourceTree = ""; }; + ECF46BB11134755E00390CBE /* tsip_header_Allow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Allow.c; sourceTree = ""; }; + ECF46BB21134755E00390CBE /* tsip_header_Allow_Events.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Allow_Events.c; sourceTree = ""; }; + ECF46BB31134755E00390CBE /* tsip_header_Authentication_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Authentication_Info.c; sourceTree = ""; }; + ECF46BB41134755E00390CBE /* tsip_header_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Authorization.c; sourceTree = ""; }; + ECF46BB51134755E00390CBE /* tsip_header_Call_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Call_ID.c; sourceTree = ""; }; + ECF46BB61134755E00390CBE /* tsip_header_Call_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Call_Info.c; sourceTree = ""; }; + ECF46BB71134755E00390CBE /* tsip_header_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Contact.c; sourceTree = ""; }; + ECF46BB81134755E00390CBE /* tsip_header_Content_Disposition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Disposition.c; sourceTree = ""; }; + ECF46BB91134755E00390CBE /* tsip_header_Content_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Encoding.c; sourceTree = ""; }; + ECF46BBA1134755E00390CBE /* tsip_header_Content_Language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Language.c; sourceTree = ""; }; + ECF46BBB1134755E00390CBE /* tsip_header_Content_Length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Length.c; sourceTree = ""; }; + ECF46BBC1134755E00390CBE /* tsip_header_Content_Type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Type.c; sourceTree = ""; }; + ECF46BBD1134755E00390CBE /* tsip_header_CSeq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_CSeq.c; sourceTree = ""; }; + ECF46BBE1134755E00390CBE /* tsip_header_Date.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Date.c; sourceTree = ""; }; + ECF46BBF1134755E00390CBE /* tsip_header_Error_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Error_Info.c; sourceTree = ""; }; + ECF46BC01134755E00390CBE /* tsip_header_Event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Event.c; sourceTree = ""; }; + ECF46BC11134755E00390CBE /* tsip_header_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Expires.c; sourceTree = ""; }; + ECF46BC21134755E00390CBE /* tsip_header_From.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_From.c; sourceTree = ""; }; + ECF46BC31134755E00390CBE /* tsip_header_History_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_History_Info.c; sourceTree = ""; }; + ECF46BC41134755E00390CBE /* tsip_header_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Identity.c; sourceTree = ""; }; + ECF46BC51134755E00390CBE /* tsip_header_Identity_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Identity_Info.c; sourceTree = ""; }; + ECF46BC61134755E00390CBE /* tsip_header_In_Reply_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_In_Reply_To.c; sourceTree = ""; }; + ECF46BC71134755E00390CBE /* tsip_header_Join.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Join.c; sourceTree = ""; }; + ECF46BC81134755E00390CBE /* tsip_header_Max_Forwards.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Max_Forwards.c; sourceTree = ""; }; + ECF46BC91134755E00390CBE /* tsip_header_MIME_Version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_MIME_Version.c; sourceTree = ""; }; + ECF46BCA1134755E00390CBE /* tsip_header_Min_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Min_Expires.c; sourceTree = ""; }; + ECF46BCB1134755E00390CBE /* tsip_header_Min_SE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Min_SE.c; sourceTree = ""; }; + ECF46BCC1134755E00390CBE /* tsip_header_Organization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Organization.c; sourceTree = ""; }; + ECF46BCD1134755E00390CBE /* tsip_header_P_Access_Network_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Access_Network_Info.c; sourceTree = ""; }; + ECF46BCE1134755E00390CBE /* tsip_header_P_Answer_State.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Answer_State.c; sourceTree = ""; }; + ECF46BCF1134755E00390CBE /* tsip_header_P_Asserted_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Asserted_Identity.c; sourceTree = ""; }; + ECF46BD01134755E00390CBE /* tsip_header_P_Associated_URI.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Associated_URI.c; sourceTree = ""; }; + ECF46BD11134755E00390CBE /* tsip_header_P_Called_Party_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Called_Party_ID.c; sourceTree = ""; }; + ECF46BD21134755E00390CBE /* tsip_header_P_Charging_Function_Addresses.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Charging_Function_Addresses.c; sourceTree = ""; }; + ECF46BD31134755E00390CBE /* tsip_header_P_Charging_Vector.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Charging_Vector.c; sourceTree = ""; }; + ECF46BD41134755E00390CBE /* tsip_header_P_DCS_Billing_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_Billing_Info.c; sourceTree = ""; }; + ECF46BD51134755E00390CBE /* tsip_header_P_DCS_LAES.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_LAES.c; sourceTree = ""; }; + ECF46BD61134755E00390CBE /* tsip_header_P_DCS_OSPS.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_OSPS.c; sourceTree = ""; }; + ECF46BD71134755E00390CBE /* tsip_header_P_DCS_Redirect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_Redirect.c; sourceTree = ""; }; + ECF46BD81134755E00390CBE /* tsip_header_P_DCS_Trace_Party_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_Trace_Party_ID.c; sourceTree = ""; }; + ECF46BD91134755E00390CBE /* tsip_header_P_Early_Media.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Early_Media.c; sourceTree = ""; }; + ECF46BDA1134755E00390CBE /* tsip_header_P_Media_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Media_Authorization.c; sourceTree = ""; }; + ECF46BDB1134755E00390CBE /* tsip_header_P_Preferred_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Preferred_Identity.c; sourceTree = ""; }; + ECF46BDC1134755E00390CBE /* tsip_header_P_Profile_Key.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Profile_Key.c; sourceTree = ""; }; + ECF46BDD1134755E00390CBE /* tsip_header_P_User_Database.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_User_Database.c; sourceTree = ""; }; + ECF46BDE1134755E00390CBE /* tsip_header_P_Visited_Network_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Visited_Network_ID.c; sourceTree = ""; }; + ECF46BDF1134755E00390CBE /* tsip_header_Path.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Path.c; sourceTree = ""; }; + ECF46BE01134755E00390CBE /* tsip_header_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Priority.c; sourceTree = ""; }; + ECF46BE11134755E00390CBE /* tsip_header_Privacy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Privacy.c; sourceTree = ""; }; + ECF46BE21134755E00390CBE /* tsip_header_Proxy_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Authenticate.c; sourceTree = ""; }; + ECF46BE31134755E00390CBE /* tsip_header_Proxy_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Authorization.c; sourceTree = ""; }; + ECF46BE41134755E00390CBE /* tsip_header_Proxy_Require.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Require.c; sourceTree = ""; }; + ECF46BE51134755E00390CBE /* tsip_header_RAck.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_RAck.c; sourceTree = ""; }; + ECF46BE61134755E00390CBE /* tsip_header_Reason.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reason.c; sourceTree = ""; }; + ECF46BE71134755E00390CBE /* tsip_header_Record_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Record_Route.c; sourceTree = ""; }; + ECF46BE81134755E00390CBE /* tsip_header_Refer_Sub.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Refer_Sub.c; sourceTree = ""; }; + ECF46BE91134755E00390CBE /* tsip_header_Refer_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Refer_To.c; sourceTree = ""; }; + ECF46BEA1134755E00390CBE /* tsip_header_Referred_By.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Referred_By.c; sourceTree = ""; }; + ECF46BEB1134755E00390CBE /* tsip_header_Reject_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reject_Contact.c; sourceTree = ""; }; + ECF46BEC1134755E00390CBE /* tsip_header_Replaces.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Replaces.c; sourceTree = ""; }; + ECF46BED1134755E00390CBE /* tsip_header_Reply_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reply_To.c; sourceTree = ""; }; + ECF46BEE1134755E00390CBE /* tsip_header_Request_Disposition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Request_Disposition.c; sourceTree = ""; }; + ECF46BEF1134755E00390CBE /* tsip_header_Require.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Require.c; sourceTree = ""; }; + ECF46BF01134755E00390CBE /* tsip_header_Resource_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Resource_Priority.c; sourceTree = ""; }; + ECF46BF11134755E00390CBE /* tsip_header_Retry_After.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Retry_After.c; sourceTree = ""; }; + ECF46BF21134755E00390CBE /* tsip_header_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Route.c; sourceTree = ""; }; + ECF46BF31134755E00390CBE /* tsip_header_RSeq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_RSeq.c; sourceTree = ""; }; + ECF46BF41134755E00390CBE /* tsip_header_Security_Client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Client.c; sourceTree = ""; }; + ECF46BF51134755E00390CBE /* tsip_header_Security_Server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Server.c; sourceTree = ""; }; + ECF46BF61134755E00390CBE /* tsip_header_Security_Verify.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Verify.c; sourceTree = ""; }; + ECF46BF71134755E00390CBE /* tsip_header_Server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Server.c; sourceTree = ""; }; + ECF46BF81134755E00390CBE /* tsip_header_Service_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Service_Route.c; sourceTree = ""; }; + ECF46BF91134755E00390CBE /* tsip_header_Session_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Session_Expires.c; sourceTree = ""; }; + ECF46BFA1134755E00390CBE /* tsip_header_SIP_ETag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_SIP_ETag.c; sourceTree = ""; }; + ECF46BFB1134755E00390CBE /* tsip_header_SIP_If_Match.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_SIP_If_Match.c; sourceTree = ""; }; + ECF46BFC1134755E00390CBE /* tsip_header_Subject.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Subject.c; sourceTree = ""; }; + ECF46BFD1134755E00390CBE /* tsip_header_Subscription_State.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Subscription_State.c; sourceTree = ""; }; + ECF46BFE1134755E00390CBE /* tsip_header_Supported.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Supported.c; sourceTree = ""; }; + ECF46BFF1134755E00390CBE /* tsip_header_Target_Dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Target_Dialog.c; sourceTree = ""; }; + ECF46C001134755E00390CBE /* tsip_header_Timestamp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Timestamp.c; sourceTree = ""; }; + ECF46C011134755E00390CBE /* tsip_header_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_To.c; sourceTree = ""; }; + ECF46C021134755E00390CBE /* tsip_header_Unsupported.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Unsupported.c; sourceTree = ""; }; + ECF46C031134755E00390CBE /* tsip_header_User_Agent.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_User_Agent.c; sourceTree = ""; }; + ECF46C041134755E00390CBE /* tsip_header_Via.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Via.c; sourceTree = ""; }; + ECF46C051134755E00390CBE /* tsip_header_Warning.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Warning.c; sourceTree = ""; }; + ECF46C061134755E00390CBE /* tsip_header_WWW_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_WWW_Authenticate.c; sourceTree = ""; }; + ECF46C091134755E00390CBE /* tsip_parser_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_header.c; sourceTree = ""; }; + ECF46C0A1134755E00390CBE /* tsip_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_message.c; sourceTree = ""; }; + ECF46C0B1134755E00390CBE /* tsip_parser_uri.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_uri.c; sourceTree = ""; }; + ECF46C0D1134755E00390CBE /* tsip_transac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac.c; sourceTree = ""; }; + ECF46C0E1134755E00390CBE /* tsip_transac_ict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ict.c; sourceTree = ""; }; + ECF46C0F1134755E00390CBE /* tsip_transac_ist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ist.c; sourceTree = ""; }; + ECF46C101134755E00390CBE /* tsip_transac_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_layer.c; sourceTree = ""; }; + ECF46C111134755E00390CBE /* tsip_transac_nict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nict.c; sourceTree = ""; }; + ECF46C121134755E00390CBE /* tsip_transac_nist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nist.c; sourceTree = ""; }; + ECF46C141134755E00390CBE /* tsip_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport.c; sourceTree = ""; }; + ECF46C151134755E00390CBE /* tsip_transport_ipsec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_ipsec.c; sourceTree = ""; }; + ECF46C161134755E00390CBE /* tsip_transport_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_layer.c; sourceTree = ""; }; + ECF46C171134755E00390CBE /* tsip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip.c; sourceTree = ""; }; + ECF46C181134755E00390CBE /* tsip_event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_event.c; sourceTree = ""; }; + ECF46C191134755E00390CBE /* tsip_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_message.c; sourceTree = ""; }; + ECF46C1A1134755E00390CBE /* tsip_operation.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_operation.c; sourceTree = ""; }; + ECF46C1B1134755E00390CBE /* tsip_timers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_timers.c; sourceTree = ""; }; + ECF46C1C1134755E00390CBE /* tsip_uri.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_uri.c; sourceTree = ""; }; + ECF46C201134755E00390CBE /* stdafx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stdafx.c; sourceTree = ""; }; + ECF46C211134755E00390CBE /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = ""; }; + ECF46C221134755E00390CBE /* targetver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = targetver.h; sourceTree = ""; }; + ECF46C231134755E00390CBE /* test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = test.c; sourceTree = ""; }; + ECF46C241134755E00390CBE /* test.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = test.vcproj; sourceTree = ""; }; + ECF46C251134755E00390CBE /* test_sipmessages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_sipmessages.h; sourceTree = ""; }; + ECF46C261134755E00390CBE /* test_stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_stack.h; sourceTree = ""; }; + ECF46C271134755E00390CBE /* test_transac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_transac.h; sourceTree = ""; }; + ECF46C281134755E00390CBE /* test_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_uri.h; sourceTree = ""; }; + ECF46D42113476BD00390CBE /* tinyipsec_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyipsec_config.h; sourceTree = ""; }; + ECF46D43113476BD00390CBE /* tipsec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec.c; sourceTree = ""; }; + ECF46D44113476BD00390CBE /* tipsec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec.h; sourceTree = ""; }; + ECF46D45113476BD00390CBE /* tipsec_common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_common.c; sourceTree = ""; }; + ECF46D46113476BD00390CBE /* tipsec_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_common.h; sourceTree = ""; }; + ECF46D47113476BD00390CBE /* tipsec_racoon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_racoon.c; sourceTree = ""; }; + ECF46D48113476BD00390CBE /* tipsec_racoon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_racoon.h; sourceTree = ""; }; + ECF46D49113476BD00390CBE /* tipsec_vista.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_vista.c; sourceTree = ""; }; + ECF46D4A113476BD00390CBE /* tipsec_vista.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_vista.h; sourceTree = ""; }; + ECF46D4B113476BD00390CBE /* tipsec_xp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_xp.c; sourceTree = ""; }; + ECF46D4C113476BD00390CBE /* tipsec_xp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_xp.h; sourceTree = ""; }; + ECF46DC111347F8100390CBE /* libtinyIPSec.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyIPSec.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -818,46 +1138,33 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + ECF46DBF11347F8100390CBE /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ 08FB7794FE84155DC02AAC07 /* tinySIP */ = { isa = PBXGroup; children = ( + ECF46D40113476BD00390CBE /* tinyIPSec */, + ECF46A941134755E00390CBE /* tinySIP */, + ECF46A30113473CC00390CBE /* tinyHTTP */, + ECF4691E11346C6A00390CBE /* tinyNET */, ECED6B0E10F9A953006B4DC9 /* test */, - ECED68A010F998EB006B4DC9 /* tinyHTTP */, - ECED685F10F997E2006B4DC9 /* tinyNET */, ECED67EB10F996BF006B4DC9 /* tinySAK */, - ECED64B010F995DB006B4DC9 /* smc */, ECED644D10F995B8006B4DC9 /* ragel */, ECED644B10F995A8006B4DC9 /* graph */, ECED644810F99599006B4DC9 /* abnf */, - ECED644710F9957A006B4DC9 /* include */, - 08FB7795FE84155DC02AAC07 /* Source */, 1AB674ADFE9D54B511CA2CBB /* Products */, ); name = tinySIP; sourceTree = ""; }; - 08FB7795FE84155DC02AAC07 /* Source */ = { - isa = PBXGroup; - children = ( - ECED68E010F9A303006B4DC9 /* authentication */, - ECED68E410F9A303006B4DC9 /* dialogs */, - ECED68EE10F9A303006B4DC9 /* headers */, - ECED694C10F9A303006B4DC9 /* parsers */, - ECED695110F9A303006B4DC9 /* smc */, - ECED695E10F9A303006B4DC9 /* transactions */, - ECED696510F9A303006B4DC9 /* transports */, - ECED65D810F99666006B4DC9 /* tsip.c */, - ECED65D910F99666006B4DC9 /* tsip_message.c */, - ECED65DA10F99666006B4DC9 /* tsip_operation.c */, - ECED65DB10F99666006B4DC9 /* tsip_timers.c */, - ECED65DC10F99666006B4DC9 /* tsip_uri.c */, - ); - name = Source; - sourceTree = ""; - }; 1AB674ADFE9D54B511CA2CBB /* Products */ = { isa = PBXGroup; children = ( @@ -866,33 +1173,22 @@ ECED686410F997F2006B4DC9 /* libtinyNET.dylib */, ECED689D10F998E4006B4DC9 /* libtinyHTTP.dylib */, ECED6AFE10F9A93A006B4DC9 /* test */, + ECF46DC111347F8100390CBE /* libtinyIPSec.dylib */, ); name = Products; sourceTree = ""; }; - ECED644710F9957A006B4DC9 /* include */ = { - isa = PBXGroup; - children = ( - ECED69E810F9A343006B4DC9 /* authentication */, - ECED69EC10F9A343006B4DC9 /* dialogs */, - ECED69F310F9A343006B4DC9 /* headers */, - ECED6A5210F9A343006B4DC9 /* parsers */, - ECED6A5710F9A343006B4DC9 /* smc */, - ECED6A5E10F9A343006B4DC9 /* transactions */, - ECED6A6510F9A343006B4DC9 /* transports */, - ECED654010F99647006B4DC9 /* tsip_message.h */, - ECED685A10F997BF006B4DC9 /* tinysip_config.h */, - ECED654110F99647006B4DC9 /* tsip_operation.h */, - ECED685B10F997BF006B4DC9 /* tsip.h */, - ECED654210F99647006B4DC9 /* tsip_timers.h */, - ECED654310F99647006B4DC9 /* tsip_uri.h */, - ); - name = include; - sourceTree = ""; - }; ECED67EB10F996BF006B4DC9 /* tinySAK */ = { isa = PBXGroup; children = ( + ECF46A1D1134737200390CBE /* tsk_fsm.c */, + ECF46A1E1134737200390CBE /* tsk_fsm.h */, + ECF46A1F1134737200390CBE /* tsk_ppfcs32.c */, + ECF46A201134737200390CBE /* tsk_ppfcs32.h */, + ECF46A211134737200390CBE /* tsk_ragel_state.c */, + ECF46A221134737200390CBE /* tsk_ragel_state.h */, + ECF46A231134737200390CBE /* tsk_uuid.c */, + ECF46A241134737200390CBE /* tsk_uuid.h */, ECED67EE10F996F6006B4DC9 /* tinySAK_config.h */, ECED67EF10F996F6006B4DC9 /* tsk.c */, ECED67F010F996F6006B4DC9 /* tsk.h */, @@ -950,462 +1246,6 @@ name = tinySAK; sourceTree = ""; }; - ECED685F10F997E2006B4DC9 /* tinyNET */ = { - isa = PBXGroup; - children = ( - ECED688B10F99829006B4DC9 /* source */, - ECED688A10F99823006B4DC9 /* include */, - ); - name = tinyNET; - sourceTree = ""; - }; - ECED688A10F99823006B4DC9 /* include */ = { - isa = PBXGroup; - children = ( - ECED686D10F99811006B4DC9 /* tnet_auth.h */, - ECED686910F99811006B4DC9 /* tinyNET_config.h */, - ECED686B10F99811006B4DC9 /* tnet.h */, - ECED686F10F99811006B4DC9 /* tnet_poll.h */, - ECED687110F99811006B4DC9 /* tnet_socket.h */, - ECED687310F99811006B4DC9 /* tnet_transport.h */, - ECED687610F99811006B4DC9 /* tnet_types.h */, - ECED687810F99811006B4DC9 /* tnet_utils.h */, - ); - name = include; - sourceTree = ""; - }; - ECED688B10F99829006B4DC9 /* source */ = { - isa = PBXGroup; - children = ( - ECED686E10F99811006B4DC9 /* tnet_poll.c */, - ECED686A10F99811006B4DC9 /* tnet.c */, - ECED686C10F99811006B4DC9 /* tnet_auth.c */, - ECED687010F99811006B4DC9 /* tnet_socket.c */, - ECED687210F99811006B4DC9 /* tnet_transport.c */, - ECED687410F99811006B4DC9 /* tnet_transport_poll.c */, - ECED687510F99811006B4DC9 /* tnet_transport_win32.c */, - ECED687710F99811006B4DC9 /* tnet_utils.c */, - ); - name = source; - sourceTree = ""; - }; - ECED68A010F998EB006B4DC9 /* tinyHTTP */ = { - isa = PBXGroup; - children = ( - ECED68A310F998FC006B4DC9 /* source */, - ECED68A210F998F7006B4DC9 /* include */, - ); - name = tinyHTTP; - sourceTree = ""; - }; - ECED68A210F998F7006B4DC9 /* include */ = { - isa = PBXGroup; - children = ( - ECED68AF10F9992F006B4DC9 /* thttp.h */, - ECED68B010F9992F006B4DC9 /* tinyhttp_config.h */, - ECED68A410F9991C006B4DC9 /* auth */, - ECED68A710F9991C006B4DC9 /* headers */, - ECED68A910F9991C006B4DC9 /* parsers */, - ECED68AB10F9991C006B4DC9 /* thttp_message.h */, - ECED68AC10F9991C006B4DC9 /* thttp_url.h */, - ); - name = include; - sourceTree = ""; - }; - ECED68A310F998FC006B4DC9 /* source */ = { - isa = PBXGroup; - children = ( - ECED6AEA10F9A66E006B4DC9 /* auth */, - ECED6AEC10F9A66E006B4DC9 /* headers */, - ECED6AED10F9A66E006B4DC9 /* parsers */, - ECED68BA10F99944006B4DC9 /* thttp.c */, - ECED68BB10F99944006B4DC9 /* thttp_message.c */, - ECED68BC10F99944006B4DC9 /* thttp_utl.c */, - ); - name = source; - sourceTree = ""; - }; - ECED68E010F9A303006B4DC9 /* authentication */ = { - isa = PBXGroup; - children = ( - ECED68E110F9A303006B4DC9 /* tsip_challenge.c */, - ECED68E210F9A303006B4DC9 /* tsip_milenage.c */, - ECED68E310F9A303006B4DC9 /* tsip_rijndael.c */, - ); - name = authentication; - path = ../../tinySIP/source/authentication; - sourceTree = SOURCE_ROOT; - }; - ECED68E410F9A303006B4DC9 /* dialogs */ = { - isa = PBXGroup; - children = ( - ECED68E510F9A303006B4DC9 /* tsip_dialog.c */, - ECED68E610F9A303006B4DC9 /* tsip_dialog_invite.client.c */, - ECED68E710F9A303006B4DC9 /* tsip_dialog_invite.server.c */, - ECED68E810F9A303006B4DC9 /* tsip_dialog_layer.c */, - ECED68E910F9A303006B4DC9 /* tsip_dialog_message.c */, - ECED68EA10F9A303006B4DC9 /* tsip_dialog_register.client.c */, - ECED68EB10F9A303006B4DC9 /* tsip_dialog_register.server.c */, - ECED68EC10F9A303006B4DC9 /* tsip_dialog_subscribe.client.c */, - ECED68ED10F9A303006B4DC9 /* tsip_dialog_subscribe.server.c */, - ); - name = dialogs; - path = ../../tinySIP/source/dialogs; - sourceTree = SOURCE_ROOT; - }; - ECED68EE10F9A303006B4DC9 /* headers */ = { - isa = PBXGroup; - children = ( - ECED68EF10F9A303006B4DC9 /* tsip_header.c */, - ECED68F010F9A303006B4DC9 /* tsip_header_accept.c */, - ECED68F110F9A303006B4DC9 /* tsip_header_Accept_Contact.c */, - ECED68F210F9A303006B4DC9 /* tsip_header_Accept_Encoding.c */, - ECED68F310F9A303006B4DC9 /* tsip_header_Accept_Language.c */, - ECED68F410F9A303006B4DC9 /* tsip_header_Accept_Resource_Priority.c */, - ECED68F510F9A303006B4DC9 /* tsip_header_Alert_Info.c */, - ECED68F610F9A303006B4DC9 /* tsip_header_Allow.c */, - ECED68F710F9A303006B4DC9 /* tsip_header_Allow_Events.c */, - ECED68F810F9A303006B4DC9 /* tsip_header_Authentication_Info.c */, - ECED68F910F9A303006B4DC9 /* tsip_header_Authorization.c */, - ECED68FA10F9A303006B4DC9 /* tsip_header_Call_ID.c */, - ECED68FB10F9A303006B4DC9 /* tsip_header_Call_Info.c */, - ECED68FC10F9A303006B4DC9 /* tsip_header_Contact.c */, - ECED68FD10F9A303006B4DC9 /* tsip_header_Content_Disposition.c */, - ECED68FE10F9A303006B4DC9 /* tsip_header_Content_Encoding.c */, - ECED68FF10F9A303006B4DC9 /* tsip_header_Content_Language.c */, - ECED690010F9A303006B4DC9 /* tsip_header_Content_Length.c */, - ECED690110F9A303006B4DC9 /* tsip_header_Content_Type.c */, - ECED690210F9A303006B4DC9 /* tsip_header_CSeq.c */, - ECED690310F9A303006B4DC9 /* tsip_header_Date.c */, - ECED690410F9A303006B4DC9 /* tsip_header_Error_Info.c */, - ECED690510F9A303006B4DC9 /* tsip_header_Event.c */, - ECED690610F9A303006B4DC9 /* tsip_header_Expires.c */, - ECED690710F9A303006B4DC9 /* tsip_header_From.c */, - ECED690810F9A303006B4DC9 /* tsip_header_History_Info.c */, - ECED690910F9A303006B4DC9 /* tsip_header_Identity.c */, - ECED690A10F9A303006B4DC9 /* tsip_header_Identity_Info.c */, - ECED690B10F9A303006B4DC9 /* tsip_header_In_Reply_To.c */, - ECED690C10F9A303006B4DC9 /* tsip_header_Join.c */, - ECED690D10F9A303006B4DC9 /* tsip_header_Max_Forwards.c */, - ECED690E10F9A303006B4DC9 /* tsip_header_MIME_Version.c */, - ECED690F10F9A303006B4DC9 /* tsip_header_Min_Expires.c */, - ECED691010F9A303006B4DC9 /* tsip_header_Min_SE.c */, - ECED691110F9A303006B4DC9 /* tsip_header_Organization.c */, - ECED691210F9A303006B4DC9 /* tsip_header_P_Access_Network_Info.c */, - ECED691310F9A303006B4DC9 /* tsip_header_P_Answer_State.c */, - ECED691410F9A303006B4DC9 /* tsip_header_P_Asserted_Identity.c */, - ECED691510F9A303006B4DC9 /* tsip_header_P_Associated_URI.c */, - ECED691610F9A303006B4DC9 /* tsip_header_P_Called_Party_ID.c */, - ECED691710F9A303006B4DC9 /* tsip_header_P_Charging_Function_Addresses.c */, - ECED691810F9A303006B4DC9 /* tsip_header_P_Charging_Vector.c */, - ECED691910F9A303006B4DC9 /* tsip_header_P_DCS_Billing_Info.c */, - ECED691A10F9A303006B4DC9 /* tsip_header_P_DCS_LAES.c */, - ECED691B10F9A303006B4DC9 /* tsip_header_P_DCS_OSPS.c */, - ECED691C10F9A303006B4DC9 /* tsip_header_P_DCS_Redirect.c */, - ECED691D10F9A303006B4DC9 /* tsip_header_P_DCS_Trace_Party_ID.c */, - ECED691E10F9A303006B4DC9 /* tsip_header_P_Early_Media.c */, - ECED691F10F9A303006B4DC9 /* tsip_header_P_Media_Authorization.c */, - ECED692010F9A303006B4DC9 /* tsip_header_P_Preferred_Identity.c */, - ECED692110F9A303006B4DC9 /* tsip_header_P_Profile_Key.c */, - ECED692210F9A303006B4DC9 /* tsip_header_P_User_Database.c */, - ECED692310F9A303006B4DC9 /* tsip_header_P_Visited_Network_ID.c */, - ECED692410F9A303006B4DC9 /* tsip_header_Path.c */, - ECED692510F9A303006B4DC9 /* tsip_header_Priority.c */, - ECED692610F9A303006B4DC9 /* tsip_header_Privacy.c */, - ECED692710F9A303006B4DC9 /* tsip_header_Proxy_Authenticate.c */, - ECED692810F9A303006B4DC9 /* tsip_header_Proxy_Authorization.c */, - ECED692910F9A303006B4DC9 /* tsip_header_Proxy_Require.c */, - ECED692A10F9A303006B4DC9 /* tsip_header_RAck.c */, - ECED692B10F9A303006B4DC9 /* tsip_header_Reason.c */, - ECED692C10F9A303006B4DC9 /* tsip_header_Record_Route.c */, - ECED692D10F9A303006B4DC9 /* tsip_header_Refer_Sub.c */, - ECED692E10F9A303006B4DC9 /* tsip_header_Refer_To.c */, - ECED692F10F9A303006B4DC9 /* tsip_header_Referred_By.c */, - ECED693010F9A303006B4DC9 /* tsip_header_Reject_Contact.c */, - ECED693110F9A303006B4DC9 /* tsip_header_Replaces.c */, - ECED693210F9A303006B4DC9 /* tsip_header_Reply_To.c */, - ECED693310F9A303006B4DC9 /* tsip_header_Request_Disposition.c */, - ECED693410F9A303006B4DC9 /* tsip_header_Require.c */, - ECED693510F9A303006B4DC9 /* tsip_header_Resource_Priority.c */, - ECED693610F9A303006B4DC9 /* tsip_header_Retry_After.c */, - ECED693710F9A303006B4DC9 /* tsip_header_Route.c */, - ECED693810F9A303006B4DC9 /* tsip_header_RSeq.c */, - ECED693910F9A303006B4DC9 /* tsip_header_Security_Client.c */, - ECED693A10F9A303006B4DC9 /* tsip_header_Security_Server.c */, - ECED693B10F9A303006B4DC9 /* tsip_header_Security_Verify.c */, - ECED693C10F9A303006B4DC9 /* tsip_header_Server.c */, - ECED693D10F9A303006B4DC9 /* tsip_header_Service_Route.c */, - ECED693E10F9A303006B4DC9 /* tsip_header_Session_Expires.c */, - ECED693F10F9A303006B4DC9 /* tsip_header_SIP_ETag.c */, - ECED694010F9A303006B4DC9 /* tsip_header_SIP_If_Match.c */, - ECED694110F9A303006B4DC9 /* tsip_header_Subject.c */, - ECED694210F9A303006B4DC9 /* tsip_header_Subscription_State.c */, - ECED694310F9A303006B4DC9 /* tsip_header_Supported.c */, - ECED694410F9A303006B4DC9 /* tsip_header_Target_Dialog.c */, - ECED694510F9A303006B4DC9 /* tsip_header_Timestamp.c */, - ECED694610F9A303006B4DC9 /* tsip_header_To.c */, - ECED694710F9A303006B4DC9 /* tsip_header_Unsupported.c */, - ECED694810F9A303006B4DC9 /* tsip_header_User_Agent.c */, - ECED694910F9A303006B4DC9 /* tsip_header_Via.c */, - ECED694A10F9A303006B4DC9 /* tsip_header_Warning.c */, - ECED694B10F9A303006B4DC9 /* tsip_header_WWW_Authenticate.c */, - ); - name = headers; - path = ../../tinySIP/source/headers; - sourceTree = SOURCE_ROOT; - }; - ECED694C10F9A303006B4DC9 /* parsers */ = { - isa = PBXGroup; - children = ( - ECED694D10F9A303006B4DC9 /* tsip_parser_header.c */, - ECED694E10F9A303006B4DC9 /* tsip_parser_message.c */, - ECED694F10F9A303006B4DC9 /* tsip_parser_uri.c */, - ECED695010F9A303006B4DC9 /* tsip_ragel_state.c */, - ); - name = parsers; - path = ../../tinySIP/source/parsers; - sourceTree = SOURCE_ROOT; - }; - ECED695110F9A303006B4DC9 /* smc */ = { - isa = PBXGroup; - children = ( - ECED695810F9A303006B4DC9 /* tsip_dialog_message_sm.c */, - ECED695910F9A303006B4DC9 /* tsip_dialog_register_sm.c */, - ECED695A10F9A303006B4DC9 /* tsip_transac_ict_sm.c */, - ECED695B10F9A303006B4DC9 /* tsip_transac_ist_sm.c */, - ECED695C10F9A303006B4DC9 /* tsip_transac_nict_sm.c */, - ECED695D10F9A303006B4DC9 /* tsip_transac_nist_sm.c */, - ); - name = smc; - path = ../../tinySIP/source/smc; - sourceTree = SOURCE_ROOT; - }; - ECED695E10F9A303006B4DC9 /* transactions */ = { - isa = PBXGroup; - children = ( - ECED695F10F9A303006B4DC9 /* tsip_transac.c */, - ECED696010F9A303006B4DC9 /* tsip_transac_ict.c */, - ECED696110F9A303006B4DC9 /* tsip_transac_ist.c */, - ECED696210F9A303006B4DC9 /* tsip_transac_layer.c */, - ECED696310F9A303006B4DC9 /* tsip_transac_nict.c */, - ECED696410F9A303006B4DC9 /* tsip_transac_nist.c */, - ); - name = transactions; - path = ../../tinySIP/source/transactions; - sourceTree = SOURCE_ROOT; - }; - ECED696510F9A303006B4DC9 /* transports */ = { - isa = PBXGroup; - children = ( - ECED696610F9A303006B4DC9 /* tsip_transport.c */, - ECED696710F9A303006B4DC9 /* tsip_transport_layer.c */, - ); - name = transports; - path = ../../tinySIP/source/transports; - sourceTree = SOURCE_ROOT; - }; - ECED69E810F9A343006B4DC9 /* authentication */ = { - isa = PBXGroup; - children = ( - ECED69E910F9A343006B4DC9 /* tsip_challenge.h */, - ECED69EA10F9A343006B4DC9 /* tsip_milenage.h */, - ECED69EB10F9A343006B4DC9 /* tsip_rijndael.h */, - ); - name = authentication; - path = ../../tinySIP/include/tinysip/authentication; - sourceTree = SOURCE_ROOT; - }; - ECED69EC10F9A343006B4DC9 /* dialogs */ = { - isa = PBXGroup; - children = ( - ECED69ED10F9A343006B4DC9 /* tsip_dialog.h */, - ECED69EE10F9A343006B4DC9 /* tsip_dialog_invite.h */, - ECED69EF10F9A343006B4DC9 /* tsip_dialog_layer.h */, - ECED69F010F9A343006B4DC9 /* tsip_dialog_message.h */, - ECED69F110F9A343006B4DC9 /* tsip_dialog_register.h */, - ECED69F210F9A343006B4DC9 /* tsip_dialog_subscribe.h */, - ); - name = dialogs; - path = ../../tinySIP/include/tinysip/dialogs; - sourceTree = SOURCE_ROOT; - }; - ECED69F310F9A343006B4DC9 /* headers */ = { - isa = PBXGroup; - children = ( - ECED69F410F9A343006B4DC9 /* tsip_header.h */, - ECED69F510F9A343006B4DC9 /* tsip_header_accept.h */, - ECED69F610F9A343006B4DC9 /* tsip_header_Accept_Contact.h */, - ECED69F710F9A343006B4DC9 /* tsip_header_Accept_Encoding.h */, - ECED69F810F9A343006B4DC9 /* tsip_header_Accept_Language.h */, - ECED69F910F9A343006B4DC9 /* tsip_header_Accept_Resource_Priority.h */, - ECED69FA10F9A343006B4DC9 /* tsip_header_Alert_Info.h */, - ECED69FB10F9A343006B4DC9 /* tsip_header_Allow.h */, - ECED69FC10F9A343006B4DC9 /* tsip_header_Allow_Events.h */, - ECED69FD10F9A343006B4DC9 /* tsip_header_Authentication_Info.h */, - ECED69FE10F9A343006B4DC9 /* tsip_header_Authorization.h */, - ECED69FF10F9A343006B4DC9 /* tsip_header_Call_ID.h */, - ECED6A0010F9A343006B4DC9 /* tsip_header_Call_Info.h */, - ECED6A0110F9A343006B4DC9 /* tsip_header_Contact.h */, - ECED6A0210F9A343006B4DC9 /* tsip_header_Content_Disposition.h */, - ECED6A0310F9A343006B4DC9 /* tsip_header_Content_Encoding.h */, - ECED6A0410F9A343006B4DC9 /* tsip_header_Content_Language.h */, - ECED6A0510F9A343006B4DC9 /* tsip_header_Content_Length.h */, - ECED6A0610F9A343006B4DC9 /* tsip_header_Content_Type.h */, - ECED6A0710F9A343006B4DC9 /* tsip_header_CSeq.h */, - ECED6A0810F9A343006B4DC9 /* tsip_header_Date.h */, - ECED6A0910F9A343006B4DC9 /* tsip_header_Error_Info.h */, - ECED6A0A10F9A343006B4DC9 /* tsip_header_Event.h */, - ECED6A0B10F9A343006B4DC9 /* tsip_header_Expires.h */, - ECED6A0C10F9A343006B4DC9 /* tsip_header_From.h */, - ECED6A0D10F9A343006B4DC9 /* tsip_header_History_Info.h */, - ECED6A0E10F9A343006B4DC9 /* tsip_header_Identity.h */, - ECED6A0F10F9A343006B4DC9 /* tsip_header_Identity_Info.h */, - ECED6A1010F9A343006B4DC9 /* tsip_header_In_Reply_To.h */, - ECED6A1110F9A343006B4DC9 /* tsip_header_Join.h */, - ECED6A1210F9A343006B4DC9 /* tsip_header_Max_Forwards.h */, - ECED6A1310F9A343006B4DC9 /* tsip_header_MIME_Version.h */, - ECED6A1410F9A343006B4DC9 /* tsip_header_Min_Expires.h */, - ECED6A1510F9A343006B4DC9 /* tsip_header_Min_SE.h */, - ECED6A1610F9A343006B4DC9 /* tsip_header_Organization.h */, - ECED6A1710F9A343006B4DC9 /* tsip_header_P_Access_Network_Info.h */, - ECED6A1810F9A343006B4DC9 /* tsip_header_P_Answer_State.h */, - ECED6A1910F9A343006B4DC9 /* tsip_header_P_Asserted_Identity.h */, - ECED6A1A10F9A343006B4DC9 /* tsip_header_P_Associated_URI.h */, - ECED6A1B10F9A343006B4DC9 /* tsip_header_P_Called_Party_ID.h */, - ECED6A1C10F9A343006B4DC9 /* tsip_header_P_Charging_Function_Addresses.h */, - ECED6A1D10F9A343006B4DC9 /* tsip_header_P_Charging_Vector.h */, - ECED6A1E10F9A343006B4DC9 /* tsip_header_P_DCS_Billing_Info.h */, - ECED6A1F10F9A343006B4DC9 /* tsip_header_P_DCS_LAES.h */, - ECED6A2010F9A343006B4DC9 /* tsip_header_P_DCS_OSPS.h */, - ECED6A2110F9A343006B4DC9 /* tsip_header_P_DCS_Redirect.h */, - ECED6A2210F9A343006B4DC9 /* tsip_header_P_DCS_Trace_Party_ID.h */, - ECED6A2310F9A343006B4DC9 /* tsip_header_P_Early_Media.h */, - ECED6A2410F9A343006B4DC9 /* tsip_header_P_Media_Authorization.h */, - ECED6A2510F9A343006B4DC9 /* tsip_header_P_Preferred_Identity.h */, - ECED6A2610F9A343006B4DC9 /* tsip_header_P_Profile_Key.h */, - ECED6A2710F9A343006B4DC9 /* tsip_header_P_User_Database.h */, - ECED6A2810F9A343006B4DC9 /* tsip_header_P_Visited_Network_ID.h */, - ECED6A2910F9A343006B4DC9 /* tsip_header_Path.h */, - ECED6A2A10F9A343006B4DC9 /* tsip_header_Priority.h */, - ECED6A2B10F9A343006B4DC9 /* tsip_header_Privacy.h */, - ECED6A2C10F9A343006B4DC9 /* tsip_header_Proxy_Authenticate.h */, - ECED6A2D10F9A343006B4DC9 /* tsip_header_Proxy_Authorization.h */, - ECED6A2E10F9A343006B4DC9 /* tsip_header_Proxy_Require.h */, - ECED6A2F10F9A343006B4DC9 /* tsip_header_RAck.h */, - ECED6A3010F9A343006B4DC9 /* tsip_header_Reason.h */, - ECED6A3110F9A343006B4DC9 /* tsip_header_Record_Route.h */, - ECED6A3210F9A343006B4DC9 /* tsip_header_Refer_Sub.h */, - ECED6A3310F9A343006B4DC9 /* tsip_header_Refer_To.h */, - ECED6A3410F9A343006B4DC9 /* tsip_header_Referred_By.h */, - ECED6A3510F9A343006B4DC9 /* tsip_header_Reject_Contact.h */, - ECED6A3610F9A343006B4DC9 /* tsip_header_Replaces.h */, - ECED6A3710F9A343006B4DC9 /* tsip_header_Reply_To.h */, - ECED6A3810F9A343006B4DC9 /* tsip_header_Request_Disposition.h */, - ECED6A3910F9A343006B4DC9 /* tsip_header_Require.h */, - ECED6A3A10F9A343006B4DC9 /* tsip_header_Resource_Priority.h */, - ECED6A3B10F9A343006B4DC9 /* tsip_header_Retry_After.h */, - ECED6A3C10F9A343006B4DC9 /* tsip_header_Route.h */, - ECED6A3D10F9A343006B4DC9 /* tsip_header_RSeq.h */, - ECED6A3E10F9A343006B4DC9 /* tsip_header_Security_Client.h */, - ECED6A3F10F9A343006B4DC9 /* tsip_header_Security_Server.h */, - ECED6A4010F9A343006B4DC9 /* tsip_header_Security_Verify.h */, - ECED6A4110F9A343006B4DC9 /* tsip_header_Server.h */, - ECED6A4210F9A343006B4DC9 /* tsip_header_Service_Route.h */, - ECED6A4310F9A343006B4DC9 /* tsip_header_Session_Expires.h */, - ECED6A4410F9A343006B4DC9 /* tsip_header_SIP_ETag.h */, - ECED6A4510F9A343006B4DC9 /* tsip_header_SIP_If_Match.h */, - ECED6A4610F9A343006B4DC9 /* tsip_header_Subject.h */, - ECED6A4710F9A343006B4DC9 /* tsip_header_Subscription_State.h */, - ECED6A4810F9A343006B4DC9 /* tsip_header_Supported.h */, - ECED6A4910F9A343006B4DC9 /* tsip_header_Target_Dialog.h */, - ECED6A4A10F9A343006B4DC9 /* tsip_header_Timestamp.h */, - ECED6A4B10F9A343006B4DC9 /* tsip_header_To.h */, - ECED6A4C10F9A343006B4DC9 /* tsip_header_Unsupported.h */, - ECED6A4D10F9A343006B4DC9 /* tsip_header_User_Agent.h */, - ECED6A4E10F9A343006B4DC9 /* tsip_header_Via.h */, - ECED6A4F10F9A343006B4DC9 /* tsip_header_Warning.h */, - ECED6A5010F9A343006B4DC9 /* tsip_header_WWW_Authenticate.h */, - ECED6A5110F9A343006B4DC9 /* tsip_headers.h */, - ); - name = headers; - path = ../../tinySIP/include/tinysip/headers; - sourceTree = SOURCE_ROOT; - }; - ECED6A5210F9A343006B4DC9 /* parsers */ = { - isa = PBXGroup; - children = ( - ECED6A5310F9A343006B4DC9 /* tsip_parser_header.h */, - ECED6A5410F9A343006B4DC9 /* tsip_parser_message.h */, - ECED6A5510F9A343006B4DC9 /* tsip_parser_uri.h */, - ECED6A5610F9A343006B4DC9 /* tsip_ragel_state.h */, - ); - name = parsers; - path = ../../tinySIP/include/tinysip/parsers; - sourceTree = SOURCE_ROOT; - }; - ECED6A5710F9A343006B4DC9 /* smc */ = { - isa = PBXGroup; - children = ( - ECED6A5810F9A343006B4DC9 /* tsip_dialog_message_sm.h */, - ECED6A5910F9A343006B4DC9 /* tsip_dialog_register_sm.h */, - ECED6A5A10F9A343006B4DC9 /* tsip_transac_ict_sm.h */, - ECED6A5B10F9A343006B4DC9 /* tsip_transac_ist_sm.h */, - ECED6A5C10F9A343006B4DC9 /* tsip_transac_nict_sm.h */, - ECED6A5D10F9A343006B4DC9 /* tsip_transac_nist_sm.h */, - ); - name = smc; - path = ../../tinySIP/include/tinysip/smc; - sourceTree = SOURCE_ROOT; - }; - ECED6A5E10F9A343006B4DC9 /* transactions */ = { - isa = PBXGroup; - children = ( - ECED6A5F10F9A343006B4DC9 /* tsip_transac.h */, - ECED6A6010F9A343006B4DC9 /* tsip_transac_ict.h */, - ECED6A6110F9A343006B4DC9 /* tsip_transac_ist.h */, - ECED6A6210F9A343006B4DC9 /* tsip_transac_layer.h */, - ECED6A6310F9A343006B4DC9 /* tsip_transac_nict.h */, - ECED6A6410F9A343006B4DC9 /* tsip_transac_nist.h */, - ); - name = transactions; - path = ../../tinySIP/include/tinysip/transactions; - sourceTree = SOURCE_ROOT; - }; - ECED6A6510F9A343006B4DC9 /* transports */ = { - isa = PBXGroup; - children = ( - ECED6A6610F9A343006B4DC9 /* tsip_transport.h */, - ECED6A6710F9A343006B4DC9 /* tsip_transport_layer.h */, - ); - name = transports; - path = ../../tinySIP/include/tinysip/transports; - sourceTree = SOURCE_ROOT; - }; - ECED6AEA10F9A66E006B4DC9 /* auth */ = { - isa = PBXGroup; - children = ( - ECED6AEB10F9A66E006B4DC9 /* thttp_auth.c */, - ); - name = auth; - path = ../../tinyHTTP/source/auth; - sourceTree = SOURCE_ROOT; - }; - ECED6AEC10F9A66E006B4DC9 /* headers */ = { - isa = PBXGroup; - children = ( - ); - name = headers; - path = ../../tinyHTTP/source/headers; - sourceTree = SOURCE_ROOT; - }; - ECED6AED10F9A66E006B4DC9 /* parsers */ = { - isa = PBXGroup; - children = ( - ); - name = parsers; - path = ../../tinyHTTP/source/parsers; - sourceTree = SOURCE_ROOT; - }; ECED6B0E10F9A953006B4DC9 /* test */ = { isa = PBXGroup; children = ( @@ -1421,6 +1261,860 @@ name = test; sourceTree = ""; }; + ECF4691E11346C6A00390CBE /* tinyNET */ = { + isa = PBXGroup; + children = ( + ECF4692211346C6A00390CBE /* smc */, + ECF4692611346C6A00390CBE /* src */, + ); + name = tinyNET; + path = ../../tinyNET; + sourceTree = SOURCE_ROOT; + }; + ECF4692211346C6A00390CBE /* smc */ = { + isa = PBXGroup; + children = ( + ECF4692311346C6A00390CBE /* ice.sm */, + ECF4692411346C6A00390CBE /* stun.sm */, + ECF4692511346C6A00390CBE /* turn.sm */, + ); + path = smc; + sourceTree = ""; + }; + ECF4692611346C6A00390CBE /* src */ = { + isa = PBXGroup; + children = ( + ECF4692711346C6A00390CBE /* dhcp */, + ECF4693011346C6A00390CBE /* dhcp6 */, + ECF4693911346C6A00390CBE /* dns */, + ECF4695611346C6A00390CBE /* ice */, + ECF4695A11346C6A00390CBE /* parsers */, + ECF4695B11346C6A00390CBE /* stun */, + ECF4696211346C6A00390CBE /* tinyNET_config.h */, + ECF4696311346C6A00390CBE /* tnet.c */, + ECF4696411346C6A00390CBE /* tnet.h */, + ECF4696511346C6A00390CBE /* tnet_auth.c */, + ECF4696611346C6A00390CBE /* tnet_auth.h */, + ECF4696711346C6A00390CBE /* tnet_hardwares.h */, + ECF4696811346C6A00390CBE /* tnet_nat.c */, + ECF4696911346C6A00390CBE /* tnet_nat.h */, + ECF4696A11346C6A00390CBE /* tnet_poll.c */, + ECF4696B11346C6A00390CBE /* tnet_poll.h */, + ECF4696C11346C6A00390CBE /* tnet_proto.h */, + ECF4696D11346C6A00390CBE /* tnet_socket.c */, + ECF4696E11346C6A00390CBE /* tnet_socket.h */, + ECF4696F11346C6A00390CBE /* tnet_transport.c */, + ECF4697011346C6A00390CBE /* tnet_transport.h */, + ECF4697111346C6A00390CBE /* tnet_transport_poll.c */, + ECF4697211346C6A00390CBE /* tnet_transport_win32.c */, + ECF4697311346C6A00390CBE /* tnet_types.h */, + ECF4697411346C6A00390CBE /* tnet_utils.c */, + ECF4697511346C6A00390CBE /* tnet_utils.h */, + ECF4697611346C6A00390CBE /* turn */, + ); + path = src; + sourceTree = ""; + }; + ECF4692711346C6A00390CBE /* dhcp */ = { + isa = PBXGroup; + children = ( + ECF4692811346C6A00390CBE /* tnet_dhcp.c */, + ECF4692911346C6A00390CBE /* tnet_dhcp.h */, + ECF4692A11346C6A00390CBE /* tnet_dhcp_message.c */, + ECF4692B11346C6A00390CBE /* tnet_dhcp_message.h */, + ECF4692C11346C6A00390CBE /* tnet_dhcp_option.c */, + ECF4692D11346C6A00390CBE /* tnet_dhcp_option.h */, + ECF4692E11346C6A00390CBE /* tnet_dhcp_option_sip.c */, + ECF4692F11346C6A00390CBE /* tnet_dhcp_option_sip.h */, + ); + path = dhcp; + sourceTree = ""; + }; + ECF4693011346C6A00390CBE /* dhcp6 */ = { + isa = PBXGroup; + children = ( + ECF4693111346C6A00390CBE /* tnet_dhcp6.c */, + ECF4693211346C6A00390CBE /* tnet_dhcp6.h */, + ECF4693311346C6A00390CBE /* tnet_dhcp6_duid.c */, + ECF4693411346C6A00390CBE /* tnet_dhcp6_duid.h */, + ECF4693511346C6A00390CBE /* tnet_dhcp6_message.c */, + ECF4693611346C6A00390CBE /* tnet_dhcp6_message.h */, + ECF4693711346C6A00390CBE /* tnet_dhcp6_option.c */, + ECF4693811346C6A00390CBE /* tnet_dhcp6_option.h */, + ); + path = dhcp6; + sourceTree = ""; + }; + ECF4693911346C6A00390CBE /* dns */ = { + isa = PBXGroup; + children = ( + ECF4693A11346C6A00390CBE /* tnet_dns.c */, + ECF4693B11346C6A00390CBE /* tnet_dns.h */, + ECF4693C11346C6A00390CBE /* tnet_dns_a.c */, + ECF4693D11346C6A00390CBE /* tnet_dns_a.h */, + ECF4693E11346C6A00390CBE /* tnet_dns_aaaa.c */, + ECF4693F11346C6A00390CBE /* tnet_dns_aaaa.h */, + ECF4694011346C6A00390CBE /* tnet_dns_cname.c */, + ECF4694111346C6A00390CBE /* tnet_dns_cname.h */, + ECF4694211346C6A00390CBE /* tnet_dns_message.c */, + ECF4694311346C6A00390CBE /* tnet_dns_message.h */, + ECF4694411346C6A00390CBE /* tnet_dns_mx.c */, + ECF4694511346C6A00390CBE /* tnet_dns_mx.h */, + ECF4694611346C6A00390CBE /* tnet_dns_naptr.c */, + ECF4694711346C6A00390CBE /* tnet_dns_naptr.h */, + ECF4694811346C6A00390CBE /* tnet_dns_ns.c */, + ECF4694911346C6A00390CBE /* tnet_dns_ns.h */, + ECF4694A11346C6A00390CBE /* tnet_dns_opt.c */, + ECF4694B11346C6A00390CBE /* tnet_dns_opt.h */, + ECF4694C11346C6A00390CBE /* tnet_dns_ptr.c */, + ECF4694D11346C6A00390CBE /* tnet_dns_ptr.h */, + ECF4694E11346C6A00390CBE /* tnet_dns_rr.c */, + ECF4694F11346C6A00390CBE /* tnet_dns_rr.h */, + ECF4695011346C6A00390CBE /* tnet_dns_soa.c */, + ECF4695111346C6A00390CBE /* tnet_dns_soa.h */, + ECF4695211346C6A00390CBE /* tnet_dns_srv.c */, + ECF4695311346C6A00390CBE /* tnet_dns_srv.h */, + ECF4695411346C6A00390CBE /* tnet_dns_txt.c */, + ECF4695511346C6A00390CBE /* tnet_dns_txt.h */, + ); + path = dns; + sourceTree = ""; + }; + ECF4695611346C6A00390CBE /* ice */ = { + isa = PBXGroup; + children = ( + ECF4695711346C6A00390CBE /* tnet_ice.c */, + ECF4695811346C6A00390CBE /* tnet_ice.h */, + ); + path = ice; + sourceTree = ""; + }; + ECF4695A11346C6A00390CBE /* parsers */ = { + isa = PBXGroup; + children = ( + ); + path = parsers; + sourceTree = ""; + }; + ECF4695B11346C6A00390CBE /* stun */ = { + isa = PBXGroup; + children = ( + ECF4695C11346C6A00390CBE /* tnet_stun.c */, + ECF4695D11346C6A00390CBE /* tnet_stun.h */, + ECF4695E11346C6A00390CBE /* tnet_stun_attribute.c */, + ECF4695F11346C6A00390CBE /* tnet_stun_attribute.h */, + ECF4696011346C6A00390CBE /* tnet_stun_message.c */, + ECF4696111346C6A00390CBE /* tnet_stun_message.h */, + ); + path = stun; + sourceTree = ""; + }; + ECF4697611346C6A00390CBE /* turn */ = { + isa = PBXGroup; + children = ( + ECF4697711346C6A00390CBE /* tnet_turn.c */, + ECF4697811346C6A00390CBE /* tnet_turn.h */, + ECF4697911346C6A00390CBE /* tnet_turn_attribute.c */, + ECF4697A11346C6A00390CBE /* tnet_turn_attribute.h */, + ECF4697B11346C6A00390CBE /* tnet_turn_message.c */, + ECF4697C11346C6A00390CBE /* tnet_turn_message.h */, + ); + path = turn; + sourceTree = ""; + }; + ECF46A30113473CC00390CBE /* tinyHTTP */ = { + isa = PBXGroup; + children = ( + ECF46A31113473CC00390CBE /* abnf */, + ECF46A35113473CC00390CBE /* include */, + ECF46A48113473CC00390CBE /* ragel */, + ECF46A53113473CC00390CBE /* ragel.sh */, + ECF46A54113473CC00390CBE /* src */, + ); + name = tinyHTTP; + path = ../../tinyHTTP; + sourceTree = SOURCE_ROOT; + }; + ECF46A31113473CC00390CBE /* abnf */ = { + isa = PBXGroup; + children = ( + ECF46A32113473CC00390CBE /* http.abnf */, + ECF46A33113473CC00390CBE /* httpauth.abnf */, + ECF46A34113473CC00390CBE /* uri.abnf */, + ); + path = abnf; + sourceTree = ""; + }; + ECF46A35113473CC00390CBE /* include */ = { + isa = PBXGroup; + children = ( + ECF46A36113473CC00390CBE /* thttp.h */, + ECF46A37113473CC00390CBE /* tinyHTTP */, + ECF46A47113473CC00390CBE /* tinyhttp_config.h */, + ); + path = include; + sourceTree = ""; + }; + ECF46A37113473CC00390CBE /* tinyHTTP */ = { + isa = PBXGroup; + children = ( + ECF46A38113473CC00390CBE /* auth */, + ECF46A3A113473CC00390CBE /* headers */, + ECF46A41113473CC00390CBE /* parsers */, + ECF46A45113473CC00390CBE /* thttp_message.h */, + ECF46A46113473CC00390CBE /* thttp_url.h */, + ); + path = tinyHTTP; + sourceTree = ""; + }; + ECF46A38113473CC00390CBE /* auth */ = { + isa = PBXGroup; + children = ( + ECF46A39113473CC00390CBE /* thttp_auth.h */, + ); + path = auth; + sourceTree = ""; + }; + ECF46A3A113473CC00390CBE /* headers */ = { + isa = PBXGroup; + children = ( + ECF46A3B113473CC00390CBE /* thttp_header.h */, + ECF46A3C113473CC00390CBE /* thttp_header_Authorization.h */, + ECF46A3D113473CC00390CBE /* thttp_header_Content_Length.h */, + ECF46A3E113473CC00390CBE /* thttp_header_Content_Type.h */, + ECF46A3F113473CC00390CBE /* thttp_header_Proxy_Authenticate.h */, + ECF46A40113473CC00390CBE /* thttp_header_WWW_Authenticate.h */, + ); + path = headers; + sourceTree = ""; + }; + ECF46A41113473CC00390CBE /* parsers */ = { + isa = PBXGroup; + children = ( + ECF46A42113473CC00390CBE /* thttp_parser_header.h */, + ECF46A43113473CC00390CBE /* thttp_parser_message.h */, + ECF46A44113473CC00390CBE /* thttp_parser_url.h */, + ); + path = parsers; + sourceTree = ""; + }; + ECF46A48113473CC00390CBE /* ragel */ = { + isa = PBXGroup; + children = ( + ECF46A49113473CC00390CBE /* thttp_machine_header.rl */, + ECF46A4A113473CC00390CBE /* thttp_machine_message.rl */, + ECF46A4B113473CC00390CBE /* thttp_machine_utils.rl */, + ECF46A4C113473CC00390CBE /* thttp_parser_header.rl */, + ECF46A4D113473CC00390CBE /* thttp_parser_header_Authorization.rl */, + ECF46A4E113473CC00390CBE /* thttp_parser_header_Content_Length.rl */, + ECF46A4F113473CC00390CBE /* thttp_parser_header_Content_Type.rl */, + ECF46A50113473CC00390CBE /* thttp_parser_header_WWW_Authenticate.rl */, + ECF46A51113473CC00390CBE /* thttp_parser_message.rl */, + ECF46A52113473CC00390CBE /* thttp_parser_url.rl */, + ); + path = ragel; + sourceTree = ""; + }; + ECF46A54113473CC00390CBE /* src */ = { + isa = PBXGroup; + children = ( + ECF46A55113473CC00390CBE /* auth */, + ECF46A57113473CC00390CBE /* headers */, + ECF46A5F113473CC00390CBE /* parsers */, + ECF46A63113473CC00390CBE /* thttp.c */, + ECF46A64113473CC00390CBE /* thttp_message.c */, + ECF46A65113473CC00390CBE /* thttp_url.c */, + ); + path = src; + sourceTree = ""; + }; + ECF46A55113473CC00390CBE /* auth */ = { + isa = PBXGroup; + children = ( + ECF46A56113473CC00390CBE /* thttp_auth.c */, + ); + path = auth; + sourceTree = ""; + }; + ECF46A57113473CC00390CBE /* headers */ = { + isa = PBXGroup; + children = ( + ECF46A58113473CC00390CBE /* thttp_header.c */, + ECF46A59113473CC00390CBE /* thttp_header_Authorization.c */, + ECF46A5A113473CC00390CBE /* thttp_header_Content_Length.c */, + ECF46A5B113473CC00390CBE /* thttp_header_Content_Type.c */, + ECF46A5C113473CC00390CBE /* thttp_header_Proxy_Authenticate.c */, + ECF46A5D113473CC00390CBE /* thttp_header_WWW_Authenticate.c */, + ); + path = headers; + sourceTree = ""; + }; + ECF46A5F113473CC00390CBE /* parsers */ = { + isa = PBXGroup; + children = ( + ECF46A60113473CC00390CBE /* thttp_parser_header.c */, + ECF46A61113473CC00390CBE /* thttp_parser_message.c */, + ECF46A62113473CC00390CBE /* thttp_parser_url.c */, + ); + path = parsers; + sourceTree = ""; + }; + ECF46A941134755E00390CBE /* tinySIP */ = { + isa = PBXGroup; + children = ( + ECF46AA61134755E00390CBE /* include */, + ECF46B2E1134755E00390CBE /* ragel */, + ECF46B941134755E00390CBE /* src */, + ECF46C1D1134755E00390CBE /* test */, + ); + name = tinySIP; + path = ../../tinySIP; + sourceTree = SOURCE_ROOT; + }; + ECF46AA61134755E00390CBE /* include */ = { + isa = PBXGroup; + children = ( + ECF46AA71134755E00390CBE /* tinysip */, + ECF46B2C1134755E00390CBE /* tinysip_config.h */, + ECF46B2D1134755E00390CBE /* tsip.h */, + ); + path = include; + sourceTree = ""; + }; + ECF46AA71134755E00390CBE /* tinysip */ = { + isa = PBXGroup; + children = ( + ECF46AA81134755E00390CBE /* api */, + ECF46AAE1134755E00390CBE /* authentication */, + ECF46AB21134755E00390CBE /* dialogs */, + ECF46AB91134755E00390CBE /* headers */, + ECF46B181134755E00390CBE /* parsers */, + ECF46B1C1134755E00390CBE /* transactions */, + ECF46B231134755E00390CBE /* transports */, + ECF46B271134755E00390CBE /* tsip_event.h */, + ECF46B281134755E00390CBE /* tsip_message.h */, + ECF46B291134755E00390CBE /* tsip_operation.h */, + ECF46B2A1134755E00390CBE /* tsip_timers.h */, + ECF46B2B1134755E00390CBE /* tsip_uri.h */, + ); + path = tinysip; + sourceTree = ""; + }; + ECF46AA81134755E00390CBE /* api */ = { + isa = PBXGroup; + children = ( + ECF46AA91134755E00390CBE /* tsip_api_invite.h */, + ECF46AAA1134755E00390CBE /* tsip_api_message.h */, + ECF46AAB1134755E00390CBE /* tsip_api_publish.h */, + ECF46AAC1134755E00390CBE /* tsip_api_register.h */, + ECF46AAD1134755E00390CBE /* tsip_api_subscribe.h */, + ); + path = api; + sourceTree = ""; + }; + ECF46AAE1134755E00390CBE /* authentication */ = { + isa = PBXGroup; + children = ( + ECF46AAF1134755E00390CBE /* tsip_challenge.h */, + ECF46AB01134755E00390CBE /* tsip_milenage.h */, + ECF46AB11134755E00390CBE /* tsip_rijndael.h */, + ); + path = authentication; + sourceTree = ""; + }; + ECF46AB21134755E00390CBE /* dialogs */ = { + isa = PBXGroup; + children = ( + ECF46AB31134755E00390CBE /* tsip_dialog.h */, + ECF46AB41134755E00390CBE /* tsip_dialog_invite.h */, + ECF46AB51134755E00390CBE /* tsip_dialog_layer.h */, + ECF46AB61134755E00390CBE /* tsip_dialog_message.h */, + ECF46AB71134755E00390CBE /* tsip_dialog_register.h */, + ECF46AB81134755E00390CBE /* tsip_dialog_subscribe.h */, + ); + path = dialogs; + sourceTree = ""; + }; + ECF46AB91134755E00390CBE /* headers */ = { + isa = PBXGroup; + children = ( + ECF46ABA1134755E00390CBE /* tsip_header.h */, + ECF46ABB1134755E00390CBE /* tsip_header_accept.h */, + ECF46ABC1134755E00390CBE /* tsip_header_Accept_Contact.h */, + ECF46ABD1134755E00390CBE /* tsip_header_Accept_Encoding.h */, + ECF46ABE1134755E00390CBE /* tsip_header_Accept_Language.h */, + ECF46ABF1134755E00390CBE /* tsip_header_Accept_Resource_Priority.h */, + ECF46AC01134755E00390CBE /* tsip_header_Alert_Info.h */, + ECF46AC11134755E00390CBE /* tsip_header_Allow.h */, + ECF46AC21134755E00390CBE /* tsip_header_Allow_Events.h */, + ECF46AC31134755E00390CBE /* tsip_header_Authentication_Info.h */, + ECF46AC41134755E00390CBE /* tsip_header_Authorization.h */, + ECF46AC51134755E00390CBE /* tsip_header_Call_ID.h */, + ECF46AC61134755E00390CBE /* tsip_header_Call_Info.h */, + ECF46AC71134755E00390CBE /* tsip_header_Contact.h */, + ECF46AC81134755E00390CBE /* tsip_header_Content_Disposition.h */, + ECF46AC91134755E00390CBE /* tsip_header_Content_Encoding.h */, + ECF46ACA1134755E00390CBE /* tsip_header_Content_Language.h */, + ECF46ACB1134755E00390CBE /* tsip_header_Content_Length.h */, + ECF46ACC1134755E00390CBE /* tsip_header_Content_Type.h */, + ECF46ACD1134755E00390CBE /* tsip_header_CSeq.h */, + ECF46ACE1134755E00390CBE /* tsip_header_Date.h */, + ECF46ACF1134755E00390CBE /* tsip_header_Error_Info.h */, + ECF46AD01134755E00390CBE /* tsip_header_Event.h */, + ECF46AD11134755E00390CBE /* tsip_header_Expires.h */, + ECF46AD21134755E00390CBE /* tsip_header_From.h */, + ECF46AD31134755E00390CBE /* tsip_header_History_Info.h */, + ECF46AD41134755E00390CBE /* tsip_header_Identity.h */, + ECF46AD51134755E00390CBE /* tsip_header_Identity_Info.h */, + ECF46AD61134755E00390CBE /* tsip_header_In_Reply_To.h */, + ECF46AD71134755E00390CBE /* tsip_header_Join.h */, + ECF46AD81134755E00390CBE /* tsip_header_Max_Forwards.h */, + ECF46AD91134755E00390CBE /* tsip_header_MIME_Version.h */, + ECF46ADA1134755E00390CBE /* tsip_header_Min_Expires.h */, + ECF46ADB1134755E00390CBE /* tsip_header_Min_SE.h */, + ECF46ADC1134755E00390CBE /* tsip_header_Organization.h */, + ECF46ADD1134755E00390CBE /* tsip_header_P_Access_Network_Info.h */, + ECF46ADE1134755E00390CBE /* tsip_header_P_Answer_State.h */, + ECF46ADF1134755E00390CBE /* tsip_header_P_Asserted_Identity.h */, + ECF46AE01134755E00390CBE /* tsip_header_P_Associated_URI.h */, + ECF46AE11134755E00390CBE /* tsip_header_P_Called_Party_ID.h */, + ECF46AE21134755E00390CBE /* tsip_header_P_Charging_Function_Addresses.h */, + ECF46AE31134755E00390CBE /* tsip_header_P_Charging_Vector.h */, + ECF46AE41134755E00390CBE /* tsip_header_P_DCS_Billing_Info.h */, + ECF46AE51134755E00390CBE /* tsip_header_P_DCS_LAES.h */, + ECF46AE61134755E00390CBE /* tsip_header_P_DCS_OSPS.h */, + ECF46AE71134755E00390CBE /* tsip_header_P_DCS_Redirect.h */, + ECF46AE81134755E00390CBE /* tsip_header_P_DCS_Trace_Party_ID.h */, + ECF46AE91134755E00390CBE /* tsip_header_P_Early_Media.h */, + ECF46AEA1134755E00390CBE /* tsip_header_P_Media_Authorization.h */, + ECF46AEB1134755E00390CBE /* tsip_header_P_Preferred_Identity.h */, + ECF46AEC1134755E00390CBE /* tsip_header_P_Profile_Key.h */, + ECF46AED1134755E00390CBE /* tsip_header_P_User_Database.h */, + ECF46AEE1134755E00390CBE /* tsip_header_P_Visited_Network_ID.h */, + ECF46AEF1134755E00390CBE /* tsip_header_Path.h */, + ECF46AF01134755E00390CBE /* tsip_header_Priority.h */, + ECF46AF11134755E00390CBE /* tsip_header_Privacy.h */, + ECF46AF21134755E00390CBE /* tsip_header_Proxy_Authenticate.h */, + ECF46AF31134755E00390CBE /* tsip_header_Proxy_Authorization.h */, + ECF46AF41134755E00390CBE /* tsip_header_Proxy_Require.h */, + ECF46AF51134755E00390CBE /* tsip_header_RAck.h */, + ECF46AF61134755E00390CBE /* tsip_header_Reason.h */, + ECF46AF71134755E00390CBE /* tsip_header_Record_Route.h */, + ECF46AF81134755E00390CBE /* tsip_header_Refer_Sub.h */, + ECF46AF91134755E00390CBE /* tsip_header_Refer_To.h */, + ECF46AFA1134755E00390CBE /* tsip_header_Referred_By.h */, + ECF46AFB1134755E00390CBE /* tsip_header_Reject_Contact.h */, + ECF46AFC1134755E00390CBE /* tsip_header_Replaces.h */, + ECF46AFD1134755E00390CBE /* tsip_header_Reply_To.h */, + ECF46AFE1134755E00390CBE /* tsip_header_Request_Disposition.h */, + ECF46AFF1134755E00390CBE /* tsip_header_Require.h */, + ECF46B001134755E00390CBE /* tsip_header_Resource_Priority.h */, + ECF46B011134755E00390CBE /* tsip_header_Retry_After.h */, + ECF46B021134755E00390CBE /* tsip_header_Route.h */, + ECF46B031134755E00390CBE /* tsip_header_RSeq.h */, + ECF46B041134755E00390CBE /* tsip_header_Security_Client.h */, + ECF46B051134755E00390CBE /* tsip_header_Security_Server.h */, + ECF46B061134755E00390CBE /* tsip_header_Security_Verify.h */, + ECF46B071134755E00390CBE /* tsip_header_Server.h */, + ECF46B081134755E00390CBE /* tsip_header_Service_Route.h */, + ECF46B091134755E00390CBE /* tsip_header_Session_Expires.h */, + ECF46B0A1134755E00390CBE /* tsip_header_SIP_ETag.h */, + ECF46B0B1134755E00390CBE /* tsip_header_SIP_If_Match.h */, + ECF46B0C1134755E00390CBE /* tsip_header_Subject.h */, + ECF46B0D1134755E00390CBE /* tsip_header_Subscription_State.h */, + ECF46B0E1134755E00390CBE /* tsip_header_Supported.h */, + ECF46B0F1134755E00390CBE /* tsip_header_Target_Dialog.h */, + ECF46B101134755E00390CBE /* tsip_header_Timestamp.h */, + ECF46B111134755E00390CBE /* tsip_header_To.h */, + ECF46B121134755E00390CBE /* tsip_header_Unsupported.h */, + ECF46B131134755E00390CBE /* tsip_header_User_Agent.h */, + ECF46B141134755E00390CBE /* tsip_header_Via.h */, + ECF46B151134755E00390CBE /* tsip_header_Warning.h */, + ECF46B161134755E00390CBE /* tsip_header_WWW_Authenticate.h */, + ECF46B171134755E00390CBE /* tsip_headers.h */, + ); + path = headers; + sourceTree = ""; + }; + ECF46B181134755E00390CBE /* parsers */ = { + isa = PBXGroup; + children = ( + ECF46B191134755E00390CBE /* tsip_parser_header.h */, + ECF46B1A1134755E00390CBE /* tsip_parser_message.h */, + ECF46B1B1134755E00390CBE /* tsip_parser_uri.h */, + ); + path = parsers; + sourceTree = ""; + }; + ECF46B1C1134755E00390CBE /* transactions */ = { + isa = PBXGroup; + children = ( + ECF46B1D1134755E00390CBE /* tsip_transac.h */, + ECF46B1E1134755E00390CBE /* tsip_transac_ict.h */, + ECF46B1F1134755E00390CBE /* tsip_transac_ist.h */, + ECF46B201134755E00390CBE /* tsip_transac_layer.h */, + ECF46B211134755E00390CBE /* tsip_transac_nict.h */, + ECF46B221134755E00390CBE /* tsip_transac_nist.h */, + ); + path = transactions; + sourceTree = ""; + }; + ECF46B231134755E00390CBE /* transports */ = { + isa = PBXGroup; + children = ( + ECF46B241134755E00390CBE /* tsip_transport.h */, + ECF46B251134755E00390CBE /* tsip_transport_ipsec.h */, + ECF46B261134755E00390CBE /* tsip_transport_layer.h */, + ); + path = transports; + sourceTree = ""; + }; + ECF46B2E1134755E00390CBE /* ragel */ = { + isa = PBXGroup; + children = ( + ECF46B2F1134755E00390CBE /* tsip_machine_header.rl */, + ECF46B301134755E00390CBE /* tsip_machine_message.rl */, + ECF46B311134755E00390CBE /* tsip_machine_utils.rl */, + ECF46B321134755E00390CBE /* tsip_parser_header.rl */, + ECF46B331134755E00390CBE /* tsip_parser_header_Accept_Contact.rl */, + ECF46B341134755E00390CBE /* tsip_parser_header_Accept_Encoding.rl */, + ECF46B351134755E00390CBE /* tsip_parser_header_Accept_Language.rl */, + ECF46B361134755E00390CBE /* tsip_parser_header_Accept_Resource_Priority.rl */, + ECF46B371134755E00390CBE /* tsip_parser_header_Alert_Info.rl */, + ECF46B381134755E00390CBE /* tsip_parser_header_Allow.rl */, + ECF46B391134755E00390CBE /* tsip_parser_header_Allow_Events.rl */, + ECF46B3A1134755E00390CBE /* tsip_parser_header_Authentication_Info.rl */, + ECF46B3B1134755E00390CBE /* tsip_parser_header_Authorization.rl */, + ECF46B3C1134755E00390CBE /* tsip_parser_header_Call_ID.rl */, + ECF46B3D1134755E00390CBE /* tsip_parser_header_Call_Info.rl */, + ECF46B3E1134755E00390CBE /* tsip_parser_header_Contact.rl */, + ECF46B3F1134755E00390CBE /* tsip_parser_header_Content_Disposition.rl */, + ECF46B401134755E00390CBE /* tsip_parser_header_Content_Encoding.rl */, + ECF46B411134755E00390CBE /* tsip_parser_header_Content_Language.rl */, + ECF46B421134755E00390CBE /* tsip_parser_header_Content_Length.rl */, + ECF46B431134755E00390CBE /* tsip_parser_header_Content_Type.rl */, + ECF46B441134755E00390CBE /* tsip_parser_header_CSeq.rl */, + ECF46B451134755E00390CBE /* tsip_parser_header_Date.rl */, + ECF46B461134755E00390CBE /* tsip_parser_header_Error_Info.rl */, + ECF46B471134755E00390CBE /* tsip_parser_header_Event.rl */, + ECF46B481134755E00390CBE /* tsip_parser_header_Expires.rl */, + ECF46B491134755E00390CBE /* tsip_parser_header_From.rl */, + ECF46B4A1134755E00390CBE /* tsip_parser_header_History_Info.rl */, + ECF46B4B1134755E00390CBE /* tsip_parser_header_Identity.rl */, + ECF46B4C1134755E00390CBE /* tsip_parser_header_Identity_Info.rl */, + ECF46B4D1134755E00390CBE /* tsip_parser_header_In_Reply_To.rl */, + ECF46B4E1134755E00390CBE /* tsip_parser_header_Join.rl */, + ECF46B4F1134755E00390CBE /* tsip_parser_header_Max_Forwards.rl */, + ECF46B501134755E00390CBE /* tsip_parser_header_MIME_Version.rl */, + ECF46B511134755E00390CBE /* tsip_parser_header_Min_Expires.rl */, + ECF46B521134755E00390CBE /* tsip_parser_header_Min_SE.rl */, + ECF46B531134755E00390CBE /* tsip_parser_header_Organization.rl */, + ECF46B541134755E00390CBE /* tsip_parser_header_P_Access_Network_Info.rl */, + ECF46B551134755E00390CBE /* tsip_parser_header_P_Answer_State.rl */, + ECF46B561134755E00390CBE /* tsip_parser_header_P_Asserted_Identity.rl */, + ECF46B571134755E00390CBE /* tsip_parser_header_P_Associated_URI.rl */, + ECF46B581134755E00390CBE /* tsip_parser_header_P_Called_Party_ID.rl */, + ECF46B591134755E00390CBE /* tsip_parser_header_P_Charging_Function_Addresses.rl */, + ECF46B5A1134755E00390CBE /* tsip_parser_header_P_Charging_Vector.rl */, + ECF46B5B1134755E00390CBE /* tsip_parser_header_P_DCS_Billing_Info.rl */, + ECF46B5C1134755E00390CBE /* tsip_parser_header_P_DCS_LAES.rl */, + ECF46B5D1134755E00390CBE /* tsip_parser_header_P_DCS_OSPS.rl */, + ECF46B5E1134755E00390CBE /* tsip_parser_header_P_DCS_Redirect.rl */, + ECF46B5F1134755E00390CBE /* tsip_parser_header_P_DCS_Trace_Party_ID.rl */, + ECF46B601134755E00390CBE /* tsip_parser_header_P_Early_Media.rl */, + ECF46B611134755E00390CBE /* tsip_parser_header_P_Media_Authorization.rl */, + ECF46B621134755E00390CBE /* tsip_parser_header_P_Preferred_Identity.rl */, + ECF46B631134755E00390CBE /* tsip_parser_header_P_Profile_Key.rl */, + ECF46B641134755E00390CBE /* tsip_parser_header_P_User_Database.rl */, + ECF46B651134755E00390CBE /* tsip_parser_header_P_Visited_Network_ID.rl */, + ECF46B661134755E00390CBE /* tsip_parser_header_Path.rl */, + ECF46B671134755E00390CBE /* tsip_parser_header_Priority.rl */, + ECF46B681134755E00390CBE /* tsip_parser_header_Privacy.rl */, + ECF46B691134755E00390CBE /* tsip_parser_header_Proxy_Authenticate.rl */, + ECF46B6A1134755E00390CBE /* tsip_parser_header_Proxy_Authorization.rl */, + ECF46B6B1134755E00390CBE /* tsip_parser_header_Proxy_Require.rl */, + ECF46B6C1134755E00390CBE /* tsip_parser_header_RAck.rl */, + ECF46B6D1134755E00390CBE /* tsip_parser_header_Reason.rl */, + ECF46B6E1134755E00390CBE /* tsip_parser_header_Record_Route.rl */, + ECF46B6F1134755E00390CBE /* tsip_parser_header_Refer_Sub.rl */, + ECF46B701134755E00390CBE /* tsip_parser_header_Refer_To.rl */, + ECF46B711134755E00390CBE /* tsip_parser_header_Referred_By.rl */, + ECF46B721134755E00390CBE /* tsip_parser_header_Reject_Contact.rl */, + ECF46B731134755E00390CBE /* tsip_parser_header_Replaces.rl */, + ECF46B741134755E00390CBE /* tsip_parser_header_Reply_To.rl */, + ECF46B751134755E00390CBE /* tsip_parser_header_Request_Disposition.rl */, + ECF46B761134755E00390CBE /* tsip_parser_header_Require.rl */, + ECF46B771134755E00390CBE /* tsip_parser_header_Resource_Priority.rl */, + ECF46B781134755E00390CBE /* tsip_parser_header_Retry_After.rl */, + ECF46B791134755E00390CBE /* tsip_parser_header_Route.rl */, + ECF46B7A1134755E00390CBE /* tsip_parser_header_RSeq.rl */, + ECF46B7B1134755E00390CBE /* tsip_parser_header_Security_Client.rl */, + ECF46B7C1134755E00390CBE /* tsip_parser_header_Security_Server.rl */, + ECF46B7D1134755E00390CBE /* tsip_parser_header_Security_Verify.rl */, + ECF46B7E1134755E00390CBE /* tsip_parser_header_Server.rl */, + ECF46B7F1134755E00390CBE /* tsip_parser_header_Service_Route.rl */, + ECF46B801134755E00390CBE /* tsip_parser_header_Session_Expires.rl */, + ECF46B811134755E00390CBE /* tsip_parser_header_SIP_ETag.rl */, + ECF46B821134755E00390CBE /* tsip_parser_header_SIP_If_Match.rl */, + ECF46B831134755E00390CBE /* tsip_parser_header_Subject.rl */, + ECF46B841134755E00390CBE /* tsip_parser_header_Subscription_State.rl */, + ECF46B851134755E00390CBE /* tsip_parser_header_Supported.rl */, + ECF46B861134755E00390CBE /* tsip_parser_header_Target_Dialog.rl */, + ECF46B871134755E00390CBE /* tsip_parser_header_Timestamp.rl */, + ECF46B881134755E00390CBE /* tsip_parser_header_To.rl */, + ECF46B891134755E00390CBE /* tsip_parser_header_Unsupported.rl */, + ECF46B8A1134755E00390CBE /* tsip_parser_header_User_Agent.rl */, + ECF46B8B1134755E00390CBE /* tsip_parser_header_Via.rl */, + ECF46B8C1134755E00390CBE /* tsip_parser_header_Warning.rl */, + ECF46B8D1134755E00390CBE /* tsip_parser_header_WWW_Authenticate.rl */, + ECF46B8E1134755E00390CBE /* tsip_parser_message.rl */, + ECF46B8F1134755E00390CBE /* tsip_parser_uri.rl */, + ); + path = ragel; + sourceTree = ""; + }; + ECF46B941134755E00390CBE /* src */ = { + isa = PBXGroup; + children = ( + ECF46B951134755E00390CBE /* api */, + ECF46B9B1134755E00390CBE /* authentication */, + ECF46B9F1134755E00390CBE /* dialogs */, + ECF46BA91134755E00390CBE /* headers */, + ECF46C081134755E00390CBE /* parsers */, + ECF46C0C1134755E00390CBE /* transactions */, + ECF46C131134755E00390CBE /* transports */, + ECF46C171134755E00390CBE /* tsip.c */, + ECF46C181134755E00390CBE /* tsip_event.c */, + ECF46C191134755E00390CBE /* tsip_message.c */, + ECF46C1A1134755E00390CBE /* tsip_operation.c */, + ECF46C1B1134755E00390CBE /* tsip_timers.c */, + ECF46C1C1134755E00390CBE /* tsip_uri.c */, + ); + path = src; + sourceTree = ""; + }; + ECF46B951134755E00390CBE /* api */ = { + isa = PBXGroup; + children = ( + ECF46B961134755E00390CBE /* tsip_api_invite.c */, + ECF46B971134755E00390CBE /* tsip_api_message.c */, + ECF46B981134755E00390CBE /* tsip_api_publish.c */, + ECF46B991134755E00390CBE /* tsip_api_register.c */, + ECF46B9A1134755E00390CBE /* tsip_api_subscribe.c */, + ); + path = api; + sourceTree = ""; + }; + ECF46B9B1134755E00390CBE /* authentication */ = { + isa = PBXGroup; + children = ( + ECF46B9C1134755E00390CBE /* tsip_challenge.c */, + ECF46B9D1134755E00390CBE /* tsip_milenage.c */, + ECF46B9E1134755E00390CBE /* tsip_rijndael.c */, + ); + path = authentication; + sourceTree = ""; + }; + ECF46B9F1134755E00390CBE /* dialogs */ = { + isa = PBXGroup; + children = ( + ECF46BA01134755E00390CBE /* tsip_dialog.c */, + ECF46BA11134755E00390CBE /* tsip_dialog_invite.client.c */, + ECF46BA21134755E00390CBE /* tsip_dialog_invite.server.c */, + ECF46BA31134755E00390CBE /* tsip_dialog_layer.c */, + ECF46BA41134755E00390CBE /* tsip_dialog_message.c */, + ECF46BA51134755E00390CBE /* tsip_dialog_register.client.c */, + ECF46BA61134755E00390CBE /* tsip_dialog_register.server.c */, + ECF46BA71134755E00390CBE /* tsip_dialog_subscribe.client.c */, + ECF46BA81134755E00390CBE /* tsip_dialog_subscribe.server.c */, + ); + path = dialogs; + sourceTree = ""; + }; + ECF46BA91134755E00390CBE /* headers */ = { + isa = PBXGroup; + children = ( + ECF46BAA1134755E00390CBE /* tsip_header.c */, + ECF46BAB1134755E00390CBE /* tsip_header_accept.c */, + ECF46BAC1134755E00390CBE /* tsip_header_Accept_Contact.c */, + ECF46BAD1134755E00390CBE /* tsip_header_Accept_Encoding.c */, + ECF46BAE1134755E00390CBE /* tsip_header_Accept_Language.c */, + ECF46BAF1134755E00390CBE /* tsip_header_Accept_Resource_Priority.c */, + ECF46BB01134755E00390CBE /* tsip_header_Alert_Info.c */, + ECF46BB11134755E00390CBE /* tsip_header_Allow.c */, + ECF46BB21134755E00390CBE /* tsip_header_Allow_Events.c */, + ECF46BB31134755E00390CBE /* tsip_header_Authentication_Info.c */, + ECF46BB41134755E00390CBE /* tsip_header_Authorization.c */, + ECF46BB51134755E00390CBE /* tsip_header_Call_ID.c */, + ECF46BB61134755E00390CBE /* tsip_header_Call_Info.c */, + ECF46BB71134755E00390CBE /* tsip_header_Contact.c */, + ECF46BB81134755E00390CBE /* tsip_header_Content_Disposition.c */, + ECF46BB91134755E00390CBE /* tsip_header_Content_Encoding.c */, + ECF46BBA1134755E00390CBE /* tsip_header_Content_Language.c */, + ECF46BBB1134755E00390CBE /* tsip_header_Content_Length.c */, + ECF46BBC1134755E00390CBE /* tsip_header_Content_Type.c */, + ECF46BBD1134755E00390CBE /* tsip_header_CSeq.c */, + ECF46BBE1134755E00390CBE /* tsip_header_Date.c */, + ECF46BBF1134755E00390CBE /* tsip_header_Error_Info.c */, + ECF46BC01134755E00390CBE /* tsip_header_Event.c */, + ECF46BC11134755E00390CBE /* tsip_header_Expires.c */, + ECF46BC21134755E00390CBE /* tsip_header_From.c */, + ECF46BC31134755E00390CBE /* tsip_header_History_Info.c */, + ECF46BC41134755E00390CBE /* tsip_header_Identity.c */, + ECF46BC51134755E00390CBE /* tsip_header_Identity_Info.c */, + ECF46BC61134755E00390CBE /* tsip_header_In_Reply_To.c */, + ECF46BC71134755E00390CBE /* tsip_header_Join.c */, + ECF46BC81134755E00390CBE /* tsip_header_Max_Forwards.c */, + ECF46BC91134755E00390CBE /* tsip_header_MIME_Version.c */, + ECF46BCA1134755E00390CBE /* tsip_header_Min_Expires.c */, + ECF46BCB1134755E00390CBE /* tsip_header_Min_SE.c */, + ECF46BCC1134755E00390CBE /* tsip_header_Organization.c */, + ECF46BCD1134755E00390CBE /* tsip_header_P_Access_Network_Info.c */, + ECF46BCE1134755E00390CBE /* tsip_header_P_Answer_State.c */, + ECF46BCF1134755E00390CBE /* tsip_header_P_Asserted_Identity.c */, + ECF46BD01134755E00390CBE /* tsip_header_P_Associated_URI.c */, + ECF46BD11134755E00390CBE /* tsip_header_P_Called_Party_ID.c */, + ECF46BD21134755E00390CBE /* tsip_header_P_Charging_Function_Addresses.c */, + ECF46BD31134755E00390CBE /* tsip_header_P_Charging_Vector.c */, + ECF46BD41134755E00390CBE /* tsip_header_P_DCS_Billing_Info.c */, + ECF46BD51134755E00390CBE /* tsip_header_P_DCS_LAES.c */, + ECF46BD61134755E00390CBE /* tsip_header_P_DCS_OSPS.c */, + ECF46BD71134755E00390CBE /* tsip_header_P_DCS_Redirect.c */, + ECF46BD81134755E00390CBE /* tsip_header_P_DCS_Trace_Party_ID.c */, + ECF46BD91134755E00390CBE /* tsip_header_P_Early_Media.c */, + ECF46BDA1134755E00390CBE /* tsip_header_P_Media_Authorization.c */, + ECF46BDB1134755E00390CBE /* tsip_header_P_Preferred_Identity.c */, + ECF46BDC1134755E00390CBE /* tsip_header_P_Profile_Key.c */, + ECF46BDD1134755E00390CBE /* tsip_header_P_User_Database.c */, + ECF46BDE1134755E00390CBE /* tsip_header_P_Visited_Network_ID.c */, + ECF46BDF1134755E00390CBE /* tsip_header_Path.c */, + ECF46BE01134755E00390CBE /* tsip_header_Priority.c */, + ECF46BE11134755E00390CBE /* tsip_header_Privacy.c */, + ECF46BE21134755E00390CBE /* tsip_header_Proxy_Authenticate.c */, + ECF46BE31134755E00390CBE /* tsip_header_Proxy_Authorization.c */, + ECF46BE41134755E00390CBE /* tsip_header_Proxy_Require.c */, + ECF46BE51134755E00390CBE /* tsip_header_RAck.c */, + ECF46BE61134755E00390CBE /* tsip_header_Reason.c */, + ECF46BE71134755E00390CBE /* tsip_header_Record_Route.c */, + ECF46BE81134755E00390CBE /* tsip_header_Refer_Sub.c */, + ECF46BE91134755E00390CBE /* tsip_header_Refer_To.c */, + ECF46BEA1134755E00390CBE /* tsip_header_Referred_By.c */, + ECF46BEB1134755E00390CBE /* tsip_header_Reject_Contact.c */, + ECF46BEC1134755E00390CBE /* tsip_header_Replaces.c */, + ECF46BED1134755E00390CBE /* tsip_header_Reply_To.c */, + ECF46BEE1134755E00390CBE /* tsip_header_Request_Disposition.c */, + ECF46BEF1134755E00390CBE /* tsip_header_Require.c */, + ECF46BF01134755E00390CBE /* tsip_header_Resource_Priority.c */, + ECF46BF11134755E00390CBE /* tsip_header_Retry_After.c */, + ECF46BF21134755E00390CBE /* tsip_header_Route.c */, + ECF46BF31134755E00390CBE /* tsip_header_RSeq.c */, + ECF46BF41134755E00390CBE /* tsip_header_Security_Client.c */, + ECF46BF51134755E00390CBE /* tsip_header_Security_Server.c */, + ECF46BF61134755E00390CBE /* tsip_header_Security_Verify.c */, + ECF46BF71134755E00390CBE /* tsip_header_Server.c */, + ECF46BF81134755E00390CBE /* tsip_header_Service_Route.c */, + ECF46BF91134755E00390CBE /* tsip_header_Session_Expires.c */, + ECF46BFA1134755E00390CBE /* tsip_header_SIP_ETag.c */, + ECF46BFB1134755E00390CBE /* tsip_header_SIP_If_Match.c */, + ECF46BFC1134755E00390CBE /* tsip_header_Subject.c */, + ECF46BFD1134755E00390CBE /* tsip_header_Subscription_State.c */, + ECF46BFE1134755E00390CBE /* tsip_header_Supported.c */, + ECF46BFF1134755E00390CBE /* tsip_header_Target_Dialog.c */, + ECF46C001134755E00390CBE /* tsip_header_Timestamp.c */, + ECF46C011134755E00390CBE /* tsip_header_To.c */, + ECF46C021134755E00390CBE /* tsip_header_Unsupported.c */, + ECF46C031134755E00390CBE /* tsip_header_User_Agent.c */, + ECF46C041134755E00390CBE /* tsip_header_Via.c */, + ECF46C051134755E00390CBE /* tsip_header_Warning.c */, + ECF46C061134755E00390CBE /* tsip_header_WWW_Authenticate.c */, + ); + path = headers; + sourceTree = ""; + }; + ECF46C081134755E00390CBE /* parsers */ = { + isa = PBXGroup; + children = ( + ECF46C091134755E00390CBE /* tsip_parser_header.c */, + ECF46C0A1134755E00390CBE /* tsip_parser_message.c */, + ECF46C0B1134755E00390CBE /* tsip_parser_uri.c */, + ); + path = parsers; + sourceTree = ""; + }; + ECF46C0C1134755E00390CBE /* transactions */ = { + isa = PBXGroup; + children = ( + ECF46C0D1134755E00390CBE /* tsip_transac.c */, + ECF46C0E1134755E00390CBE /* tsip_transac_ict.c */, + ECF46C0F1134755E00390CBE /* tsip_transac_ist.c */, + ECF46C101134755E00390CBE /* tsip_transac_layer.c */, + ECF46C111134755E00390CBE /* tsip_transac_nict.c */, + ECF46C121134755E00390CBE /* tsip_transac_nist.c */, + ); + path = transactions; + sourceTree = ""; + }; + ECF46C131134755E00390CBE /* transports */ = { + isa = PBXGroup; + children = ( + ECF46C141134755E00390CBE /* tsip_transport.c */, + ECF46C151134755E00390CBE /* tsip_transport_ipsec.c */, + ECF46C161134755E00390CBE /* tsip_transport_layer.c */, + ); + path = transports; + sourceTree = ""; + }; + ECF46C1D1134755E00390CBE /* test */ = { + isa = PBXGroup; + children = ( + ECF46C1E1134755E00390CBE /* test */, + ); + path = test; + sourceTree = ""; + }; + ECF46C1E1134755E00390CBE /* test */ = { + isa = PBXGroup; + children = ( + ECF46C201134755E00390CBE /* stdafx.c */, + ECF46C211134755E00390CBE /* stdafx.h */, + ECF46C221134755E00390CBE /* targetver.h */, + ECF46C231134755E00390CBE /* test.c */, + ECF46C241134755E00390CBE /* test.vcproj */, + ECF46C251134755E00390CBE /* test_sipmessages.h */, + ECF46C261134755E00390CBE /* test_stack.h */, + ECF46C271134755E00390CBE /* test_transac.h */, + ECF46C281134755E00390CBE /* test_uri.h */, + ); + path = test; + sourceTree = ""; + }; + ECF46D40113476BD00390CBE /* tinyIPSec */ = { + isa = PBXGroup; + children = ( + ECF46D41113476BD00390CBE /* src */, + ); + name = tinyIPSec; + path = ../../tinyIPSec; + sourceTree = SOURCE_ROOT; + }; + ECF46D41113476BD00390CBE /* src */ = { + isa = PBXGroup; + children = ( + ECF46D42113476BD00390CBE /* tinyipsec_config.h */, + ECF46D43113476BD00390CBE /* tipsec.c */, + ECF46D44113476BD00390CBE /* tipsec.h */, + ECF46D45113476BD00390CBE /* tipsec_common.c */, + ECF46D46113476BD00390CBE /* tipsec_common.h */, + ECF46D47113476BD00390CBE /* tipsec_racoon.c */, + ECF46D48113476BD00390CBE /* tipsec_racoon.h */, + ECF46D49113476BD00390CBE /* tipsec_vista.c */, + ECF46D4A113476BD00390CBE /* tipsec_vista.h */, + ECF46D4B113476BD00390CBE /* tipsec_xp.c */, + ECF46D4C113476BD00390CBE /* tipsec_xp.h */, + ); + path = src; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -1428,131 +2122,133 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - ECED654410F99647006B4DC9 /* tsip_message.h in Headers */, - ECED654510F99647006B4DC9 /* tsip_operation.h in Headers */, - ECED654610F99647006B4DC9 /* tsip_timers.h in Headers */, - ECED654710F99647006B4DC9 /* tsip_uri.h in Headers */, - ECED6A6810F9A343006B4DC9 /* tsip_challenge.h in Headers */, - ECED6A6910F9A343006B4DC9 /* tsip_milenage.h in Headers */, - ECED6A6A10F9A343006B4DC9 /* tsip_rijndael.h in Headers */, - ECED6A6B10F9A343006B4DC9 /* tsip_dialog.h in Headers */, - ECED6A6C10F9A343006B4DC9 /* tsip_dialog_invite.h in Headers */, - ECED6A6D10F9A343006B4DC9 /* tsip_dialog_layer.h in Headers */, - ECED6A6E10F9A343006B4DC9 /* tsip_dialog_message.h in Headers */, - ECED6A6F10F9A343006B4DC9 /* tsip_dialog_register.h in Headers */, - ECED6A7010F9A343006B4DC9 /* tsip_dialog_subscribe.h in Headers */, - ECED6A7110F9A343006B4DC9 /* tsip_header.h in Headers */, - ECED6A7210F9A343006B4DC9 /* tsip_header_accept.h in Headers */, - ECED6A7310F9A343006B4DC9 /* tsip_header_Accept_Contact.h in Headers */, - ECED6A7410F9A343006B4DC9 /* tsip_header_Accept_Encoding.h in Headers */, - ECED6A7510F9A343006B4DC9 /* tsip_header_Accept_Language.h in Headers */, - ECED6A7610F9A343006B4DC9 /* tsip_header_Accept_Resource_Priority.h in Headers */, - ECED6A7710F9A343006B4DC9 /* tsip_header_Alert_Info.h in Headers */, - ECED6A7810F9A343006B4DC9 /* tsip_header_Allow.h in Headers */, - ECED6A7910F9A343006B4DC9 /* tsip_header_Allow_Events.h in Headers */, - ECED6A7A10F9A343006B4DC9 /* tsip_header_Authentication_Info.h in Headers */, - ECED6A7B10F9A343006B4DC9 /* tsip_header_Authorization.h in Headers */, - ECED6A7C10F9A343006B4DC9 /* tsip_header_Call_ID.h in Headers */, - ECED6A7D10F9A343006B4DC9 /* tsip_header_Call_Info.h in Headers */, - ECED6A7E10F9A343006B4DC9 /* tsip_header_Contact.h in Headers */, - ECED6A7F10F9A343006B4DC9 /* tsip_header_Content_Disposition.h in Headers */, - ECED6A8010F9A343006B4DC9 /* tsip_header_Content_Encoding.h in Headers */, - ECED6A8110F9A343006B4DC9 /* tsip_header_Content_Language.h in Headers */, - ECED6A8210F9A343006B4DC9 /* tsip_header_Content_Length.h in Headers */, - ECED6A8310F9A343006B4DC9 /* tsip_header_Content_Type.h in Headers */, - ECED6A8410F9A343006B4DC9 /* tsip_header_CSeq.h in Headers */, - ECED6A8510F9A343006B4DC9 /* tsip_header_Date.h in Headers */, - ECED6A8610F9A343006B4DC9 /* tsip_header_Error_Info.h in Headers */, - ECED6A8710F9A343006B4DC9 /* tsip_header_Event.h in Headers */, - ECED6A8810F9A343006B4DC9 /* tsip_header_Expires.h in Headers */, - ECED6A8910F9A343006B4DC9 /* tsip_header_From.h in Headers */, - ECED6A8A10F9A343006B4DC9 /* tsip_header_History_Info.h in Headers */, - ECED6A8B10F9A343006B4DC9 /* tsip_header_Identity.h in Headers */, - ECED6A8C10F9A343006B4DC9 /* tsip_header_Identity_Info.h in Headers */, - ECED6A8D10F9A343006B4DC9 /* tsip_header_In_Reply_To.h in Headers */, - ECED6A8E10F9A343006B4DC9 /* tsip_header_Join.h in Headers */, - ECED6A8F10F9A343006B4DC9 /* tsip_header_Max_Forwards.h in Headers */, - ECED6A9010F9A343006B4DC9 /* tsip_header_MIME_Version.h in Headers */, - ECED6A9110F9A343006B4DC9 /* tsip_header_Min_Expires.h in Headers */, - ECED6A9210F9A343006B4DC9 /* tsip_header_Min_SE.h in Headers */, - ECED6A9310F9A343006B4DC9 /* tsip_header_Organization.h in Headers */, - ECED6A9410F9A343006B4DC9 /* tsip_header_P_Access_Network_Info.h in Headers */, - ECED6A9510F9A343006B4DC9 /* tsip_header_P_Answer_State.h in Headers */, - ECED6A9610F9A343006B4DC9 /* tsip_header_P_Asserted_Identity.h in Headers */, - ECED6A9710F9A343006B4DC9 /* tsip_header_P_Associated_URI.h in Headers */, - ECED6A9810F9A343006B4DC9 /* tsip_header_P_Called_Party_ID.h in Headers */, - ECED6A9910F9A343006B4DC9 /* tsip_header_P_Charging_Function_Addresses.h in Headers */, - ECED6A9A10F9A343006B4DC9 /* tsip_header_P_Charging_Vector.h in Headers */, - ECED6A9B10F9A343006B4DC9 /* tsip_header_P_DCS_Billing_Info.h in Headers */, - ECED6A9C10F9A343006B4DC9 /* tsip_header_P_DCS_LAES.h in Headers */, - ECED6A9D10F9A343006B4DC9 /* tsip_header_P_DCS_OSPS.h in Headers */, - ECED6A9E10F9A343006B4DC9 /* tsip_header_P_DCS_Redirect.h in Headers */, - ECED6A9F10F9A343006B4DC9 /* tsip_header_P_DCS_Trace_Party_ID.h in Headers */, - ECED6AA010F9A343006B4DC9 /* tsip_header_P_Early_Media.h in Headers */, - ECED6AA110F9A343006B4DC9 /* tsip_header_P_Media_Authorization.h in Headers */, - ECED6AA210F9A343006B4DC9 /* tsip_header_P_Preferred_Identity.h in Headers */, - ECED6AA310F9A343006B4DC9 /* tsip_header_P_Profile_Key.h in Headers */, - ECED6AA410F9A343006B4DC9 /* tsip_header_P_User_Database.h in Headers */, - ECED6AA510F9A343006B4DC9 /* tsip_header_P_Visited_Network_ID.h in Headers */, - ECED6AA610F9A343006B4DC9 /* tsip_header_Path.h in Headers */, - ECED6AA710F9A343006B4DC9 /* tsip_header_Priority.h in Headers */, - ECED6AA810F9A343006B4DC9 /* tsip_header_Privacy.h in Headers */, - ECED6AA910F9A343006B4DC9 /* tsip_header_Proxy_Authenticate.h in Headers */, - ECED6AAA10F9A343006B4DC9 /* tsip_header_Proxy_Authorization.h in Headers */, - ECED6AAB10F9A343006B4DC9 /* tsip_header_Proxy_Require.h in Headers */, - ECED6AAC10F9A343006B4DC9 /* tsip_header_RAck.h in Headers */, - ECED6AAD10F9A343006B4DC9 /* tsip_header_Reason.h in Headers */, - ECED6AAE10F9A343006B4DC9 /* tsip_header_Record_Route.h in Headers */, - ECED6AAF10F9A343006B4DC9 /* tsip_header_Refer_Sub.h in Headers */, - ECED6AB010F9A343006B4DC9 /* tsip_header_Refer_To.h in Headers */, - ECED6AB110F9A343006B4DC9 /* tsip_header_Referred_By.h in Headers */, - ECED6AB210F9A343006B4DC9 /* tsip_header_Reject_Contact.h in Headers */, - ECED6AB310F9A343006B4DC9 /* tsip_header_Replaces.h in Headers */, - ECED6AB410F9A343006B4DC9 /* tsip_header_Reply_To.h in Headers */, - ECED6AB510F9A343006B4DC9 /* tsip_header_Request_Disposition.h in Headers */, - ECED6AB610F9A343006B4DC9 /* tsip_header_Require.h in Headers */, - ECED6AB710F9A343006B4DC9 /* tsip_header_Resource_Priority.h in Headers */, - ECED6AB810F9A343006B4DC9 /* tsip_header_Retry_After.h in Headers */, - ECED6AB910F9A343006B4DC9 /* tsip_header_Route.h in Headers */, - ECED6ABA10F9A343006B4DC9 /* tsip_header_RSeq.h in Headers */, - ECED6ABB10F9A343006B4DC9 /* tsip_header_Security_Client.h in Headers */, - ECED6ABC10F9A343006B4DC9 /* tsip_header_Security_Server.h in Headers */, - ECED6ABD10F9A343006B4DC9 /* tsip_header_Security_Verify.h in Headers */, - ECED6ABE10F9A343006B4DC9 /* tsip_header_Server.h in Headers */, - ECED6ABF10F9A343006B4DC9 /* tsip_header_Service_Route.h in Headers */, - ECED6AC010F9A343006B4DC9 /* tsip_header_Session_Expires.h in Headers */, - ECED6AC110F9A343006B4DC9 /* tsip_header_SIP_ETag.h in Headers */, - ECED6AC210F9A343006B4DC9 /* tsip_header_SIP_If_Match.h in Headers */, - ECED6AC310F9A343006B4DC9 /* tsip_header_Subject.h in Headers */, - ECED6AC410F9A343006B4DC9 /* tsip_header_Subscription_State.h in Headers */, - ECED6AC510F9A343006B4DC9 /* tsip_header_Supported.h in Headers */, - ECED6AC610F9A343006B4DC9 /* tsip_header_Target_Dialog.h in Headers */, - ECED6AC710F9A343006B4DC9 /* tsip_header_Timestamp.h in Headers */, - ECED6AC810F9A343006B4DC9 /* tsip_header_To.h in Headers */, - ECED6AC910F9A343006B4DC9 /* tsip_header_Unsupported.h in Headers */, - ECED6ACA10F9A343006B4DC9 /* tsip_header_User_Agent.h in Headers */, - ECED6ACB10F9A343006B4DC9 /* tsip_header_Via.h in Headers */, - ECED6ACC10F9A343006B4DC9 /* tsip_header_Warning.h in Headers */, - ECED6ACD10F9A343006B4DC9 /* tsip_header_WWW_Authenticate.h in Headers */, - ECED6ACE10F9A343006B4DC9 /* tsip_headers.h in Headers */, - ECED6ACF10F9A343006B4DC9 /* tsip_parser_header.h in Headers */, - ECED6AD010F9A343006B4DC9 /* tsip_parser_message.h in Headers */, - ECED6AD110F9A343006B4DC9 /* tsip_parser_uri.h in Headers */, - ECED6AD210F9A343006B4DC9 /* tsip_ragel_state.h in Headers */, - ECED6AD310F9A343006B4DC9 /* tsip_dialog_message_sm.h in Headers */, - ECED6AD410F9A343006B4DC9 /* tsip_dialog_register_sm.h in Headers */, - ECED6AD510F9A343006B4DC9 /* tsip_transac_ict_sm.h in Headers */, - ECED6AD610F9A343006B4DC9 /* tsip_transac_ist_sm.h in Headers */, - ECED6AD710F9A343006B4DC9 /* tsip_transac_nict_sm.h in Headers */, - ECED6AD810F9A343006B4DC9 /* tsip_transac_nist_sm.h in Headers */, - ECED6AD910F9A343006B4DC9 /* tsip_transac.h in Headers */, - ECED6ADA10F9A343006B4DC9 /* tsip_transac_ict.h in Headers */, - ECED6ADB10F9A343006B4DC9 /* tsip_transac_ist.h in Headers */, - ECED6ADC10F9A343006B4DC9 /* tsip_transac_layer.h in Headers */, - ECED6ADD10F9A343006B4DC9 /* tsip_transac_nict.h in Headers */, - ECED6ADE10F9A343006B4DC9 /* tsip_transac_nist.h in Headers */, - ECED6ADF10F9A343006B4DC9 /* tsip_transport.h in Headers */, - ECED6AE010F9A343006B4DC9 /* tsip_transport_layer.h in Headers */, + ECF46C2B1134755E00390CBE /* tsip_api_invite.h in Headers */, + ECF46C2C1134755E00390CBE /* tsip_api_message.h in Headers */, + ECF46C2D1134755E00390CBE /* tsip_api_publish.h in Headers */, + ECF46C2E1134755E00390CBE /* tsip_api_register.h in Headers */, + ECF46C2F1134755E00390CBE /* tsip_api_subscribe.h in Headers */, + ECF46C301134755E00390CBE /* tsip_challenge.h in Headers */, + ECF46C311134755E00390CBE /* tsip_milenage.h in Headers */, + ECF46C321134755E00390CBE /* tsip_rijndael.h in Headers */, + ECF46C331134755E00390CBE /* tsip_dialog.h in Headers */, + ECF46C341134755E00390CBE /* tsip_dialog_invite.h in Headers */, + ECF46C351134755E00390CBE /* tsip_dialog_layer.h in Headers */, + ECF46C361134755E00390CBE /* tsip_dialog_message.h in Headers */, + ECF46C371134755E00390CBE /* tsip_dialog_register.h in Headers */, + ECF46C381134755E00390CBE /* tsip_dialog_subscribe.h in Headers */, + ECF46C391134755E00390CBE /* tsip_header.h in Headers */, + ECF46C3A1134755E00390CBE /* tsip_header_accept.h in Headers */, + ECF46C3B1134755E00390CBE /* tsip_header_Accept_Contact.h in Headers */, + ECF46C3C1134755E00390CBE /* tsip_header_Accept_Encoding.h in Headers */, + ECF46C3D1134755E00390CBE /* tsip_header_Accept_Language.h in Headers */, + ECF46C3E1134755E00390CBE /* tsip_header_Accept_Resource_Priority.h in Headers */, + ECF46C3F1134755E00390CBE /* tsip_header_Alert_Info.h in Headers */, + ECF46C401134755E00390CBE /* tsip_header_Allow.h in Headers */, + ECF46C411134755E00390CBE /* tsip_header_Allow_Events.h in Headers */, + ECF46C421134755E00390CBE /* tsip_header_Authentication_Info.h in Headers */, + ECF46C431134755E00390CBE /* tsip_header_Authorization.h in Headers */, + ECF46C441134755E00390CBE /* tsip_header_Call_ID.h in Headers */, + ECF46C451134755E00390CBE /* tsip_header_Call_Info.h in Headers */, + ECF46C461134755E00390CBE /* tsip_header_Contact.h in Headers */, + ECF46C471134755E00390CBE /* tsip_header_Content_Disposition.h in Headers */, + ECF46C481134755E00390CBE /* tsip_header_Content_Encoding.h in Headers */, + ECF46C491134755E00390CBE /* tsip_header_Content_Language.h in Headers */, + ECF46C4A1134755E00390CBE /* tsip_header_Content_Length.h in Headers */, + ECF46C4B1134755E00390CBE /* tsip_header_Content_Type.h in Headers */, + ECF46C4C1134755E00390CBE /* tsip_header_CSeq.h in Headers */, + ECF46C4D1134755E00390CBE /* tsip_header_Date.h in Headers */, + ECF46C4E1134755E00390CBE /* tsip_header_Error_Info.h in Headers */, + ECF46C4F1134755E00390CBE /* tsip_header_Event.h in Headers */, + ECF46C501134755E00390CBE /* tsip_header_Expires.h in Headers */, + ECF46C511134755E00390CBE /* tsip_header_From.h in Headers */, + ECF46C521134755E00390CBE /* tsip_header_History_Info.h in Headers */, + ECF46C531134755E00390CBE /* tsip_header_Identity.h in Headers */, + ECF46C541134755E00390CBE /* tsip_header_Identity_Info.h in Headers */, + ECF46C551134755E00390CBE /* tsip_header_In_Reply_To.h in Headers */, + ECF46C561134755E00390CBE /* tsip_header_Join.h in Headers */, + ECF46C571134755E00390CBE /* tsip_header_Max_Forwards.h in Headers */, + ECF46C581134755E00390CBE /* tsip_header_MIME_Version.h in Headers */, + ECF46C591134755E00390CBE /* tsip_header_Min_Expires.h in Headers */, + ECF46C5A1134755E00390CBE /* tsip_header_Min_SE.h in Headers */, + ECF46C5B1134755E00390CBE /* tsip_header_Organization.h in Headers */, + ECF46C5C1134755E00390CBE /* tsip_header_P_Access_Network_Info.h in Headers */, + ECF46C5D1134755E00390CBE /* tsip_header_P_Answer_State.h in Headers */, + ECF46C5E1134755E00390CBE /* tsip_header_P_Asserted_Identity.h in Headers */, + ECF46C5F1134755E00390CBE /* tsip_header_P_Associated_URI.h in Headers */, + ECF46C601134755E00390CBE /* tsip_header_P_Called_Party_ID.h in Headers */, + ECF46C611134755E00390CBE /* tsip_header_P_Charging_Function_Addresses.h in Headers */, + ECF46C621134755E00390CBE /* tsip_header_P_Charging_Vector.h in Headers */, + ECF46C631134755E00390CBE /* tsip_header_P_DCS_Billing_Info.h in Headers */, + ECF46C641134755E00390CBE /* tsip_header_P_DCS_LAES.h in Headers */, + ECF46C651134755E00390CBE /* tsip_header_P_DCS_OSPS.h in Headers */, + ECF46C661134755E00390CBE /* tsip_header_P_DCS_Redirect.h in Headers */, + ECF46C671134755E00390CBE /* tsip_header_P_DCS_Trace_Party_ID.h in Headers */, + ECF46C681134755E00390CBE /* tsip_header_P_Early_Media.h in Headers */, + ECF46C691134755E00390CBE /* tsip_header_P_Media_Authorization.h in Headers */, + ECF46C6A1134755E00390CBE /* tsip_header_P_Preferred_Identity.h in Headers */, + ECF46C6B1134755E00390CBE /* tsip_header_P_Profile_Key.h in Headers */, + ECF46C6C1134755E00390CBE /* tsip_header_P_User_Database.h in Headers */, + ECF46C6D1134755E00390CBE /* tsip_header_P_Visited_Network_ID.h in Headers */, + ECF46C6E1134755E00390CBE /* tsip_header_Path.h in Headers */, + ECF46C6F1134755E00390CBE /* tsip_header_Priority.h in Headers */, + ECF46C701134755E00390CBE /* tsip_header_Privacy.h in Headers */, + ECF46C711134755E00390CBE /* tsip_header_Proxy_Authenticate.h in Headers */, + ECF46C721134755E00390CBE /* tsip_header_Proxy_Authorization.h in Headers */, + ECF46C731134755E00390CBE /* tsip_header_Proxy_Require.h in Headers */, + ECF46C741134755E00390CBE /* tsip_header_RAck.h in Headers */, + ECF46C751134755E00390CBE /* tsip_header_Reason.h in Headers */, + ECF46C761134755E00390CBE /* tsip_header_Record_Route.h in Headers */, + ECF46C771134755E00390CBE /* tsip_header_Refer_Sub.h in Headers */, + ECF46C781134755E00390CBE /* tsip_header_Refer_To.h in Headers */, + ECF46C791134755E00390CBE /* tsip_header_Referred_By.h in Headers */, + ECF46C7A1134755E00390CBE /* tsip_header_Reject_Contact.h in Headers */, + ECF46C7B1134755E00390CBE /* tsip_header_Replaces.h in Headers */, + ECF46C7C1134755E00390CBE /* tsip_header_Reply_To.h in Headers */, + ECF46C7D1134755E00390CBE /* tsip_header_Request_Disposition.h in Headers */, + ECF46C7E1134755E00390CBE /* tsip_header_Require.h in Headers */, + ECF46C7F1134755E00390CBE /* tsip_header_Resource_Priority.h in Headers */, + ECF46C801134755E00390CBE /* tsip_header_Retry_After.h in Headers */, + ECF46C811134755E00390CBE /* tsip_header_Route.h in Headers */, + ECF46C821134755E00390CBE /* tsip_header_RSeq.h in Headers */, + ECF46C831134755E00390CBE /* tsip_header_Security_Client.h in Headers */, + ECF46C841134755E00390CBE /* tsip_header_Security_Server.h in Headers */, + ECF46C851134755E00390CBE /* tsip_header_Security_Verify.h in Headers */, + ECF46C861134755E00390CBE /* tsip_header_Server.h in Headers */, + ECF46C871134755E00390CBE /* tsip_header_Service_Route.h in Headers */, + ECF46C881134755E00390CBE /* tsip_header_Session_Expires.h in Headers */, + ECF46C891134755E00390CBE /* tsip_header_SIP_ETag.h in Headers */, + ECF46C8A1134755E00390CBE /* tsip_header_SIP_If_Match.h in Headers */, + ECF46C8B1134755E00390CBE /* tsip_header_Subject.h in Headers */, + ECF46C8C1134755E00390CBE /* tsip_header_Subscription_State.h in Headers */, + ECF46C8D1134755E00390CBE /* tsip_header_Supported.h in Headers */, + ECF46C8E1134755E00390CBE /* tsip_header_Target_Dialog.h in Headers */, + ECF46C8F1134755E00390CBE /* tsip_header_Timestamp.h in Headers */, + ECF46C901134755E00390CBE /* tsip_header_To.h in Headers */, + ECF46C911134755E00390CBE /* tsip_header_Unsupported.h in Headers */, + ECF46C921134755E00390CBE /* tsip_header_User_Agent.h in Headers */, + ECF46C931134755E00390CBE /* tsip_header_Via.h in Headers */, + ECF46C941134755E00390CBE /* tsip_header_Warning.h in Headers */, + ECF46C951134755E00390CBE /* tsip_header_WWW_Authenticate.h in Headers */, + ECF46C961134755E00390CBE /* tsip_headers.h in Headers */, + ECF46C971134755E00390CBE /* tsip_parser_header.h in Headers */, + ECF46C981134755E00390CBE /* tsip_parser_message.h in Headers */, + ECF46C991134755E00390CBE /* tsip_parser_uri.h in Headers */, + ECF46C9A1134755E00390CBE /* tsip_transac.h in Headers */, + ECF46C9B1134755E00390CBE /* tsip_transac_ict.h in Headers */, + ECF46C9C1134755E00390CBE /* tsip_transac_ist.h in Headers */, + ECF46C9D1134755E00390CBE /* tsip_transac_layer.h in Headers */, + ECF46C9E1134755E00390CBE /* tsip_transac_nict.h in Headers */, + ECF46C9F1134755E00390CBE /* tsip_transac_nist.h in Headers */, + ECF46CA01134755E00390CBE /* tsip_transport.h in Headers */, + ECF46CA11134755E00390CBE /* tsip_transport_ipsec.h in Headers */, + ECF46CA21134755E00390CBE /* tsip_transport_layer.h in Headers */, + ECF46CA31134755E00390CBE /* tsip_event.h in Headers */, + ECF46CA41134755E00390CBE /* tsip_message.h in Headers */, + ECF46CA51134755E00390CBE /* tsip_operation.h in Headers */, + ECF46CA61134755E00390CBE /* tsip_timers.h in Headers */, + ECF46CA71134755E00390CBE /* tsip_uri.h in Headers */, + ECF46CA81134755E00390CBE /* tinysip_config.h in Headers */, + ECF46CA91134755E00390CBE /* tsip.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1588,8 +2284,10 @@ ECED685310F996F6006B4DC9 /* tsk_timer.h in Headers */, ECED685510F996F6006B4DC9 /* tsk_url.h in Headers */, ECED685710F996F6006B4DC9 /* tsk_xml.h in Headers */, - ECED685C10F997BF006B4DC9 /* tinysip_config.h in Headers */, - ECED685D10F997BF006B4DC9 /* tsip.h in Headers */, + ECF46A261134737200390CBE /* tsk_fsm.h in Headers */, + ECF46A281134737200390CBE /* tsk_ppfcs32.h in Headers */, + ECF46A2A1134737200390CBE /* tsk_ragel_state.h in Headers */, + ECF46A2C1134737200390CBE /* tsk_uuid.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1597,14 +2295,46 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - ECED687910F99811006B4DC9 /* tinyNET_config.h in Headers */, - ECED687B10F99811006B4DC9 /* tnet.h in Headers */, - ECED687D10F99811006B4DC9 /* tnet_auth.h in Headers */, - ECED687F10F99811006B4DC9 /* tnet_poll.h in Headers */, - ECED688110F99811006B4DC9 /* tnet_socket.h in Headers */, - ECED688310F99811006B4DC9 /* tnet_transport.h in Headers */, - ECED688610F99811006B4DC9 /* tnet_types.h in Headers */, - ECED688810F99811006B4DC9 /* tnet_utils.h in Headers */, + ECF4699011346C6B00390CBE /* tnet_dhcp.h in Headers */, + ECF4699211346C6B00390CBE /* tnet_dhcp_message.h in Headers */, + ECF4699411346C6B00390CBE /* tnet_dhcp_option.h in Headers */, + ECF4699611346C6B00390CBE /* tnet_dhcp_option_sip.h in Headers */, + ECF4699811346C6B00390CBE /* tnet_dhcp6.h in Headers */, + ECF4699A11346C6B00390CBE /* tnet_dhcp6_duid.h in Headers */, + ECF4699C11346C6B00390CBE /* tnet_dhcp6_message.h in Headers */, + ECF4699E11346C6B00390CBE /* tnet_dhcp6_option.h in Headers */, + ECF469A011346C6B00390CBE /* tnet_dns.h in Headers */, + ECF469A211346C6B00390CBE /* tnet_dns_a.h in Headers */, + ECF469A411346C6B00390CBE /* tnet_dns_aaaa.h in Headers */, + ECF469A611346C6B00390CBE /* tnet_dns_cname.h in Headers */, + ECF469A811346C6B00390CBE /* tnet_dns_message.h in Headers */, + ECF469AA11346C6B00390CBE /* tnet_dns_mx.h in Headers */, + ECF469AC11346C6B00390CBE /* tnet_dns_naptr.h in Headers */, + ECF469AE11346C6B00390CBE /* tnet_dns_ns.h in Headers */, + ECF469B011346C6B00390CBE /* tnet_dns_opt.h in Headers */, + ECF469B211346C6B00390CBE /* tnet_dns_ptr.h in Headers */, + ECF469B411346C6B00390CBE /* tnet_dns_rr.h in Headers */, + ECF469B611346C6B00390CBE /* tnet_dns_soa.h in Headers */, + ECF469B811346C6B00390CBE /* tnet_dns_srv.h in Headers */, + ECF469BA11346C6B00390CBE /* tnet_dns_txt.h in Headers */, + ECF469BC11346C6B00390CBE /* tnet_ice.h in Headers */, + ECF469BF11346C6B00390CBE /* tnet_stun.h in Headers */, + ECF469C111346C6B00390CBE /* tnet_stun_attribute.h in Headers */, + ECF469C311346C6B00390CBE /* tnet_stun_message.h in Headers */, + ECF469C411346C6B00390CBE /* tinyNET_config.h in Headers */, + ECF469C611346C6B00390CBE /* tnet.h in Headers */, + ECF469C811346C6B00390CBE /* tnet_auth.h in Headers */, + ECF469C911346C6B00390CBE /* tnet_hardwares.h in Headers */, + ECF469CB11346C6B00390CBE /* tnet_nat.h in Headers */, + ECF469CD11346C6B00390CBE /* tnet_poll.h in Headers */, + ECF469CE11346C6B00390CBE /* tnet_proto.h in Headers */, + ECF469D011346C6B00390CBE /* tnet_socket.h in Headers */, + ECF469D211346C6B00390CBE /* tnet_transport.h in Headers */, + ECF469D511346C6B00390CBE /* tnet_types.h in Headers */, + ECF469D711346C6B00390CBE /* tnet_utils.h in Headers */, + ECF469D911346C6B00390CBE /* tnet_turn.h in Headers */, + ECF469DB11346C6B00390CBE /* tnet_turn_attribute.h in Headers */, + ECF469DD11346C6B00390CBE /* tnet_turn_message.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1612,10 +2342,33 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - ECED68AD10F9991C006B4DC9 /* thttp_message.h in Headers */, - ECED68AE10F9991C006B4DC9 /* thttp_url.h in Headers */, - ECED68B110F9992F006B4DC9 /* thttp.h in Headers */, - ECED68B210F9992F006B4DC9 /* tinyhttp_config.h in Headers */, + ECF46A70113473CC00390CBE /* thttp.h in Headers */, + ECF46A71113473CC00390CBE /* thttp_auth.h in Headers */, + ECF46A72113473CC00390CBE /* thttp_header.h in Headers */, + ECF46A73113473CC00390CBE /* thttp_header_Authorization.h in Headers */, + ECF46A74113473CC00390CBE /* thttp_header_Content_Length.h in Headers */, + ECF46A75113473CC00390CBE /* thttp_header_Content_Type.h in Headers */, + ECF46A76113473CC00390CBE /* thttp_header_Proxy_Authenticate.h in Headers */, + ECF46A77113473CC00390CBE /* thttp_header_WWW_Authenticate.h in Headers */, + ECF46A78113473CC00390CBE /* thttp_parser_header.h in Headers */, + ECF46A79113473CC00390CBE /* thttp_parser_message.h in Headers */, + ECF46A7A113473CC00390CBE /* thttp_parser_url.h in Headers */, + ECF46A7B113473CC00390CBE /* thttp_message.h in Headers */, + ECF46A7C113473CC00390CBE /* thttp_url.h in Headers */, + ECF46A7D113473CC00390CBE /* tinyhttp_config.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + ECF46DBD11347F8100390CBE /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ECF46DC611347FAC00390CBE /* tipsec_xp.h in Headers */, + ECF46DC711347FAC00390CBE /* tinyipsec_config.h in Headers */, + ECF46DC811347FAD00390CBE /* tipsec_common.h in Headers */, + ECF46DCA11347FAE00390CBE /* tipsec_racoon.h in Headers */, + ECF46DCB11347FAE00390CBE /* tipsec.h in Headers */, + ECF46DCE11347FB100390CBE /* tipsec_vista.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1715,6 +2468,23 @@ productReference = ECED6AFE10F9A93A006B4DC9 /* test */; productType = "com.apple.product-type.tool"; }; + ECF46DC011347F8100390CBE /* tinyIPSec */ = { + isa = PBXNativeTarget; + buildConfigurationList = ECF46DD911347FCD00390CBE /* Build configuration list for PBXNativeTarget "tinyIPSec" */; + buildPhases = ( + ECF46DBD11347F8100390CBE /* Headers */, + ECF46DBE11347F8100390CBE /* Sources */, + ECF46DBF11347F8100390CBE /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = tinyIPSec; + productName = tinyIPSec; + productReference = ECF46DC111347F8100390CBE /* libtinyIPSec.dylib */; + productType = "com.apple.product-type.library.dynamic"; + }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ @@ -1732,6 +2502,7 @@ ECED686310F997F2006B4DC9 /* tinyNET */, ECED689C10F998E4006B4DC9 /* tinyHTTP */, ECED6AFD10F9A93A006B4DC9 /* test */, + ECF46DC011347F8100390CBE /* tinyIPSec */, ); }; /* End PBXProject section */ @@ -1741,134 +2512,134 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ECED65DD10F99666006B4DC9 /* tsip.c in Sources */, - ECED65DE10F99666006B4DC9 /* tsip_message.c in Sources */, - ECED65DF10F99666006B4DC9 /* tsip_operation.c in Sources */, - ECED65E010F99666006B4DC9 /* tsip_timers.c in Sources */, - ECED65E110F99666006B4DC9 /* tsip_uri.c in Sources */, - ECED696810F9A303006B4DC9 /* tsip_challenge.c in Sources */, - ECED696910F9A303006B4DC9 /* tsip_milenage.c in Sources */, - ECED696A10F9A303006B4DC9 /* tsip_rijndael.c in Sources */, - ECED696B10F9A303006B4DC9 /* tsip_dialog.c in Sources */, - ECED696C10F9A303006B4DC9 /* tsip_dialog_invite.client.c in Sources */, - ECED696D10F9A303006B4DC9 /* tsip_dialog_invite.server.c in Sources */, - ECED696E10F9A303006B4DC9 /* tsip_dialog_layer.c in Sources */, - ECED696F10F9A303006B4DC9 /* tsip_dialog_message.c in Sources */, - ECED697010F9A303006B4DC9 /* tsip_dialog_register.client.c in Sources */, - ECED697110F9A303006B4DC9 /* tsip_dialog_register.server.c in Sources */, - ECED697210F9A303006B4DC9 /* tsip_dialog_subscribe.client.c in Sources */, - ECED697310F9A303006B4DC9 /* tsip_dialog_subscribe.server.c in Sources */, - ECED697410F9A303006B4DC9 /* tsip_header.c in Sources */, - ECED697510F9A303006B4DC9 /* tsip_header_accept.c in Sources */, - ECED697610F9A303006B4DC9 /* tsip_header_Accept_Contact.c in Sources */, - ECED697710F9A303006B4DC9 /* tsip_header_Accept_Encoding.c in Sources */, - ECED697810F9A303006B4DC9 /* tsip_header_Accept_Language.c in Sources */, - ECED697910F9A303006B4DC9 /* tsip_header_Accept_Resource_Priority.c in Sources */, - ECED697A10F9A303006B4DC9 /* tsip_header_Alert_Info.c in Sources */, - ECED697B10F9A303006B4DC9 /* tsip_header_Allow.c in Sources */, - ECED697C10F9A303006B4DC9 /* tsip_header_Allow_Events.c in Sources */, - ECED697D10F9A303006B4DC9 /* tsip_header_Authentication_Info.c in Sources */, - ECED697E10F9A303006B4DC9 /* tsip_header_Authorization.c in Sources */, - ECED697F10F9A303006B4DC9 /* tsip_header_Call_ID.c in Sources */, - ECED698010F9A303006B4DC9 /* tsip_header_Call_Info.c in Sources */, - ECED698110F9A303006B4DC9 /* tsip_header_Contact.c in Sources */, - ECED698210F9A303006B4DC9 /* tsip_header_Content_Disposition.c in Sources */, - ECED698310F9A303006B4DC9 /* tsip_header_Content_Encoding.c in Sources */, - ECED698410F9A303006B4DC9 /* tsip_header_Content_Language.c in Sources */, - ECED698510F9A303006B4DC9 /* tsip_header_Content_Length.c in Sources */, - ECED698610F9A303006B4DC9 /* tsip_header_Content_Type.c in Sources */, - ECED698710F9A303006B4DC9 /* tsip_header_CSeq.c in Sources */, - ECED698810F9A303006B4DC9 /* tsip_header_Date.c in Sources */, - ECED698910F9A303006B4DC9 /* tsip_header_Error_Info.c in Sources */, - ECED698A10F9A303006B4DC9 /* tsip_header_Event.c in Sources */, - ECED698B10F9A303006B4DC9 /* tsip_header_Expires.c in Sources */, - ECED698C10F9A303006B4DC9 /* tsip_header_From.c in Sources */, - ECED698D10F9A303006B4DC9 /* tsip_header_History_Info.c in Sources */, - ECED698E10F9A303006B4DC9 /* tsip_header_Identity.c in Sources */, - ECED698F10F9A303006B4DC9 /* tsip_header_Identity_Info.c in Sources */, - ECED699010F9A303006B4DC9 /* tsip_header_In_Reply_To.c in Sources */, - ECED699110F9A303006B4DC9 /* tsip_header_Join.c in Sources */, - ECED699210F9A303006B4DC9 /* tsip_header_Max_Forwards.c in Sources */, - ECED699310F9A303006B4DC9 /* tsip_header_MIME_Version.c in Sources */, - ECED699410F9A303006B4DC9 /* tsip_header_Min_Expires.c in Sources */, - ECED699510F9A303006B4DC9 /* tsip_header_Min_SE.c in Sources */, - ECED699610F9A303006B4DC9 /* tsip_header_Organization.c in Sources */, - ECED699710F9A303006B4DC9 /* tsip_header_P_Access_Network_Info.c in Sources */, - ECED699810F9A303006B4DC9 /* tsip_header_P_Answer_State.c in Sources */, - ECED699910F9A303006B4DC9 /* tsip_header_P_Asserted_Identity.c in Sources */, - ECED699A10F9A303006B4DC9 /* tsip_header_P_Associated_URI.c in Sources */, - ECED699B10F9A303006B4DC9 /* tsip_header_P_Called_Party_ID.c in Sources */, - ECED699C10F9A303006B4DC9 /* tsip_header_P_Charging_Function_Addresses.c in Sources */, - ECED699D10F9A303006B4DC9 /* tsip_header_P_Charging_Vector.c in Sources */, - ECED699E10F9A303006B4DC9 /* tsip_header_P_DCS_Billing_Info.c in Sources */, - ECED699F10F9A303006B4DC9 /* tsip_header_P_DCS_LAES.c in Sources */, - ECED69A010F9A303006B4DC9 /* tsip_header_P_DCS_OSPS.c in Sources */, - ECED69A110F9A303006B4DC9 /* tsip_header_P_DCS_Redirect.c in Sources */, - ECED69A210F9A303006B4DC9 /* tsip_header_P_DCS_Trace_Party_ID.c in Sources */, - ECED69A310F9A303006B4DC9 /* tsip_header_P_Early_Media.c in Sources */, - ECED69A410F9A303006B4DC9 /* tsip_header_P_Media_Authorization.c in Sources */, - ECED69A510F9A303006B4DC9 /* tsip_header_P_Preferred_Identity.c in Sources */, - ECED69A610F9A303006B4DC9 /* tsip_header_P_Profile_Key.c in Sources */, - ECED69A710F9A303006B4DC9 /* tsip_header_P_User_Database.c in Sources */, - ECED69A810F9A303006B4DC9 /* tsip_header_P_Visited_Network_ID.c in Sources */, - ECED69A910F9A303006B4DC9 /* tsip_header_Path.c in Sources */, - ECED69AA10F9A303006B4DC9 /* tsip_header_Priority.c in Sources */, - ECED69AB10F9A303006B4DC9 /* tsip_header_Privacy.c in Sources */, - ECED69AC10F9A303006B4DC9 /* tsip_header_Proxy_Authenticate.c in Sources */, - ECED69AD10F9A303006B4DC9 /* tsip_header_Proxy_Authorization.c in Sources */, - ECED69AE10F9A303006B4DC9 /* tsip_header_Proxy_Require.c in Sources */, - ECED69AF10F9A303006B4DC9 /* tsip_header_RAck.c in Sources */, - ECED69B010F9A303006B4DC9 /* tsip_header_Reason.c in Sources */, - ECED69B110F9A303006B4DC9 /* tsip_header_Record_Route.c in Sources */, - ECED69B210F9A303006B4DC9 /* tsip_header_Refer_Sub.c in Sources */, - ECED69B310F9A303006B4DC9 /* tsip_header_Refer_To.c in Sources */, - ECED69B410F9A303006B4DC9 /* tsip_header_Referred_By.c in Sources */, - ECED69B510F9A303006B4DC9 /* tsip_header_Reject_Contact.c in Sources */, - ECED69B610F9A303006B4DC9 /* tsip_header_Replaces.c in Sources */, - ECED69B710F9A303006B4DC9 /* tsip_header_Reply_To.c in Sources */, - ECED69B810F9A303006B4DC9 /* tsip_header_Request_Disposition.c in Sources */, - ECED69B910F9A303006B4DC9 /* tsip_header_Require.c in Sources */, - ECED69BA10F9A303006B4DC9 /* tsip_header_Resource_Priority.c in Sources */, - ECED69BB10F9A303006B4DC9 /* tsip_header_Retry_After.c in Sources */, - ECED69BC10F9A303006B4DC9 /* tsip_header_Route.c in Sources */, - ECED69BD10F9A303006B4DC9 /* tsip_header_RSeq.c in Sources */, - ECED69BE10F9A303006B4DC9 /* tsip_header_Security_Client.c in Sources */, - ECED69BF10F9A303006B4DC9 /* tsip_header_Security_Server.c in Sources */, - ECED69C010F9A303006B4DC9 /* tsip_header_Security_Verify.c in Sources */, - ECED69C110F9A303006B4DC9 /* tsip_header_Server.c in Sources */, - ECED69C210F9A303006B4DC9 /* tsip_header_Service_Route.c in Sources */, - ECED69C310F9A303006B4DC9 /* tsip_header_Session_Expires.c in Sources */, - ECED69C410F9A303006B4DC9 /* tsip_header_SIP_ETag.c in Sources */, - ECED69C510F9A303006B4DC9 /* tsip_header_SIP_If_Match.c in Sources */, - ECED69C610F9A303006B4DC9 /* tsip_header_Subject.c in Sources */, - ECED69C710F9A303006B4DC9 /* tsip_header_Subscription_State.c in Sources */, - ECED69C810F9A303006B4DC9 /* tsip_header_Supported.c in Sources */, - ECED69C910F9A303006B4DC9 /* tsip_header_Target_Dialog.c in Sources */, - ECED69CA10F9A303006B4DC9 /* tsip_header_Timestamp.c in Sources */, - ECED69CB10F9A303006B4DC9 /* tsip_header_To.c in Sources */, - ECED69CC10F9A303006B4DC9 /* tsip_header_Unsupported.c in Sources */, - ECED69CD10F9A303006B4DC9 /* tsip_header_User_Agent.c in Sources */, - ECED69CE10F9A303006B4DC9 /* tsip_header_Via.c in Sources */, - ECED69CF10F9A303006B4DC9 /* tsip_header_Warning.c in Sources */, - ECED69D010F9A303006B4DC9 /* tsip_header_WWW_Authenticate.c in Sources */, - ECED69D110F9A303006B4DC9 /* tsip_parser_header.c in Sources */, - ECED69D210F9A303006B4DC9 /* tsip_parser_message.c in Sources */, - ECED69D310F9A303006B4DC9 /* tsip_parser_uri.c in Sources */, - ECED69D410F9A303006B4DC9 /* tsip_ragel_state.c in Sources */, - ECED69DA10F9A303006B4DC9 /* tsip_dialog_message_sm.c in Sources */, - ECED69DB10F9A303006B4DC9 /* tsip_dialog_register_sm.c in Sources */, - ECED69DC10F9A303006B4DC9 /* tsip_transac_ict_sm.c in Sources */, - ECED69DD10F9A303006B4DC9 /* tsip_transac_ist_sm.c in Sources */, - ECED69DE10F9A303006B4DC9 /* tsip_transac_nict_sm.c in Sources */, - ECED69DF10F9A303006B4DC9 /* tsip_transac_nist_sm.c in Sources */, - ECED69E010F9A303006B4DC9 /* tsip_transac.c in Sources */, - ECED69E110F9A303006B4DC9 /* tsip_transac_ict.c in Sources */, - ECED69E210F9A303006B4DC9 /* tsip_transac_ist.c in Sources */, - ECED69E310F9A303006B4DC9 /* tsip_transac_layer.c in Sources */, - ECED69E410F9A303006B4DC9 /* tsip_transac_nict.c in Sources */, - ECED69E510F9A303006B4DC9 /* tsip_transac_nist.c in Sources */, - ECED69E610F9A303006B4DC9 /* tsip_transport.c in Sources */, - ECED69E710F9A303006B4DC9 /* tsip_transport_layer.c in Sources */, + ECF46CAA1134755E00390CBE /* tsip_api_invite.c in Sources */, + ECF46CAB1134755E00390CBE /* tsip_api_message.c in Sources */, + ECF46CAC1134755E00390CBE /* tsip_api_publish.c in Sources */, + ECF46CAD1134755E00390CBE /* tsip_api_register.c in Sources */, + ECF46CAE1134755E00390CBE /* tsip_api_subscribe.c in Sources */, + ECF46CAF1134755E00390CBE /* tsip_challenge.c in Sources */, + ECF46CB01134755E00390CBE /* tsip_milenage.c in Sources */, + ECF46CB11134755E00390CBE /* tsip_rijndael.c in Sources */, + ECF46CB21134755E00390CBE /* tsip_dialog.c in Sources */, + ECF46CB31134755E00390CBE /* tsip_dialog_invite.client.c in Sources */, + ECF46CB41134755E00390CBE /* tsip_dialog_invite.server.c in Sources */, + ECF46CB51134755E00390CBE /* tsip_dialog_layer.c in Sources */, + ECF46CB61134755E00390CBE /* tsip_dialog_message.c in Sources */, + ECF46CB71134755E00390CBE /* tsip_dialog_register.client.c in Sources */, + ECF46CB81134755E00390CBE /* tsip_dialog_register.server.c in Sources */, + ECF46CB91134755E00390CBE /* tsip_dialog_subscribe.client.c in Sources */, + ECF46CBA1134755E00390CBE /* tsip_dialog_subscribe.server.c in Sources */, + ECF46CBB1134755E00390CBE /* tsip_header.c in Sources */, + ECF46CBC1134755E00390CBE /* tsip_header_accept.c in Sources */, + ECF46CBD1134755E00390CBE /* tsip_header_Accept_Contact.c in Sources */, + ECF46CBE1134755E00390CBE /* tsip_header_Accept_Encoding.c in Sources */, + ECF46CBF1134755E00390CBE /* tsip_header_Accept_Language.c in Sources */, + ECF46CC01134755E00390CBE /* tsip_header_Accept_Resource_Priority.c in Sources */, + ECF46CC11134755E00390CBE /* tsip_header_Alert_Info.c in Sources */, + ECF46CC21134755E00390CBE /* tsip_header_Allow.c in Sources */, + ECF46CC31134755E00390CBE /* tsip_header_Allow_Events.c in Sources */, + ECF46CC41134755E00390CBE /* tsip_header_Authentication_Info.c in Sources */, + ECF46CC51134755E00390CBE /* tsip_header_Authorization.c in Sources */, + ECF46CC61134755E00390CBE /* tsip_header_Call_ID.c in Sources */, + ECF46CC71134755E00390CBE /* tsip_header_Call_Info.c in Sources */, + ECF46CC81134755E00390CBE /* tsip_header_Contact.c in Sources */, + ECF46CC91134755E00390CBE /* tsip_header_Content_Disposition.c in Sources */, + ECF46CCA1134755E00390CBE /* tsip_header_Content_Encoding.c in Sources */, + ECF46CCB1134755E00390CBE /* tsip_header_Content_Language.c in Sources */, + ECF46CCC1134755E00390CBE /* tsip_header_Content_Length.c in Sources */, + ECF46CCD1134755E00390CBE /* tsip_header_Content_Type.c in Sources */, + ECF46CCE1134755E00390CBE /* tsip_header_CSeq.c in Sources */, + ECF46CCF1134755E00390CBE /* tsip_header_Date.c in Sources */, + ECF46CD01134755E00390CBE /* tsip_header_Error_Info.c in Sources */, + ECF46CD11134755E00390CBE /* tsip_header_Event.c in Sources */, + ECF46CD21134755E00390CBE /* tsip_header_Expires.c in Sources */, + ECF46CD31134755E00390CBE /* tsip_header_From.c in Sources */, + ECF46CD41134755E00390CBE /* tsip_header_History_Info.c in Sources */, + ECF46CD51134755E00390CBE /* tsip_header_Identity.c in Sources */, + ECF46CD61134755E00390CBE /* tsip_header_Identity_Info.c in Sources */, + ECF46CD71134755E00390CBE /* tsip_header_In_Reply_To.c in Sources */, + ECF46CD81134755E00390CBE /* tsip_header_Join.c in Sources */, + ECF46CD91134755E00390CBE /* tsip_header_Max_Forwards.c in Sources */, + ECF46CDA1134755E00390CBE /* tsip_header_MIME_Version.c in Sources */, + ECF46CDB1134755E00390CBE /* tsip_header_Min_Expires.c in Sources */, + ECF46CDC1134755E00390CBE /* tsip_header_Min_SE.c in Sources */, + ECF46CDD1134755E00390CBE /* tsip_header_Organization.c in Sources */, + ECF46CDE1134755E00390CBE /* tsip_header_P_Access_Network_Info.c in Sources */, + ECF46CDF1134755E00390CBE /* tsip_header_P_Answer_State.c in Sources */, + ECF46CE01134755E00390CBE /* tsip_header_P_Asserted_Identity.c in Sources */, + ECF46CE11134755E00390CBE /* tsip_header_P_Associated_URI.c in Sources */, + ECF46CE21134755E00390CBE /* tsip_header_P_Called_Party_ID.c in Sources */, + ECF46CE31134755E00390CBE /* tsip_header_P_Charging_Function_Addresses.c in Sources */, + ECF46CE41134755E00390CBE /* tsip_header_P_Charging_Vector.c in Sources */, + ECF46CE51134755E00390CBE /* tsip_header_P_DCS_Billing_Info.c in Sources */, + ECF46CE61134755E00390CBE /* tsip_header_P_DCS_LAES.c in Sources */, + ECF46CE71134755E00390CBE /* tsip_header_P_DCS_OSPS.c in Sources */, + ECF46CE81134755E00390CBE /* tsip_header_P_DCS_Redirect.c in Sources */, + ECF46CE91134755E00390CBE /* tsip_header_P_DCS_Trace_Party_ID.c in Sources */, + ECF46CEA1134755E00390CBE /* tsip_header_P_Early_Media.c in Sources */, + ECF46CEB1134755E00390CBE /* tsip_header_P_Media_Authorization.c in Sources */, + ECF46CEC1134755E00390CBE /* tsip_header_P_Preferred_Identity.c in Sources */, + ECF46CED1134755E00390CBE /* tsip_header_P_Profile_Key.c in Sources */, + ECF46CEE1134755E00390CBE /* tsip_header_P_User_Database.c in Sources */, + ECF46CEF1134755E00390CBE /* tsip_header_P_Visited_Network_ID.c in Sources */, + ECF46CF01134755E00390CBE /* tsip_header_Path.c in Sources */, + ECF46CF11134755E00390CBE /* tsip_header_Priority.c in Sources */, + ECF46CF21134755E00390CBE /* tsip_header_Privacy.c in Sources */, + ECF46CF31134755E00390CBE /* tsip_header_Proxy_Authenticate.c in Sources */, + ECF46CF41134755E00390CBE /* tsip_header_Proxy_Authorization.c in Sources */, + ECF46CF51134755E00390CBE /* tsip_header_Proxy_Require.c in Sources */, + ECF46CF61134755E00390CBE /* tsip_header_RAck.c in Sources */, + ECF46CF71134755E00390CBE /* tsip_header_Reason.c in Sources */, + ECF46CF81134755E00390CBE /* tsip_header_Record_Route.c in Sources */, + ECF46CF91134755E00390CBE /* tsip_header_Refer_Sub.c in Sources */, + ECF46CFA1134755E00390CBE /* tsip_header_Refer_To.c in Sources */, + ECF46CFB1134755E00390CBE /* tsip_header_Referred_By.c in Sources */, + ECF46CFC1134755E00390CBE /* tsip_header_Reject_Contact.c in Sources */, + ECF46CFD1134755E00390CBE /* tsip_header_Replaces.c in Sources */, + ECF46CFE1134755E00390CBE /* tsip_header_Reply_To.c in Sources */, + ECF46CFF1134755E00390CBE /* tsip_header_Request_Disposition.c in Sources */, + ECF46D001134755E00390CBE /* tsip_header_Require.c in Sources */, + ECF46D011134755E00390CBE /* tsip_header_Resource_Priority.c in Sources */, + ECF46D021134755E00390CBE /* tsip_header_Retry_After.c in Sources */, + ECF46D031134755E00390CBE /* tsip_header_Route.c in Sources */, + ECF46D041134755E00390CBE /* tsip_header_RSeq.c in Sources */, + ECF46D051134755E00390CBE /* tsip_header_Security_Client.c in Sources */, + ECF46D061134755E00390CBE /* tsip_header_Security_Server.c in Sources */, + ECF46D071134755E00390CBE /* tsip_header_Security_Verify.c in Sources */, + ECF46D081134755E00390CBE /* tsip_header_Server.c in Sources */, + ECF46D091134755E00390CBE /* tsip_header_Service_Route.c in Sources */, + ECF46D0A1134755E00390CBE /* tsip_header_Session_Expires.c in Sources */, + ECF46D0B1134755E00390CBE /* tsip_header_SIP_ETag.c in Sources */, + ECF46D0C1134755E00390CBE /* tsip_header_SIP_If_Match.c in Sources */, + ECF46D0D1134755E00390CBE /* tsip_header_Subject.c in Sources */, + ECF46D0E1134755E00390CBE /* tsip_header_Subscription_State.c in Sources */, + ECF46D0F1134755E00390CBE /* tsip_header_Supported.c in Sources */, + ECF46D101134755E00390CBE /* tsip_header_Target_Dialog.c in Sources */, + ECF46D111134755E00390CBE /* tsip_header_Timestamp.c in Sources */, + ECF46D121134755E00390CBE /* tsip_header_To.c in Sources */, + ECF46D131134755E00390CBE /* tsip_header_Unsupported.c in Sources */, + ECF46D141134755E00390CBE /* tsip_header_User_Agent.c in Sources */, + ECF46D151134755E00390CBE /* tsip_header_Via.c in Sources */, + ECF46D161134755E00390CBE /* tsip_header_Warning.c in Sources */, + ECF46D171134755E00390CBE /* tsip_header_WWW_Authenticate.c in Sources */, + ECF46D191134755E00390CBE /* tsip_parser_header.c in Sources */, + ECF46D1A1134755E00390CBE /* tsip_parser_message.c in Sources */, + ECF46D1B1134755E00390CBE /* tsip_parser_uri.c in Sources */, + ECF46D1C1134755E00390CBE /* tsip_transac.c in Sources */, + ECF46D1D1134755E00390CBE /* tsip_transac_ict.c in Sources */, + ECF46D1E1134755E00390CBE /* tsip_transac_ist.c in Sources */, + ECF46D1F1134755E00390CBE /* tsip_transac_layer.c in Sources */, + ECF46D201134755E00390CBE /* tsip_transac_nict.c in Sources */, + ECF46D211134755E00390CBE /* tsip_transac_nist.c in Sources */, + ECF46D221134755E00390CBE /* tsip_transport.c in Sources */, + ECF46D231134755E00390CBE /* tsip_transport_ipsec.c in Sources */, + ECF46D241134755E00390CBE /* tsip_transport_layer.c in Sources */, + ECF46D251134755E00390CBE /* tsip.c in Sources */, + ECF46D261134755E00390CBE /* tsip_event.c in Sources */, + ECF46D271134755E00390CBE /* tsip_message.c in Sources */, + ECF46D281134755E00390CBE /* tsip_operation.c in Sources */, + ECF46D291134755E00390CBE /* tsip_timers.c in Sources */, + ECF46D2A1134755E00390CBE /* tsip_uri.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1901,6 +2672,10 @@ ECED685210F996F6006B4DC9 /* tsk_timer.c in Sources */, ECED685410F996F6006B4DC9 /* tsk_url.c in Sources */, ECED685610F996F6006B4DC9 /* tsk_xml.c in Sources */, + ECF46A251134737200390CBE /* tsk_fsm.c in Sources */, + ECF46A271134737200390CBE /* tsk_ppfcs32.c in Sources */, + ECF46A291134737200390CBE /* tsk_ragel_state.c in Sources */, + ECF46A2B1134737200390CBE /* tsk_uuid.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1908,14 +2683,44 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ECED687A10F99811006B4DC9 /* tnet.c in Sources */, - ECED687C10F99811006B4DC9 /* tnet_auth.c in Sources */, - ECED687E10F99811006B4DC9 /* tnet_poll.c in Sources */, - ECED688010F99811006B4DC9 /* tnet_socket.c in Sources */, - ECED688210F99811006B4DC9 /* tnet_transport.c in Sources */, - ECED688410F99811006B4DC9 /* tnet_transport_poll.c in Sources */, - ECED688510F99811006B4DC9 /* tnet_transport_win32.c in Sources */, - ECED688710F99811006B4DC9 /* tnet_utils.c in Sources */, + ECF4698F11346C6B00390CBE /* tnet_dhcp.c in Sources */, + ECF4699111346C6B00390CBE /* tnet_dhcp_message.c in Sources */, + ECF4699311346C6B00390CBE /* tnet_dhcp_option.c in Sources */, + ECF4699511346C6B00390CBE /* tnet_dhcp_option_sip.c in Sources */, + ECF4699711346C6B00390CBE /* tnet_dhcp6.c in Sources */, + ECF4699911346C6B00390CBE /* tnet_dhcp6_duid.c in Sources */, + ECF4699B11346C6B00390CBE /* tnet_dhcp6_message.c in Sources */, + ECF4699D11346C6B00390CBE /* tnet_dhcp6_option.c in Sources */, + ECF4699F11346C6B00390CBE /* tnet_dns.c in Sources */, + ECF469A111346C6B00390CBE /* tnet_dns_a.c in Sources */, + ECF469A311346C6B00390CBE /* tnet_dns_aaaa.c in Sources */, + ECF469A511346C6B00390CBE /* tnet_dns_cname.c in Sources */, + ECF469A711346C6B00390CBE /* tnet_dns_message.c in Sources */, + ECF469A911346C6B00390CBE /* tnet_dns_mx.c in Sources */, + ECF469AB11346C6B00390CBE /* tnet_dns_naptr.c in Sources */, + ECF469AD11346C6B00390CBE /* tnet_dns_ns.c in Sources */, + ECF469AF11346C6B00390CBE /* tnet_dns_opt.c in Sources */, + ECF469B111346C6B00390CBE /* tnet_dns_ptr.c in Sources */, + ECF469B311346C6B00390CBE /* tnet_dns_rr.c in Sources */, + ECF469B511346C6B00390CBE /* tnet_dns_soa.c in Sources */, + ECF469B711346C6B00390CBE /* tnet_dns_srv.c in Sources */, + ECF469B911346C6B00390CBE /* tnet_dns_txt.c in Sources */, + ECF469BB11346C6B00390CBE /* tnet_ice.c in Sources */, + ECF469BE11346C6B00390CBE /* tnet_stun.c in Sources */, + ECF469C011346C6B00390CBE /* tnet_stun_attribute.c in Sources */, + ECF469C211346C6B00390CBE /* tnet_stun_message.c in Sources */, + ECF469C511346C6B00390CBE /* tnet.c in Sources */, + ECF469C711346C6B00390CBE /* tnet_auth.c in Sources */, + ECF469CA11346C6B00390CBE /* tnet_nat.c in Sources */, + ECF469CC11346C6B00390CBE /* tnet_poll.c in Sources */, + ECF469CF11346C6B00390CBE /* tnet_socket.c in Sources */, + ECF469D111346C6B00390CBE /* tnet_transport.c in Sources */, + ECF469D311346C6B00390CBE /* tnet_transport_poll.c in Sources */, + ECF469D411346C6B00390CBE /* tnet_transport_win32.c in Sources */, + ECF469D611346C6B00390CBE /* tnet_utils.c in Sources */, + ECF469D811346C6B00390CBE /* tnet_turn.c in Sources */, + ECF469DA11346C6B00390CBE /* tnet_turn_attribute.c in Sources */, + ECF469DC11346C6B00390CBE /* tnet_turn_message.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1923,10 +2728,19 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ECED68BD10F99944006B4DC9 /* thttp.c in Sources */, - ECED68BE10F99944006B4DC9 /* thttp_message.c in Sources */, - ECED68BF10F99944006B4DC9 /* thttp_utl.c in Sources */, - ECED6AEE10F9A66E006B4DC9 /* thttp_auth.c in Sources */, + ECF46A7E113473CC00390CBE /* thttp_auth.c in Sources */, + ECF46A7F113473CC00390CBE /* thttp_header.c in Sources */, + ECF46A80113473CC00390CBE /* thttp_header_Authorization.c in Sources */, + ECF46A81113473CC00390CBE /* thttp_header_Content_Length.c in Sources */, + ECF46A82113473CC00390CBE /* thttp_header_Content_Type.c in Sources */, + ECF46A83113473CC00390CBE /* thttp_header_Proxy_Authenticate.c in Sources */, + ECF46A84113473CC00390CBE /* thttp_header_WWW_Authenticate.c in Sources */, + ECF46A86113473CC00390CBE /* thttp_parser_header.c in Sources */, + ECF46A87113473CC00390CBE /* thttp_parser_message.c in Sources */, + ECF46A88113473CC00390CBE /* thttp_parser_url.c in Sources */, + ECF46A89113473CC00390CBE /* thttp.c in Sources */, + ECF46A8A113473CC00390CBE /* thttp_message.c in Sources */, + ECF46A8B113473CC00390CBE /* thttp_url.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1939,6 +2753,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + ECF46DBE11347F8100390CBE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ECF46DC411347FAA00390CBE /* tipsec.c in Sources */, + ECF46DC511347FAB00390CBE /* tipsec_xp.c in Sources */, + ECF46DC911347FAD00390CBE /* tipsec_racoon.c in Sources */, + ECF46DCC11347FAF00390CBE /* tipsec_vista.c in Sources */, + ECF46DCD11347FB100390CBE /* tipsec_common.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ @@ -2001,9 +2827,9 @@ GCC_MODEL_TUNING = G5; GCC_OPTIMIZATION_LEVEL = 0; HEADER_SEARCH_PATHS = ( + ../../../doubango/tinyNET/src, ../../../doubango/tinySIP/include, ../../../doubango/tinyHTTP/include, - ../../../doubango/thirdparties/mac/include/smc, ); INSTALL_PATH = /usr/local/lib; OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO"; @@ -2093,6 +2919,10 @@ GCC_ENABLE_FIX_AND_CONTINUE = YES; GCC_MODEL_TUNING = G5; GCC_OPTIMIZATION_LEVEL = 0; + HEADER_SEARCH_PATHS = ( + ../../../doubango/tinyNET/src, + ../../../doubango/tinySAK/src, + ); INSTALL_PATH = /usr/local/lib; PREBINDING = NO; PRODUCT_NAME = tinyNET; @@ -2158,10 +2988,9 @@ GCC_OPTIMIZATION_LEVEL = 0; HEADER_SEARCH_PATHS = ( ../../../doubango/tinyHTTP/include, - ../../../doubango/tinySAK, + ../../../doubango/tinySAK/src, ../../../doubango/tinySIP/include, - ../../../doubango/tinyNET, - ../../../doubango/thirdparties/mac/include/smc, + ../../../doubango/tinyNET/src, ); INSTALL_PATH = /usr/local/bin; PREBINDING = NO; @@ -2184,6 +3013,39 @@ }; name = Release; }; + ECF46DC211347F8200390CBE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + COPY_PHASE_STRIP = NO; + EXECUTABLE_PREFIX = lib; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + HEADER_SEARCH_PATHS = ../../../doubango/tinySAK/src; + INSTALL_PATH = /usr/local/lib; + PREBINDING = NO; + PRODUCT_NAME = tinyIPSec; + }; + name = Debug; + }; + ECF46DC311347F8200390CBE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + EXECUTABLE_PREFIX = lib; + GCC_ENABLE_FIX_AND_CONTINUE = NO; + GCC_MODEL_TUNING = G5; + INSTALL_PATH = /usr/local/lib; + PREBINDING = NO; + PRODUCT_NAME = tinyIPSec; + ZERO_LINK = NO; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -2241,6 +3103,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + ECF46DD911347FCD00390CBE /* Build configuration list for PBXNativeTarget "tinyIPSec" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + ECF46DC211347F8200390CBE /* Debug */, + ECF46DC311347F8200390CBE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ }; rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;