diff --git a/trunk/tinyHTTP/test/test_url.h b/trunk/tinyHTTP/test/test_url.h index a2d68057..9b212913 100644 --- a/trunk/tinyHTTP/test/test_url.h +++ b/trunk/tinyHTTP/test/test_url.h @@ -51,7 +51,6 @@ void test_url_tostring(const thttp_url_t *url) void test_url_parser() { int i; - tsk_list_item_t *item = 0; for(i=0; issl))) { - TSK_DEBUG_INFO("Server cert - Subject: %s", X509_NAME_oneline(X509_get_subject_name(svr_cert), 0, 0)); - TSK_DEBUG_INFO("Server cert - Issuer: %s", X509_NAME_oneline(X509_get_issuer_name(svr_cert), 0, 0)); - X509_free(svr_cert); +#if defined(DEBUG) || defined(_DEBUG) + /* Print Server cert */ + if((ret == 0) && (svr_cert = SSL_get_peer_certificate(socket->ssl))) { + TSK_DEBUG_INFO("Server cert - Subject: %s", X509_NAME_oneline(X509_get_subject_name(svr_cert), 0, 0)); + TSK_DEBUG_INFO("Server cert - Issuer: %s", X509_NAME_oneline(X509_get_issuer_name(svr_cert), 0, 0)); + X509_free(svr_cert); } #endif @@ -339,91 +339,93 @@ int tnet_tls_socket_init(tnet_tls_socket_t* socket) -//================================================================================================= -// TLS socket object definition -// -static void* tnet_tls_socket_create(void * self, va_list * app) -{ - static int __ssl_initialized = 0; - tnet_tls_socket_t *socket = self; - if(socket){ - int ret; - - tsk_safeobj_init(socket); - -#if defined(__GNUC__) - socket->fd = (tnet_fd_t)va_arg(*app, unsigned); -#else - socket->fd = va_arg(*app, tnet_fd_t); -#endif - socket->tlsfile_ca = tsk_strdup(va_arg(*app, const char *)); - socket->tlsfile_pvk = tsk_strdup(va_arg(*app, const char *)); - socket->tlsfile_pbk = tsk_strdup(va_arg(*app, const char *)); - socket->isClient = va_arg(*app, int); - - /* Mutual authentication requires that the TLS client-side also hold a certificate. */ - if(socket->tlsfile_pvk && socket->tlsfile_pbk && socket->tlsfile_ca){ - socket->mutual_auth = 1; - } - else{ - socket->mutual_auth = 0; - } - - /* Initialize SSL: http://www.openssl.org/docs/ssl/SSL_library_init.html */ -#if TNET_HAVE_OPENSSL_H - if(!__ssl_initialized){ +//================================================================================================= +// TLS socket object definition +// +static void* tnet_tls_socket_create(void * self, va_list * app) +{ +#if TNET_HAVE_OPENSSL_H + static int __ssl_initialized = 0; +#endif + tnet_tls_socket_t *socket = self; + if(socket){ + int ret; + + tsk_safeobj_init(socket); + +#if defined(__GNUC__) + socket->fd = (tnet_fd_t)va_arg(*app, unsigned); +#else + socket->fd = va_arg(*app, tnet_fd_t); +#endif + socket->tlsfile_ca = tsk_strdup(va_arg(*app, const char *)); + socket->tlsfile_pvk = tsk_strdup(va_arg(*app, const char *)); + socket->tlsfile_pbk = tsk_strdup(va_arg(*app, const char *)); + socket->isClient = va_arg(*app, int); + + /* Mutual authentication requires that the TLS client-side also hold a certificate. */ + if(socket->tlsfile_pvk && socket->tlsfile_pbk && socket->tlsfile_ca){ + socket->mutual_auth = 1; + } + else{ + socket->mutual_auth = 0; + } + + /* Initialize SSL: http://www.openssl.org/docs/ssl/SSL_library_init.html */ +#if TNET_HAVE_OPENSSL_H + if(!__ssl_initialized){ SSL_library_init(); - SSL_load_error_strings(); - __ssl_initialized = 1; - } -#endif - /* Initialize the socket itself: CTX, method, ... */ - if((ret = tnet_tls_socket_init(socket))){ - TSK_DEBUG_ERROR("Failed to initialize SSL socket [%d].", ret); - } - else{ - socket->initialized = 1; - } - } - return self; -} - -static void* tnet_tls_socket_destroy(void * self) -{ - tnet_tls_socket_t *socket = self; - if(socket){ - - tsk_safeobj_deinit(socket); - - TSK_FREE(socket->tlsdir_cas); - TSK_FREE(socket->tlsfile_ca); - TSK_FREE(socket->tlsfile_pvk); - TSK_FREE(socket->tlsfile_pbk); - TSK_FREE(socket->password); - -#if TNET_HAVE_OPENSSL_H - if(socket->ssl){ - //SSL_shutdown(socket->ssl); - SSL_free(socket->ssl); - } - if(socket->ssl_ctx){ - SSL_CTX_free(socket->ssl_ctx); - } -#endif - } - return self; -} - -static int tnet_tls_socket_cmp(const void *obj1, const void *obj2) -{ - return -1; -} - -static const tsk_object_def_t tnet_tls_socket_def_s = -{ - sizeof(tnet_tls_socket_t), - tnet_tls_socket_create, - tnet_tls_socket_destroy, - tnet_tls_socket_cmp, -}; + SSL_load_error_strings(); + __ssl_initialized = 1; + } +#endif + /* Initialize the socket itself: CTX, method, ... */ + if((ret = tnet_tls_socket_init(socket))){ + TSK_DEBUG_ERROR("Failed to initialize SSL socket [%d].", ret); + } + else{ + socket->initialized = 1; + } + } + return self; +} + +static void* tnet_tls_socket_destroy(void * self) +{ + tnet_tls_socket_t *socket = self; + if(socket){ + + tsk_safeobj_deinit(socket); + + TSK_FREE(socket->tlsdir_cas); + TSK_FREE(socket->tlsfile_ca); + TSK_FREE(socket->tlsfile_pvk); + TSK_FREE(socket->tlsfile_pbk); + TSK_FREE(socket->password); + +#if TNET_HAVE_OPENSSL_H + if(socket->ssl){ + //SSL_shutdown(socket->ssl); + SSL_free(socket->ssl); + } + if(socket->ssl_ctx){ + SSL_CTX_free(socket->ssl_ctx); + } +#endif + } + return self; +} + +static int tnet_tls_socket_cmp(const void *obj1, const void *obj2) +{ + return -1; +} + +static const tsk_object_def_t tnet_tls_socket_def_s = +{ + sizeof(tnet_tls_socket_t), + tnet_tls_socket_create, + tnet_tls_socket_destroy, + tnet_tls_socket_cmp, +}; const void *tnet_tls_socket_def_t = &tnet_tls_socket_def_s; \ No newline at end of file diff --git a/trunk/tinyNET/src/tnet_transport.c b/trunk/tinyNET/src/tnet_transport.c index 72dc3f5a..88908823 100644 --- a/trunk/tinyNET/src/tnet_transport.c +++ b/trunk/tinyNET/src/tnet_transport.c @@ -47,7 +47,8 @@ int tnet_transport_start(tnet_transport_handle_t* handle) { tnet_transport_t *transport = handle; - if((ret = tnet_transport_create_context(handle))){ /* context will be used by the main thread ==> create it before the tread. */ + TSK_RUNNABLE(transport)->run = run; + if((ret = tsk_runnable_start(TSK_RUNNABLE(transport), tnet_transport_event_def_t))){ return ret; } if((ret = tsk_thread_create(&(transport->mainThreadId[0]), tnet_transport_mainthread, transport))){ /* More important than "tsk_runnable_start" ==> start it first. */ @@ -55,11 +56,6 @@ int tnet_transport_start(tnet_transport_handle_t* handle) tsk_runnable_stop(TSK_RUNNABLE(transport)); return ret; } - - TSK_RUNNABLE(transport)->run = run; - if((ret = tsk_runnable_start(TSK_RUNNABLE(transport), tnet_transport_event_def_t))){ - return ret; - } } else{ TSK_DEBUG_ERROR("NULL transport object."); @@ -145,7 +141,7 @@ tnet_fd_t tnet_transport_connectto(const tnet_transport_handle_t *handle, const tnet_transport_t *transport = (tnet_transport_t*)handle; struct sockaddr_storage to; int status = -1; - tnet_fd_t fd = INVALID_SOCKET; + tnet_fd_t fd = TNET_INVALID_FD; if(!transport || !transport->master){ TSK_DEBUG_ERROR("Invalid transport handle."); @@ -291,7 +287,8 @@ static void* tnet_transport_create(void * self, va_list * app) transport->description = tsk_strdup(description); } - transport->master = TNET_SOCKET_CREATE(host, port, type); + transport->master = TNET_SOCKET_CREATE(host, port, type); + transport->context = TNET_TRANSPORT_CONTEXT_CREATE(); } return self; } @@ -303,6 +300,7 @@ static void* tnet_transport_destroy(void * self) { tnet_transport_shutdown(transport); TSK_OBJECT_SAFE_FREE(transport->master); + TSK_OBJECT_SAFE_FREE(transport->context); TSK_FREE(transport->description); } diff --git a/trunk/tinyNET/src/tnet_transport.h b/trunk/tinyNET/src/tnet_transport.h index b94e7b43..ba643d25 100644 --- a/trunk/tinyNET/src/tnet_transport.h +++ b/trunk/tinyNET/src/tnet_transport.h @@ -1,128 +1,129 @@ -/* -* 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_transport.h - * @brief Network transport layer. - * - * @author Mamadou Diop - * - * @date Created: Sat Nov 8 16:54:58 2009 mdiop - */ -#ifndef TNET_SERVER_H -#define TNET_SERVER_H - -#include "tinyNET_config.h" - -#include "tnet_socket.h" -#include "tnet_utils.h" -#include "tsk_runnable.h" - -TNET_BEGIN_DECLS - -#define DGRAM_MAX_SIZE 8192 -#define STREAM_MAX_SIZE 8192 - -#define TNET_TRANSPORT_CREATE(host, port, type, description) tsk_object_new(tnet_transport_def_t, (const char*)host, (tnet_port_t)port, (tnet_socket_type_t)type, (const char*) description) -#define TNET_TRANSPORT_EVENT_CREATE(type, callback_data, fd) tsk_object_new(tnet_transport_event_def_t, (tnet_transport_event_type_t)type, (const void*)callback_data, (tnet_fd_t)fd) - -#define TNET_TRANSPORT_CB_F(callback) ((tnet_transport_cb_f)callback) - -typedef void tnet_transport_handle_t; - -typedef enum tnet_transport_event_type_e -{ - event_data, - event_closed, - event_connected -} -tnet_transport_event_type_t; - -typedef struct tnet_transport_event_s -{ - TSK_DECLARE_OBJECT; - - tnet_transport_event_type_t type; - - void* data; - size_t size; - - const void* callback_data; - tnet_fd_t fd; -} -tnet_transport_event_t; - -typedef int (*tnet_transport_cb_f)(const tnet_transport_event_t* e); - -TINYNET_API int tnet_transport_start(tnet_transport_handle_t* transport); -TINYNET_API int tnet_transport_create_context(tnet_transport_handle_t* handle); -TINYNET_API int tnet_transport_isready(const tnet_transport_handle_t *handle); -TINYNET_API int tnet_transport_issecure(const tnet_transport_handle_t *handle); -TINYNET_API const char* tnet_transport_get_description(const tnet_transport_handle_t *handle); -TINYNET_API int tnet_transport_get_ip_n_port(const tnet_transport_handle_t *handle, tnet_fd_t fd, tnet_ip_t *ip, tnet_port_t *port); - -TINYNET_API int tnet_transport_isconnected(const tnet_transport_handle_t *handle, tnet_fd_t fd); -TINYNET_API int tnet_transport_have_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd); -TINYNET_API const tnet_tls_socket_handle_t* tnet_transport_get_tlshandle(const tnet_transport_handle_t *handle, tnet_fd_t fd); -TINYNET_API int tnet_transport_add_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd, tnet_socket_type_t type, int take_ownership, int isClient); -TINYNET_API int tnet_transport_remove_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd); -TINYNET_API tnet_fd_t tnet_transport_connectto(const tnet_transport_handle_t *handle, const char* host, tnet_port_t port, tnet_socket_type_t type); -#define tnet_transport_connectto2(handle, host, port) tnet_transport_connectto(handle, host, port, tnet_transport_get_type(handle)) -TINYNET_API size_t tnet_transport_send(const tnet_transport_handle_t *handle, tnet_fd_t from, const void* buf, size_t size); -TINYNET_API size_t tnet_transport_sendto(const tnet_transport_handle_t *handle, tnet_fd_t from, const struct sockaddr *to, const void* buf, size_t size); - -TINYNET_API int tnet_transport_set_callback(const tnet_transport_handle_t *handle, tnet_transport_cb_f callback, const void* callback_data); - -TINYNET_API tnet_socket_type_t tnet_transport_get_type(const tnet_transport_handle_t *handle); -TINYNET_API int tnet_transport_shutdown(tnet_transport_handle_t* handle); - -typedef struct tnet_transport_s -{ - TSK_DECLARE_RUNNABLE; - - tnet_socket_t *master; - - void *context; - - unsigned connected:1; - unsigned active:1; - void* mainThreadId[1]; - - char *description; - - tnet_transport_cb_f callback; - const void* callback_data; - - /* TLS certs */ - char* tlsfile_ca; - char* tlsfile_pvk; - char* tlsfile_pbk; - unsigned have_tls:1; -} -tnet_transport_t; - -TINYNET_GEXTERN const void *tnet_transport_def_t; -TINYNET_GEXTERN const void *tnet_transport_event_def_t; - -TNET_END_DECLS - -#endif /* TNET_SERVER_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 tnet_transport.h + * @brief Network transport layer. + * + * @author Mamadou Diop + * + * @date Created: Sat Nov 8 16:54:58 2009 mdiop + */ +#ifndef TNET_SERVER_H +#define TNET_SERVER_H + +#include "tinyNET_config.h" + +#include "tnet_socket.h" +#include "tnet_utils.h" +#include "tsk_runnable.h" + +TNET_BEGIN_DECLS + +#define DGRAM_MAX_SIZE 8192 +#define STREAM_MAX_SIZE 8192 + +#define TNET_TRANSPORT_CREATE(host, port, type, description) tsk_object_new(tnet_transport_def_t, (const char*)host, (tnet_port_t)port, (tnet_socket_type_t)type, (const char*) description) +#define TNET_TRANSPORT_EVENT_CREATE(type, callback_data, fd) tsk_object_new(tnet_transport_event_def_t, (tnet_transport_event_type_t)type, (const void*)callback_data, (tnet_fd_t)fd) +#define TNET_TRANSPORT_CONTEXT_CREATE() tsk_object_new(tnet_transport_context_def_t) + +#define TNET_TRANSPORT_CB_F(callback) ((tnet_transport_cb_f)callback) + +typedef void tnet_transport_handle_t; + +typedef enum tnet_transport_event_type_e +{ + event_data, + event_closed, + event_connected +} +tnet_transport_event_type_t; + +typedef struct tnet_transport_event_s +{ + TSK_DECLARE_OBJECT; + + tnet_transport_event_type_t type; + + void* data; + size_t size; + + const void* callback_data; + tnet_fd_t fd; +} +tnet_transport_event_t; + +typedef int (*tnet_transport_cb_f)(const tnet_transport_event_t* e); + +TINYNET_API int tnet_transport_start(tnet_transport_handle_t* transport); +TINYNET_API int tnet_transport_isready(const tnet_transport_handle_t *handle); +TINYNET_API int tnet_transport_issecure(const tnet_transport_handle_t *handle); +TINYNET_API const char* tnet_transport_get_description(const tnet_transport_handle_t *handle); +TINYNET_API int tnet_transport_get_ip_n_port(const tnet_transport_handle_t *handle, tnet_fd_t fd, tnet_ip_t *ip, tnet_port_t *port); + +TINYNET_API int tnet_transport_isconnected(const tnet_transport_handle_t *handle, tnet_fd_t fd); +TINYNET_API int tnet_transport_have_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd); +TINYNET_API const tnet_tls_socket_handle_t* tnet_transport_get_tlshandle(const tnet_transport_handle_t *handle, tnet_fd_t fd); +TINYNET_API int tnet_transport_add_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd, tnet_socket_type_t type, int take_ownership, int isClient); +TINYNET_API int tnet_transport_remove_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd); +TINYNET_API tnet_fd_t tnet_transport_connectto(const tnet_transport_handle_t *handle, const char* host, tnet_port_t port, tnet_socket_type_t type); +#define tnet_transport_connectto2(handle, host, port) tnet_transport_connectto(handle, host, port, tnet_transport_get_type(handle)) +TINYNET_API size_t tnet_transport_send(const tnet_transport_handle_t *handle, tnet_fd_t from, const void* buf, size_t size); +TINYNET_API size_t tnet_transport_sendto(const tnet_transport_handle_t *handle, tnet_fd_t from, const struct sockaddr *to, const void* buf, size_t size); + +TINYNET_API int tnet_transport_set_callback(const tnet_transport_handle_t *handle, tnet_transport_cb_f callback, const void* callback_data); + +TINYNET_API tnet_socket_type_t tnet_transport_get_type(const tnet_transport_handle_t *handle); +TINYNET_API int tnet_transport_shutdown(tnet_transport_handle_t* handle); + +typedef struct tnet_transport_s +{ + TSK_DECLARE_RUNNABLE; + + tnet_socket_t *master; + + void *context; + + unsigned connected:1; + unsigned active:1; + void* mainThreadId[1]; + + char *description; + + tnet_transport_cb_f callback; + const void* callback_data; + + /* TLS certs */ + char* tlsfile_ca; + char* tlsfile_pvk; + char* tlsfile_pbk; + unsigned have_tls:1; +} +tnet_transport_t; + +TINYNET_GEXTERN const void *tnet_transport_def_t; +TINYNET_GEXTERN const void *tnet_transport_event_def_t; +TINYNET_GEXTERN const void *tnet_transport_context_def_t; + +TNET_END_DECLS + +#endif /* TNET_SERVER_H */ + diff --git a/trunk/tinyNET/src/tnet_transport_poll.c b/trunk/tinyNET/src/tnet_transport_poll.c index 7bc6a72b..770b6749 100644 --- a/trunk/tinyNET/src/tnet_transport_poll.c +++ b/trunk/tinyNET/src/tnet_transport_poll.c @@ -55,6 +55,8 @@ transport_socket_t; /*== Transport context structure definition ==*/ typedef struct transport_context_s { + TSK_DECLARE_OBJECT; + size_t count; short events; tnet_fd_t pipeW; @@ -64,6 +66,7 @@ typedef struct transport_context_s } transport_context_t; +static transport_socket_t* getSocket(transport_context_t *context, tnet_fd_t fd); static void addSocket(tnet_fd_t fd, tnet_socket_type_t type, transport_context_t *context, int take_ownership, int is_client); static void setConnected(tnet_fd_t fd, transport_context_t *context, int connected); static void removeSocket(int index, transport_context_t *context); @@ -75,8 +78,7 @@ int tnet_transport_isconnected(const tnet_transport_handle_t *handle, tnet_fd_t transport_context_t *context; size_t i; - if(!transport) - { + if(!transport){ TSK_DEBUG_ERROR("Invalid server handle."); return 0; } @@ -85,8 +87,7 @@ int tnet_transport_isconnected(const tnet_transport_handle_t *handle, tnet_fd_t for(i=0; icount; i++) { const transport_socket_t* socket = context->sockets[i]; - if(socket->fd == fd) - { + if(socket->fd == fd){ return socket->connected; } } @@ -94,7 +95,7 @@ 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 take_ownership) +int tnet_transport_add_socket(const tnet_transport_handle_t *handle, tnet_fd_t fd, tnet_socket_type_t type, int take_ownership, int isClient) { tnet_transport_t *transport = (tnet_transport_t*)handle; transport_context_t *context; @@ -111,7 +112,7 @@ int tnet_transport_add_socket(const tnet_transport_handle_t *handle, tnet_fd_t f if((context = (transport_context_t*)transport->context)){ static char c = '\0'; - addSocket(fd, context, take_ownership); + addSocket(fd, type, context, take_ownership, isClient); // signal ret = write(context->pipeW, &c, 1); @@ -163,61 +164,6 @@ int tnet_transport_remove_socket(const tnet_transport_handle_t *handle, tnet_fd_ 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; -// struct sockaddr_storage to; -// int status = -1; -// tnet_fd_t fd = TNET_INVALID_SOCKET; -// -// if(!transport || !transport->master) -// { -// TSK_DEBUG_ERROR("Invalid transport handle."); -// goto bail; -// } -// -// /* Init destination sockaddr fields */ -// if((status = tnet_sockaddr_init(host, port, transport->master->type, &to))){ -// TSK_DEBUG_ERROR("Invalid HOST/PORT [%s/%u]", host, port); -// goto bail; -// } -// -// /* -// * STREAM ==> create new socket add connect it to the remote host. -// * DGRAM ==> connect the master to the remote host. -// */ -// if(TNET_SOCKET_TYPE_IS_STREAM(transport->master->type)){ -// /* Create client socket descriptor. */ -// if((status = tnet_sockfd_init(TNET_SOCKET_HOST_ANY, TNET_SOCKET_PORT_ANY, transport->master->type, &fd))){ -// TSK_DEBUG_ERROR("Failed to create new sockfd."); -// goto bail; -// } -// -// /* Add the socket */ -// if((status = tnet_transport_add_socket(handle, fd, 1))){ -// TNET_PRINT_LAST_ERROR("Failed to add new socket."); -// -// tnet_sockfd_close(&fd); -// goto bail; -// } -// } -// else{ -// fd = transport->master->fd; -// } -// -// if((status = tnet_sockfd_connetto(fd, (const struct sockaddr *)&to))){ -// if(fd != transport->master->fd){ -// tnet_sockfd_close(&fd); -// } -// goto bail; -// } -// -// /* update connection status */ -// setConnected(fd, transport->context, (status==0)); -// -//bail: -// return fd; -//} size_t tnet_transport_send(const tnet_transport_handle_t *handle, tnet_fd_t from, const void* buf, size_t size) { @@ -229,7 +175,19 @@ size_t tnet_transport_send(const tnet_transport_handle_t *handle, tnet_fd_t from goto bail; } - if((numberOfBytesSent = send(from, buf, size, 0)) <= 0){ + if(transport->have_tls){ + transport_socket_t* socket = getSocket(transport->context, from); + if(socket && socket->tlshandle){ + if(!tnet_tls_socket_send(socket->tlshandle, buf, size)){ + numberOfBytesSent = size; + } + else{ + numberOfBytesSent = 0; + } + goto bail; + } + } + else if((numberOfBytesSent = send(from, buf, size, 0)) <= 0){ TNET_PRINT_LAST_ERROR("send have failed."); //tnet_sockfd_close(&from); @@ -245,20 +203,17 @@ size_t tnet_transport_sendto(const tnet_transport_handle_t *handle, tnet_fd_t fr tnet_transport_t *transport = (tnet_transport_t*)handle; int numberOfBytesSent = 0; - if(!transport) - { + if(!transport){ TSK_DEBUG_ERROR("Invalid server handle."); goto bail; } - if(!TNET_SOCKET_TYPE_IS_DGRAM(transport->master->type)) - { + if(!TNET_SOCKET_TYPE_IS_DGRAM(transport->master->type)){ TSK_DEBUG_ERROR("In order to use WSASendTo you must use an udp transport."); goto bail; } - if((numberOfBytesSent = sendto(from, buf, size, 0, to, sizeof(*to))) <= 0) - { + if((numberOfBytesSent = sendto(from, buf, size, 0, to, sizeof(*to))) <= 0){ TNET_PRINT_LAST_ERROR("sendto have failed."); goto bail; } @@ -270,21 +225,40 @@ bail: 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){ TSK_DEBUG_ERROR("Invalid server handle."); return 0; } - getSocket - context = (transport_context_t*)transport->context; - for(i=0; icount; i++) - { - if(context->sockets[i]->fd == fd) - { - return 1; + return (getSocket((transport_context_t*)transport->context, fd) != 0); +} +const tnet_tls_socket_handle_t* tnet_transport_get_tlshandle(const tnet_transport_handle_t *handle, tnet_fd_t fd) +{ + tnet_transport_t *transport = (tnet_transport_t*)handle; + transport_socket_t *socket; + + if(!transport){ + TSK_DEBUG_ERROR("Invalid server handle."); + return 0; + } + + if((socket = getSocket((transport_context_t*)transport->context, fd))){ + return socket->tlshandle; + } + return 0; +} + + +/*== Get socket ==*/ +static transport_socket_t* getSocket(transport_context_t *context, tnet_fd_t fd) +{ + size_t i; + if(context){ + for(i=0; icount; i++){ + if(context->sockets[i]->fd == fd){ + return context->sockets[i]; + } } } @@ -292,7 +266,7 @@ int tnet_transport_have_socket(const tnet_transport_handle_t *handle, tnet_fd_t } /*== Add new socket ==*/ -void addSocket(tnet_fd_t fd, transport_context_t *context, int take_ownership, int is_client) +void addSocket(tnet_fd_t fd, tnet_socket_type_t type, transport_context_t *context, int take_ownership, int is_client) { if(context){ transport_socket_t *sock = tsk_calloc(1, sizeof(transport_socket_t)); @@ -322,8 +296,7 @@ static void setConnected(tnet_fd_t fd, transport_context_t *context, int connect for(i=0; icount; i++) { - if(context->sockets[i]->fd == fd) - { + if(context->sockets[i]->fd == fd){ context->sockets[i]->connected = connected; } } @@ -363,20 +336,17 @@ int tnet_transport_stop(tnet_transport_t *transport) int ret; transport_context_t *context; - if(!transport) - { + if(!transport){ return -1; } context = transport->context; - if((ret = tsk_runnable_stop(TSK_RUNNABLE(transport)))) - { + if((ret = tsk_runnable_stop(TSK_RUNNABLE(transport)))){ return ret; } - if(context) - { + if(context){ static char c = '\0'; // signal @@ -392,15 +362,14 @@ int tnet_transport_stop(tnet_transport_t *transport) void *tnet_transport_mainthread(void *param) { tnet_transport_t *transport = param; - transport_context_t *context; + transport_context_t *context = transport->context; tnet_fd_t pipes[2]; int ret; size_t i; transport_socket_t* active_socket; - context = (transport_context_t*)tsk_calloc(1, sizeof(transport_context_t)); - context->events = TNET_SOCKET_TYPE_IS_DGRAM(transport->master->type) ? TNET_POLLIN : TNET_POLLIN /*| TNET_POLLOUT*/ | TNET_POLLPRI; + context->events = TNET_SOCKET_TYPE_IS_DGRAM(transport->master->type) ? TNET_POLLIN : TNET_POLLIN | TNET_POLLHUP | TNET_POLLPRI; transport->context = context; /* Start listening */ @@ -423,10 +392,10 @@ void *tnet_transport_mainthread(void *param) context->pipeR = pipes[0]; context->pipeW = pipes[1]; - addSocket(context->pipeR, context, 1); + addSocket(context->pipeR, transport->master->type, context, 1, 0); /* Add the master socket to the context. */ - addSocket(transport->master->fd, context, 1); + addSocket(transport->master->fd, transport->master->type, context, 1, 0); /* Set transport to active */ transport->active = 1; @@ -436,14 +405,12 @@ void *tnet_transport_mainthread(void *param) while(TSK_RUNNABLE(transport)->running) { - if((ret = tnet_poll(context->ufds, context->count, -1)) < 0) - { + if((ret = tnet_poll(context->ufds, context->count, -1)) < 0){ TNET_PRINT_LAST_ERROR("poll have failed."); goto bail; } - if(!TSK_RUNNABLE(transport)->running) - { + if(!TSK_RUNNABLE(transport)->running){ goto bail; } @@ -464,6 +431,7 @@ void *tnet_transport_mainthread(void *param) { size_t len = 0; void* buffer = 0; + tnet_transport_event_t* e; TSK_DEBUG_INFO("NETWORK EVENT FOR SERVER [%s] -- TNET_POLLIN", transport->description); @@ -472,19 +440,37 @@ void *tnet_transport_mainthread(void *param) * This apply whatever you are using the 3rd or 5th edition. * Download link: http://wiki.forum.nokia.com/index.php/Open_C/C%2B%2B_Release_History */ - if(tnet_ioctlt(active_socket->fd, FIONREAD, &len) < 0) - { + if(tnet_ioctlt(active_socket->fd, FIONREAD, &len) < 0){ TNET_PRINT_LAST_ERROR("IOCTLT FAILED."); continue; } - if(!(buffer = tsk_calloc(len, sizeof(uint8_t)))) - { + + if(!len){ + continue; + } + + if(!(buffer = tsk_calloc(len, sizeof(uint8_t)))){ TSK_DEBUG_ERROR("TSK_CALLOC FAILED."); continue; } + /* Receive the waiting data. */ - if((ret = recv(active_socket->fd, buffer, len, 0)) < 0) + if(active_socket->tlshandle){ + int isEncrypted; + size_t tlslen = len; + if(!(ret = tnet_tls_socket_recv(active_socket->tlshandle, buffer, &tlslen, &isEncrypted))){ + if(isEncrypted){ + TSK_FREE(buffer); + continue; + } + else if(tlslen != len){ + len = tlslen; + buffer = tsk_realloc(buffer, tlslen); + } + } + } + else if((ret = recv(active_socket->fd, buffer, len, 0)) < 0) { TSK_FREE(buffer); //if(tnet_geterrno() == TNET_ERROR_WOULDBLOCK) @@ -498,17 +484,13 @@ void *tnet_transport_mainthread(void *param) continue; } } - else - { - tsk_buffer_t *BUFFER = TSK_BUFFER_CREATE_NULL(); + - BUFFER->data = buffer; - BUFFER->size = len; - - //printf("====\n\n%s\n\n====", buffer); - - TSK_RUNNABLE_ENQUEUE_OBJECT(TSK_RUNNABLE(transport), BUFFER); - } + e = TNET_TRANSPORT_EVENT_CREATE(event_data, transport->callback_data, active_socket->fd); + e->data = buffer; + e->size = len; + + TSK_RUNNABLE_ENQUEUE_OBJECT(TSK_RUNNABLE(transport), e); } @@ -524,6 +506,15 @@ void *tnet_transport_mainthread(void *param) { TSK_DEBUG_INFO("NETWORK EVENT FOR SERVER [%s] -- TNET_POLLPRI", transport->description); } + + /*================== TNET_POLLHUP ==================*/ + if(context->ufds[i].revents & TNET_POLLHUP) + { + TSK_DEBUG_INFO("NETWORK EVENT FOR SERVER [%s] -- TNET_POLLPRI", transport->description); + + TSK_RUNNABLE_ENQUEUE(transport, event_closed, transport->callback_data, active_socket->fd); + removeSocket(i, context); + } }/* for */ @@ -532,17 +523,53 @@ void *tnet_transport_mainthread(void *param) bail: transport->active = 0; - - /* cleanup */ - while(context->count){ - removeSocket(0, context); - } - TSK_FREE(context); + TSK_OBJECT_SAFE_FREE(context); TSK_DEBUG_INFO("Stopping [%s] server with IP {%s} on port {%d}...", transport->description, transport->master->ip, transport->master->port); return 0; } + + + + + + + + + + +//================================================================================================= +// Transport context object definition +// +static void* transport_context_create(void * self, va_list * app) +{ + transport_context_t *context = self; + if(context){ + } + return self; +} + +static void* transport_context_destroy(void * self) +{ + transport_context_t *context = self; + if(context){ + while(context->count){ + removeSocket(0, context); + } + } + return self; +} + +static const tsk_object_def_t tnet_transport_context_def_s = +{ +sizeof(transport_context_t), +transport_context_create, +transport_context_destroy, +0, +}; +const void *tnet_transport_context_def_t = &tnet_transport_context_def_s; + #endif /* HAVE_POLL_H */ diff --git a/trunk/tinyNET/src/tnet_transport_win32.c b/trunk/tinyNET/src/tnet_transport_win32.c index f795dea4..b865acdb 100644 --- a/trunk/tinyNET/src/tnet_transport_win32.c +++ b/trunk/tinyNET/src/tnet_transport_win32.c @@ -51,6 +51,8 @@ transport_socket_t; /*== Transport context structure definition ==*/ typedef struct transport_context_s { + TSK_DECLARE_OBJECT; + size_t count; WSAEVENT events[WSA_MAXIMUM_WAIT_EVENTS]; transport_socket_t* sockets[WSA_MAXIMUM_WAIT_EVENTS]; @@ -61,24 +63,6 @@ static transport_socket_t* getSocket(transport_context_t *context, tnet_fd_t fd) static void addSocket(tnet_fd_t fd, tnet_socket_type_t type, transport_context_t *context, int take_ownership, int is_client); static void removeSocket(int index, transport_context_t *context); -int tnet_transport_create_context(tnet_transport_handle_t* handle) -{ - tnet_transport_t* transport; - if(!handle){ - return -1; - } - - if((transport = handle) && transport->context){ - return 0; - } - else if((transport->context = tsk_calloc(1, sizeof(transport_context_t)))){ - return 0; - } - else{ - return -1; - } -} - /* Checks if socket is connected */ int tnet_transport_isconnected(const tnet_transport_handle_t *handle, tnet_fd_t fd) { @@ -214,61 +198,6 @@ int tnet_transport_remove_socket(const tnet_transport_handle_t *handle, tnet_fd_ return -1; } -///* -//* Connect stream/datagram socket to the specified destination. -//*/ -//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; -// struct sockaddr_storage to; -// int status = -1; -// tnet_fd_t fd = INVALID_SOCKET; -// -// if(!transport || !transport->master){ -// TSK_DEBUG_ERROR("Invalid transport handle."); -// goto bail; -// } -// -// /* Init destination sockaddr fields */ -// if((status = tnet_sockaddr_init(host, port, transport->master->type, &to))){ -// TSK_DEBUG_ERROR("Invalid HOST/PORT [%s/%u]", host, port); -// goto bail; -// } -// -// /* -// * STREAM ==> create new socket and connect it to the remote host. -// * DGRAM ==> connect the master to the remote host. -// */ -// if(TNET_SOCKET_TYPE_IS_STREAM(transport->master->type)){ -// /* Create client socket descriptor. */ -// if(status = tnet_sockfd_init(TNET_SOCKET_HOST_ANY, TNET_SOCKET_PORT_ANY, transport->master->type, &fd)){ -// TSK_DEBUG_ERROR("Failed to create new sockfd."); -// goto bail; -// } -// -// /* Add the socket */ -// if(status = tnet_transport_add_socket(handle, fd, 1)){ -// TNET_PRINT_LAST_ERROR("Failed to add new socket."); -// -// tnet_sockfd_close(&fd); -// goto bail; -// } -// } -// else{ -// fd = transport->master->fd; -// } -// -// if((status = tnet_sockfd_connetto(fd, (const struct sockaddr_storage *)&to))){ -// if(fd != transport->master->fd){ -// tnet_sockfd_close(&fd); -// } -// goto bail; -// } -// -//bail: -// return fd; -//} - /* * Sends stream/dgram data to the remote peer (previously connected to using @tnet_transport_connectto). */ @@ -330,14 +259,12 @@ size_t tnet_transport_sendto(const tnet_transport_handle_t *handle, tnet_fd_t fr DWORD numberOfBytesSent = 0; int ret = -1; - if(!transport) - { + if(!transport){ TSK_DEBUG_ERROR("Invalid server handle."); return ret; } - if(!TNET_SOCKET_TYPE_IS_DGRAM(transport->master->type)) - { + if(!TNET_SOCKET_TYPE_IS_DGRAM(transport->master->type)){ TSK_DEBUG_ERROR("In order to use WSASendTo you must use an udp transport."); return ret; } @@ -347,13 +274,11 @@ size_t tnet_transport_sendto(const tnet_transport_handle_t *handle, tnet_fd_t fr if((ret = WSASendTo(from, &wsaBuffer, 1, &numberOfBytesSent, 0, to, sizeof(*to), 0, 0)) == SOCKET_ERROR) { - if((ret = WSAGetLastError()) == WSA_IO_PENDING) - { + if((ret = WSAGetLastError()) == WSA_IO_PENDING){ TSK_DEBUG_INFO("WSA_IO_PENDING error for WSASendTo operation"); ret = 0; } - else - { + else{ TNET_PRINT_LAST_ERROR("WSASendTo have failed."); return ret; } @@ -453,8 +378,7 @@ int tnet_transport_stop(tnet_transport_t *transport) { int ret; - if(ret = tsk_runnable_stop(TSK_RUNNABLE(transport))) - { + if(ret = tsk_runnable_stop(TSK_RUNNABLE(transport))){ return ret; } @@ -585,8 +509,7 @@ void *tnet_transport_mainthread(void *param) TSK_DEBUG_INFO("NETWORK EVENT FOR SERVER [%s] -- FD_READ", transport->description); - if(networkEvents.iErrorCode[FD_READ_BIT]) - { + if(networkEvents.iErrorCode[FD_READ_BIT]){ TNET_PRINT_LAST_ERROR("READ FAILED."); continue; } @@ -602,7 +525,9 @@ void *tnet_transport_mainthread(void *param) } /* Alloc data */ - wsaBuffer.buf = tsk_calloc(wsaBuffer.len, sizeof(uint8_t)); // Will return NULL for TLS handshake. + if((wsaBuffer.buf = tsk_calloc(wsaBuffer.len, sizeof(uint8_t)))){ + continue; + } /* Receive the waiting data. */ if(active_socket->tlshandle){ @@ -691,16 +616,47 @@ void *tnet_transport_mainthread(void *param) bail: transport->active = 0; - - /* Cleanup */ - while(context->count){ - removeSocket(0, context); - } - TSK_FREE(context); + TSK_OBJECT_SAFE_FREE(context); TSK_DEBUG_INFO("Stopping [%s] server with IP {%s} on port {%d}...", transport->description, transport->master->ip, transport->master->port); return 0; } + + + + + + +//================================================================================================= +// Transport context object definition +// +static void* transport_context_create(void * self, va_list * app) +{ + transport_context_t *context = self; + if(context){ + } + return self; +} + +static void* transport_context_destroy(void * self) +{ + transport_context_t *context = self; + if(context){ + while(context->count){ + removeSocket(0, context); + } + } + return self; +} + +static const tsk_object_def_t tnet_transport_context_def_s = +{ +sizeof(transport_context_t), +transport_context_create, +transport_context_destroy, +0, +}; +const void *tnet_transport_context_def_t = &tnet_transport_context_def_s; #endif /* TNET_UNDER_WINDOWS */ diff --git a/trunk/tinyNET/src/tnet_utils.c b/trunk/tinyNET/src/tnet_utils.c index 97df4ce8..57fde5d9 100644 --- a/trunk/tinyNET/src/tnet_utils.c +++ b/trunk/tinyNET/src/tnet_utils.c @@ -723,9 +723,9 @@ int tnet_sockfd_waitUntil(tnet_fd_t fd, long timeout, int writable) goto bail; } - if(timeout >=0){ - timetowait.tv_sec = (timeout/1000); - timetowait.tv_usec = (timeout%1000) * 1000; + if(timeout >=0){ + timetowait.tv_sec = (timeout/1000); + timetowait.tv_usec = (timeout%1000) * 1000; } FD_ZERO(&fds); @@ -1109,8 +1109,8 @@ int tnet_sockfd_connetto(tnet_fd_t fd, const struct sockaddr_storage *to) #else /* !TNET_UNDER_WINDOWS */ -# if TNET_HAVE_SS_LEN - if((status = connect(fd, (struct sockaddr*)to, to.ss_len))) +#if TNET_HAVE_SS_LEN + if((status = connect(fd, (struct sockaddr*)to, to->ss_len))) # else if((status = connect(fd, (struct sockaddr*)to, sizeof(*to)))) # endif diff --git a/trunk/tinyNET/src/turn/tnet_turn_message.c b/trunk/tinyNET/src/turn/tnet_turn_message.c index 383b334a..9f6d3b13 100644 --- a/trunk/tinyNET/src/turn/tnet_turn_message.c +++ b/trunk/tinyNET/src/turn/tnet_turn_message.c @@ -33,7 +33,7 @@ #include "tsk_memory.h" - +#include /**@ingroup tnet_turn_group diff --git a/trunk/tinyNET/test/test_transport.h b/trunk/tinyNET/test/test_transport.h index 0aad40f3..7c617d5b 100644 --- a/trunk/tinyNET/test/test_transport.h +++ b/trunk/tinyNET/test/test_transport.h @@ -57,12 +57,12 @@ static int tnet_tcp_cb(const tnet_transport_event_t* e) { switch(e->type){ - case event_data: - { - TSK_DEBUG_INFO("--- TCP ---\n%s\n", e->data); - break; - } - case event_closed: + case event_data: + { + TSK_DEBUG_INFO("--- TCP ---\n%s\n", e->data); + break; + } + case event_closed: case event_connected: default: { @@ -75,12 +75,12 @@ static int tnet_tcp_cb(const tnet_transport_event_t* e) static int tnet_udp_cb(const tnet_transport_event_t* e) { switch(e->type){ - case event_data: - { - TSK_DEBUG_INFO("--- UDP ---\n%s\n", e->data); - break; - } - case event_closed: + case event_data: + { + TSK_DEBUG_INFO("--- UDP ---\n%s\n", e->data); + break; + } + case event_closed: case event_connected: default: { @@ -110,11 +110,11 @@ void test_transport_tcp_ipv4(tnet_transport_handle_t *transport) TSK_DEBUG_ERROR("Failed to connect %s.", tnet_transport_get_description(transport)); return; } - - if(tnet_sockfd_waitUntilWritable(fd, TNET_CONNECT_TIMEOUT)){ - TSK_DEBUG_ERROR("%d milliseconds elapsed and the socket is still not connected.", TNET_CONNECT_TIMEOUT); - tnet_transport_remove_socket(transport, fd); - return; + + if(tnet_sockfd_waitUntilWritable(fd, TNET_CONNECT_TIMEOUT)){ + TSK_DEBUG_ERROR("%d milliseconds elapsed and the socket is still not connected.", TNET_CONNECT_TIMEOUT); + tnet_transport_remove_socket(transport, fd); + return; } /* Send our SIP message */ @@ -156,10 +156,10 @@ int test_transport_udp_ipv4(tnet_transport_handle_t *transport) return -2; } - if(tnet_sockfd_waitUntilWritable(fd, TNET_CONNECT_TIMEOUT)){ - TSK_DEBUG_ERROR("%d milliseconds elapsed and the socket is still not connected.", TNET_CONNECT_TIMEOUT); - tnet_transport_remove_socket(transport, fd); - return -3; + if(tnet_sockfd_waitUntilWritable(fd, TNET_CONNECT_TIMEOUT)){ + TSK_DEBUG_ERROR("%d milliseconds elapsed and the socket is still not connected.", TNET_CONNECT_TIMEOUT); + tnet_transport_remove_socket(transport, fd); + return -3; } //tsk_thread_sleep(2000); diff --git a/trunk/tinySAK/src/tsk_timer.c b/trunk/tinySAK/src/tsk_timer.c index 10db78cd..e036fe28 100644 --- a/trunk/tinySAK/src/tsk_timer.c +++ b/trunk/tinySAK/src/tsk_timer.c @@ -142,7 +142,7 @@ void tsk_timer_manager_debug(tsk_timer_manager_handle_t *self) tsk_timer_manager_t *manager = self; if(manager) { - int index = 0; + //int index = 0; tsk_list_item_t *item = 0; tsk_mutex_lock(manager->mutex); diff --git a/trunk/tinySIP/test/test/test_stack.h b/trunk/tinySIP/test/test/test_stack.h index 12811789..209cf83d 100644 --- a/trunk/tinySIP/test/test/test_stack.h +++ b/trunk/tinySIP/test/test/test_stack.h @@ -33,38 +33,38 @@ #endif #define TEST_STACK_PIDF \ - ""\ - ""\ - " "\ - " "\ - " open"\ - " "\ - " "\ - " "\ - " "\ - " "\ - " "\ - " "\ - " Hello world"\ - " "\ - " "\ - " "\ - " open"\ - " "\ - " "\ - " "\ - " "\ - " "\ - " "\ - " "\ - " "\ - " "\ - " "\ - " "\ - " "\ - " "\ - " urn:uuid:dd1289fa-c3d7-47bd-a40d-f1f1b2cc5ffc"\ - " "\ + ""\ + ""\ + " "\ + " "\ + " open"\ + " "\ + " "\ + " "\ + " "\ + " "\ + " "\ + " "\ + " Hello world"\ + " "\ + " "\ + " "\ + " open"\ + " "\ + " "\ + " "\ + " "\ + " "\ + " "\ + " "\ + " "\ + " "\ + " "\ + " "\ + " "\ + " "\ + " urn:uuid:dd1289fa-c3d7-47bd-a40d-f1f1b2cc5ffc"\ + " "\ "" int test_stack_callback(const tsip_event_t *sipevent) @@ -254,7 +254,7 @@ void test_stack() TSIP_STACK_SET_REALM("sip:"DOMAIN), // 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_SECAGREE_IPSEC("hmac-md5-96", "null", "trans", "esp"), diff --git a/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/diopmamadou.pbxuser b/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/diopmamadou.pbxuser index 03917e9f..df11bddf 100644 --- a/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/diopmamadou.pbxuser +++ b/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/diopmamadou.pbxuser @@ -3,13 +3,11 @@ 08FB7793FE84155DC02AAC07 /* Project object */ = { activeBuildConfigurationName = Debug; activeExecutable = ECED623E10F98B46006B4DC9 /* test */; - activeTarget = D2AAC0620554660B00DB518D /* tinyHTTP */; + activeTarget = ECED623C10F98B46006B4DC9 /* test */; addToTargets = ( - ECED623C10F98B46006B4DC9 /* test */, + ECED61BB10F988E7006B4DC9 /* tinySAK */, ); breakpoints = ( - ECED625410F98BC5006B4DC9 /* test.c:46 */, - ECED625610F98BC9006B4DC9 /* test.c:53 */, ); codeSenseManager = ECED619B10F9876E006B4DC9 /* Code sense */; executables = ( @@ -42,10 +40,10 @@ }; PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; - PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; + PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Target_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 455, + 1267, 20, 48, 43, @@ -83,7 +81,7 @@ PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 415, + 1227, 60, 20, 48, @@ -100,21 +98,38 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 284788562; - PBXWorkspaceStateSaveDate = 284788562; + PBXPerProjectTemplateStateSaveDate = 289622728; + PBXWorkspaceStateSaveDate = 289622728; }; perUserProjectItems = { - ECED625810F98BE0006B4DC9 /* PBXTextBookmark */ = ECED625810F98BE0006B4DC9 /* PBXTextBookmark */; ECED625910F98BE0006B4DC9 /* PBXTextBookmark */ = ECED625910F98BE0006B4DC9 /* PBXTextBookmark */; - ECED625A10F98BE0006B4DC9 /* PBXTextBookmark */ = ECED625A10F98BE0006B4DC9 /* PBXTextBookmark */; - ECED625B10F98BE0006B4DC9 /* PBXTextBookmark */ = ECED625B10F98BE0006B4DC9 /* PBXTextBookmark */; - ECED625C10F98BE0006B4DC9 /* PBXTextBookmark */ = ECED625C10F98BE0006B4DC9 /* PBXTextBookmark */; - ECED625D10F98BE0006B4DC9 /* PBXTextBookmark */ = ECED625D10F98BE0006B4DC9 /* PBXTextBookmark */; - ECED625E10F98BE0006B4DC9 /* PBXTextBookmark */ = ECED625E10F98BE0006B4DC9 /* PBXTextBookmark */; ECED625F10F98BE0006B4DC9 /* PBXTextBookmark */ = ECED625F10F98BE0006B4DC9 /* PBXTextBookmark */; - ECED626010F98BE0006B4DC9 /* PBXTextBookmark */ = ECED626010F98BE0006B4DC9 /* PBXTextBookmark */; - ECED626110F98BE0006B4DC9 /* PBXTextBookmark */ = ECED626110F98BE0006B4DC9 /* PBXTextBookmark */; - ECED626310F98BF2006B4DC9 /* PBXTextBookmark */ = ECED626310F98BF2006B4DC9 /* PBXTextBookmark */; + ECF4BDB311434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDB311434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDB511434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDB511434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDB611434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDB611434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDB711434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDB711434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDB811434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDB811434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDB911434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDB911434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDBB11434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDBB11434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDBC11434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDBC11434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDBE11434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDBE11434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDBF11434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDBF11434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDC011434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDC011434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDC111434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDC111434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDC211434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDC211434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDC311434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDC311434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDC411434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDC411434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDC511434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDC511434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDC611434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDC611434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDC711434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDC711434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDC811434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDC811434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDC911434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDC911434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDCA11434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDCA11434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDCB11434D9E00B7C09B /* PBXTextBookmark */ = ECF4BDCB11434D9E00B7C09B /* PBXTextBookmark */; + ECF4BDE111434DFB00B7C09B /* PBXTextBookmark */ = ECF4BDE111434DFB00B7C09B /* PBXTextBookmark */; + ECF4BDE211434DFB00B7C09B /* PBXTextBookmark */ = ECF4BDE211434DFB00B7C09B /* PBXTextBookmark */; + ECF4BDE311434DFB00B7C09B /* PBXTextBookmark */ = ECF4BDE311434DFB00B7C09B /* PBXTextBookmark */; + ECF4BDE511434E0300B7C09B /* PBXTextBookmark */ = ECF4BDE511434E0300B7C09B /* PBXTextBookmark */; }; sourceControlManager = ECED619A10F9876E006B4DC9 /* Source Control */; userBuildSettings = { @@ -134,20 +149,6 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - ECED61B110F98893006B4DC9 /* thttp_utl.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {633, 135}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 0}"; - }; - }; - ECED61B510F988B3006B4DC9 /* thttp_auth.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {750, 3724}}"; - sepNavSelRange = "{2672, 112}"; - sepNavVisRange = "{908, 222}"; - }; - }; ECED61BB10F988E7006B4DC9 /* tinySAK */ = { activeExec = 0; }; @@ -192,64 +193,6 @@ variableFormatDictionary = { }; }; - ECED624510F98B6A006B4DC9 /* test.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {683, 896}}"; - sepNavSelRange = "{904, 0}"; - sepNavVisRange = "{1033, 337}"; - }; - }; - ECED624710F98B6A006B4DC9 /* test_auth.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {683, 1848}}"; - sepNavSelRange = "{1051, 0}"; - sepNavVisRange = "{1170, 561}"; - }; - }; - ECED625410F98BC5006B4DC9 /* test.c:46 */ = { - isa = PBXFileBreakpoint; - actions = ( - ); - breakpointStyle = 0; - continueAfterActions = 0; - countType = 0; - delayBeforeContinue = 0; - fileReference = ECED624510F98B6A006B4DC9 /* test.c */; - functionName = "main()"; - hitCount = 0; - ignoreCount = 0; - lineNumber = 46; - location = test; - modificationTime = 284789708.944878; - state = 1; - }; - ECED625610F98BC9006B4DC9 /* test.c:53 */ = { - isa = PBXFileBreakpoint; - actions = ( - ); - breakpointStyle = 0; - continueAfterActions = 0; - countType = 0; - delayBeforeContinue = 0; - fileReference = ECED624510F98B6A006B4DC9 /* test.c */; - functionName = "main()"; - hitCount = 0; - ignoreCount = 0; - lineNumber = 53; - location = test; - modificationTime = 284789708.945035; - state = 1; - }; - ECED625810F98BE0006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED61B110F98893006B4DC9 /* thttp_utl.c */; - name = "thttp_utl.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 0; - vrLoc = 0; - }; ECED625910F98BE0006B4DC9 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = ECED61C110F98926006B4DC9 /* tinySAK_config.h */; @@ -260,53 +203,6 @@ vrLen = 353; vrLoc = 0; }; - ECED625A10F98BE0006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED61B510F988B3006B4DC9 /* thttp_auth.c */; - name = "thttp_auth.c: 88"; - rLen = 112; - rLoc = 2672; - rType = 0; - vrLen = 222; - vrLoc = 908; - }; - ECED625B10F98BE0006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED624510F98B6A006B4DC9 /* test.c */; - name = "test.c: 30"; - rLen = 0; - rLoc = 904; - rType = 0; - vrLen = 337; - vrLoc = 1033; - }; - ECED625C10F98BE0006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED624710F98B6A006B4DC9 /* test_auth.h */; - rLen = 0; - rLoc = 39; - rType = 1; - }; - ECED625D10F98BE0006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED61B110F98893006B4DC9 /* thttp_utl.c */; - name = "thttp_utl.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 0; - vrLoc = 0; - }; - ECED625E10F98BE0006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED61B510F988B3006B4DC9 /* thttp_auth.c */; - name = "thttp_auth.c: 29"; - rLen = 39; - rLoc = 966; - rType = 0; - vrLen = 250; - vrLoc = 782; - }; ECED625F10F98BE0006B4DC9 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = ECED61C110F98926006B4DC9 /* tinySAK_config.h */; @@ -317,34 +213,328 @@ vrLen = 353; vrLoc = 0; }; - ECED626010F98BE0006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED61B510F988B3006B4DC9 /* thttp_auth.c */; - name = "thttp_auth.c: 88"; - rLen = 112; - rLoc = 2672; - rType = 0; - vrLen = 222; - vrLoc = 908; + ECF4BC8611434AEB00B7C09B /* thttp.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1445, 4928}}"; + sepNavSelRange = "{2252, 0}"; + sepNavVisRange = "{1844, 1202}"; + }; }; - ECED626110F98BE0006B4DC9 /* PBXTextBookmark */ = { + ECF4BCA311434B0E00B7C09B /* targetver.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1445, 449}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 916}"; + }; + }; + ECF4BCA411434B0E00B7C09B /* test.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1445, 1146}}"; + sepNavSelRange = "{1357, 0}"; + sepNavVisRange = "{885, 810}"; + }; + }; + ECF4BCA611434B0E00B7C09B /* test_auth.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1445, 2072}}"; + sepNavSelRange = "{2865, 16}"; + sepNavVisRange = "{2427, 686}"; + }; + }; + ECF4BCA711434B0E00B7C09B /* test_stack.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1445, 1120}}"; + sepNavSelRange = "{1502, 0}"; + sepNavVisRange = "{881, 1620}"; + }; + }; + ECF4BCA811434B0E00B7C09B /* test_url.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1445, 1232}}"; + sepNavSelRange = "{1408, 0}"; + sepNavVisRange = "{1309, 866}"; + }; + }; + ECF4BCB311434BA800B7C09B /* tinyNET */ = { + activeExec = 0; + }; + ECF4BCCE11434C1000B7C09B /* tnet_dhcp_option_sip.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1445, 1764}}"; + sepNavSelRange = "{1076, 30}"; + sepNavVisRange = "{0, 1108}"; + }; + }; + ECF4BDB311434D9E00B7C09B /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = ECED624510F98B6A006B4DC9 /* test.c */; + fRef = ECF4BDB411434D9E00B7C09B /* thttp_header.h */; + name = "thttp_header.h: 35"; + rLen = 30; + rLoc = 1040; + rType = 0; + vrLen = 701; + vrLoc = 721; + }; + ECF4BDB411434D9E00B7C09B /* thttp_header.h */ = { + isa = PBXFileReference; + name = thttp_header.h; + path = /Users/diopmamadou/Documents/doubango/xcode/tinyHTTP/../../../doubango/tinyHTTP/include/tinyHTTP/headers/thttp_header.h; + sourceTree = ""; + }; + ECF4BDB511434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCCE11434C1000B7C09B /* tnet_dhcp_option_sip.c */; + name = "tnet_dhcp_option_sip.c: 32"; + rLen = 30; + rLoc = 1076; + rType = 0; + vrLen = 1108; + vrLoc = 0; + }; + ECF4BDB611434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA311434B0E00B7C09B /* targetver.h */; + name = "targetver.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 916; + vrLoc = 0; + }; + ECF4BDB711434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA611434B0E00B7C09B /* test_auth.h */; + name = "test_auth.h: 128"; + rLen = 16; + rLoc = 2865; + rType = 0; + vrLen = 686; + vrLoc = 2427; + }; + ECF4BDB811434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA811434B0E00B7C09B /* test_url.h */; + name = "test_url.h: 53"; + rLen = 0; + rLoc = 1408; + rType = 0; + vrLen = 866; + vrLoc = 1309; + }; + ECF4BDB911434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA711434B0E00B7C09B /* test_stack.h */; + name = "test_stack.h: 46"; + rLen = 0; + rLoc = 1502; + rType = 0; + vrLen = 1620; + vrLoc = 881; + }; + ECF4BDBB11434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA411434B0E00B7C09B /* test.c */; name = "test.c: 30"; rLen = 0; rLoc = 904; rType = 0; - vrLen = 337; - vrLoc = 1033; + vrLen = 599; + vrLoc = 924; }; - ECED626310F98BF2006B4DC9 /* PBXTextBookmark */ = { + ECF4BDBC11434D9E00B7C09B /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = ECED624710F98B6A006B4DC9 /* test_auth.h */; - name = "test_auth.h: 40"; - rLen = 0; - rLoc = 1051; + fRef = ECF4BDBD11434D9E00B7C09B /* thttp_header.h */; + name = "thttp_header.h: 35"; + rLen = 30; + rLoc = 1040; rType = 0; - vrLen = 561; - vrLoc = 1170; + vrLen = 701; + vrLoc = 721; + }; + ECF4BDBD11434D9E00B7C09B /* thttp_header.h */ = { + isa = PBXFileReference; + name = thttp_header.h; + path = /Users/diopmamadou/Documents/doubango/xcode/tinyHTTP/../../../doubango/tinyHTTP/include/tinyHTTP/headers/thttp_header.h; + sourceTree = ""; + }; + ECF4BDBE11434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCCE11434C1000B7C09B /* tnet_dhcp_option_sip.c */; + name = "tnet_dhcp_option_sip.c: 32"; + rLen = 30; + rLoc = 1076; + rType = 0; + vrLen = 1108; + vrLoc = 0; + }; + ECF4BDBF11434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA411434B0E00B7C09B /* test.c */; + name = "test.c: 30"; + rLen = 0; + rLoc = 904; + rType = 0; + vrLen = 599; + vrLoc = 924; + }; + ECF4BDC011434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA611434B0E00B7C09B /* test_auth.h */; + name = "test_auth.h: 128"; + rLen = 16; + rLoc = 2865; + rType = 0; + vrLen = 686; + vrLoc = 2427; + }; + ECF4BDC111434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA811434B0E00B7C09B /* test_url.h */; + name = "test_url.h: 53"; + rLen = 0; + rLoc = 1408; + rType = 0; + vrLen = 866; + vrLoc = 1309; + }; + ECF4BDC211434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA411434B0E00B7C09B /* test.c */; + name = "test.c: 43"; + rLen = 0; + rLoc = 1173; + rType = 0; + vrLen = 461; + vrLoc = 1234; + }; + ECF4BDC311434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA311434B0E00B7C09B /* targetver.h */; + name = "targetver.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 916; + vrLoc = 0; + }; + ECF4BDC411434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA411434B0E00B7C09B /* test.c */; + name = "test.c: 43"; + rLen = 0; + rLoc = 1173; + rType = 0; + vrLen = 461; + vrLoc = 1234; + }; + ECF4BDC511434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA311434B0E00B7C09B /* targetver.h */; + name = "targetver.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 916; + vrLoc = 0; + }; + ECF4BDC611434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA711434B0E00B7C09B /* test_stack.h */; + name = "test_stack.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1017; + vrLoc = 0; + }; + ECF4BDC711434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA411434B0E00B7C09B /* test.c */; + name = "test.c: 43"; + rLen = 0; + rLoc = 1173; + rType = 0; + vrLen = 461; + vrLoc = 1234; + }; + ECF4BDC811434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA611434B0E00B7C09B /* test_auth.h */; + name = "test_auth.h: 128"; + rLen = 16; + rLoc = 2865; + rType = 0; + vrLen = 686; + vrLoc = 2427; + }; + ECF4BDC911434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA711434B0E00B7C09B /* test_stack.h */; + name = "test_stack.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1017; + vrLoc = 0; + }; + ECF4BDCA11434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA811434B0E00B7C09B /* test_url.h */; + name = "test_url.h: 53"; + rLen = 0; + rLoc = 1408; + rType = 0; + vrLen = 866; + vrLoc = 1309; + }; + ECF4BDCB11434D9E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA711434B0E00B7C09B /* test_stack.h */; + name = "test_stack.h: 46"; + rLen = 0; + rLoc = 1502; + rType = 0; + vrLen = 1620; + vrLoc = 881; + }; + ECF4BDE111434DFB00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA411434B0E00B7C09B /* test.c */; + name = "test.c: 57"; + rLen = 0; + rLoc = 1357; + rType = 0; + vrLen = 810; + vrLoc = 885; + }; + ECF4BDE211434DFB00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BC8611434AEB00B7C09B /* thttp.c */; + name = "thttp.c: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1488; + vrLoc = 0; + }; + ECF4BDE311434DFB00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BCA411434B0E00B7C09B /* test.c */; + name = "test.c: 57"; + rLen = 0; + rLoc = 1357; + rType = 0; + vrLen = 810; + vrLoc = 885; + }; + ECF4BDE511434E0300B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BC8611434AEB00B7C09B /* thttp.c */; + name = "thttp.c: 96"; + rLen = 0; + rLoc = 2252; + rType = 0; + vrLen = 1184; + vrLoc = 1844; }; } diff --git a/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/diopmamadou.perspectivev3 b/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/diopmamadou.perspectivev3 index 080123c3..8d43fe44 100644 --- a/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/diopmamadou.perspectivev3 +++ b/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/diopmamadou.perspectivev3 @@ -3,7 +3,7 @@ ActivePerspectiveName - Debug + Project AllowedModules @@ -200,8 +200,8 @@ PerspectiveWidths - 951 - 951 + 1920 + 1920 Perspectives @@ -255,7 +255,7 @@ PBXSmartGroupTreeModuleColumnWidthsKey - 185 + 392 PBXSmartGroupTreeModuleColumnsKey_v4 @@ -267,18 +267,23 @@ PBXSmartGroupTreeModuleOutlineStateExpansionKey 08FB7794FE84155DC02AAC07 - 1AB674ADFE9D54B511CA2CBB + ECF4BC9F11434B0E00B7C09B + ECF4BC7611434AEB00B7C09B 1C37FBAC04509CD000000102 + ECF4BDB011434D9E00B7C09B + ECF4BDB111434D9E00B7C09B + ECF4BDB211434D9E00B7C09B PBXSmartGroupTreeModuleOutlineStateSelectionKey - 20 - 17 + 15 + 11 + 0 PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {185, 751}} + {{0, 0}, {392, 973}} PBXTopSmartGroupGIDs @@ -288,28 +293,32 @@ GeometryConfiguration Frame - {{0, 0}, {202, 769}} + {{0, 0}, {409, 991}} GroupTreeTableConfiguration MainColumn - 185 + 392 + RubberWindowFrame + 0 146 1920 1032 0 0 1920 1178 Module PBXSmartGroupTreeModule Proportion - 202pt + 409pt Dock + BecomeActive + ContentConfiguration PBXProjectModuleGUID ECED619410F9876E006B4DC9 PBXProjectModuleLabel - test_auth.h + thttp.c PBXSplitModuleInNavigatorKey Split0 @@ -317,26 +326,43 @@ PBXProjectModuleGUID ECED619510F9876E006B4DC9 PBXProjectModuleLabel - test_auth.h + thttp.c _historyCapacity 0 bookmark - ECED626310F98BF2006B4DC9 + ECF4BDE511434E0300B7C09B history - ECED625810F98BE0006B4DC9 ECED625910F98BE0006B4DC9 - ECED625A10F98BE0006B4DC9 - ECED625B10F98BE0006B4DC9 - ECED625C10F98BE0006B4DC9 + ECF4BDB311434D9E00B7C09B + ECF4BDB511434D9E00B7C09B + ECF4BDB611434D9E00B7C09B + ECF4BDB711434D9E00B7C09B + ECF4BDB811434D9E00B7C09B + ECF4BDB911434D9E00B7C09B + ECF4BDE111434DFB00B7C09B + ECF4BDE211434DFB00B7C09B prevStack - ECED625D10F98BE0006B4DC9 - ECED625E10F98BE0006B4DC9 ECED625F10F98BE0006B4DC9 - ECED626010F98BE0006B4DC9 - ECED626110F98BE0006B4DC9 + ECF4BDBB11434D9E00B7C09B + ECF4BDBC11434D9E00B7C09B + ECF4BDBE11434D9E00B7C09B + ECF4BDBF11434D9E00B7C09B + ECF4BDC011434D9E00B7C09B + ECF4BDC111434D9E00B7C09B + ECF4BDC211434D9E00B7C09B + ECF4BDC311434D9E00B7C09B + ECF4BDC411434D9E00B7C09B + ECF4BDC511434D9E00B7C09B + ECF4BDC611434D9E00B7C09B + ECF4BDC711434D9E00B7C09B + ECF4BDC811434D9E00B7C09B + ECF4BDC911434D9E00B7C09B + ECF4BDCA11434D9E00B7C09B + ECF4BDCB11434D9E00B7C09B + ECF4BDE311434DFB00B7C09B SplitCount @@ -350,16 +376,18 @@ GeometryConfiguration Frame - {{0, 0}, {744, 373}} + {{0, 0}, {1506, 764}} + RubberWindowFrame + 0 146 1920 1032 0 0 1920 1178 Module PBXNavigatorGroup Proportion - 373pt + 764pt Proportion - 391pt + 222pt Tabs @@ -373,7 +401,9 @@ GeometryConfiguration Frame - {{10, 27}, {694, 364}} + {{10, 27}, {1506, 195}} + RubberWindowFrame + 0 146 1920 1032 0 0 1920 1178 Module XCDetailModule @@ -427,7 +457,7 @@ GeometryConfiguration Frame - {{10, 27}, {744, 364}} + {{10, 27}, {1506, 478}} Module PBXBuildResultsModule @@ -436,7 +466,7 @@ Proportion - 744pt + 1506pt Name @@ -455,11 +485,11 @@ TableOfContents - ECED619610F9876E006B4DC9 + ECF4BDCD11434D9E00B7C09B 1CA23ED40692098700951B8B - ECED619710F9876E006B4DC9 + ECF4BDCE11434D9E00B7C09B ECED619410F9876E006B4DC9 - ECED619810F9876E006B4DC9 + ECF4BDCF11434D9E00B7C09B 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -508,14 +538,12 @@ GeometryConfiguration Frame - {{0, 0}, {951, 321}} - RubberWindowFrame - 219 146 951 810 0 0 1920 1178 + {{0, 0}, {1920, 543}} Module PBXDebugCLIModule Proportion - 321pt + 543pt ContentConfiguration @@ -534,8 +562,8 @@ yes sizes - {{0, 0}, {464, 215}} - {{464, 0}, {487, 215}} + {{0, 0}, {937, 213}} + {{937, 0}, {983, 213}} VerticalSplitView @@ -550,8 +578,8 @@ yes sizes - {{0, 0}, {951, 215}} - {{0, 215}, {951, 228}} + {{0, 0}, {1920, 213}} + {{0, 213}, {1920, 230}} @@ -571,7 +599,7 @@ DebugSTDIOWindowFrame {{200, 200}, {500, 300}} Frame - {{0, 326}, {951, 443}} + {{0, 548}, {1920, 443}} PBXDebugSessionStackFrameViewKey DebugVariablesTableConfiguration @@ -581,15 +609,11 @@ Value 85 Summary - 257 + 753 Frame - {{464, 0}, {487, 215}} - RubberWindowFrame - 219 146 951 810 0 0 1920 1178 + {{937, 0}, {983, 213}} - RubberWindowFrame - 219 146 951 810 0 0 1920 1178 Module PBXDebugSessionModule @@ -612,14 +636,14 @@ TableOfContents - ECED626410F98BF2006B4DC9 + ECF4BDD011434D9E00B7C09B 1CCC7628064C1048000F2A68 1CCC7629064C1048000F2A68 - ECED626510F98BF2006B4DC9 - ECED626610F98BF2006B4DC9 - ECED626710F98BF2006B4DC9 - ECED626810F98BF2006B4DC9 - ECED619410F9876E006B4DC9 + ECF4BDD111434D9E00B7C09B + ECF4BDD211434D9E00B7C09B + ECF4BDD311434D9E00B7C09B + ECF4BDD411434D9E00B7C09B + ECF4BC7211434ACE00B7C09B ToolbarConfiguration xcode.toolbar.config.debugV3 @@ -649,12 +673,12 @@ 5 WindowOrderList - ECED626910F98BF2006B4DC9 - ECED626A10F98BF2006B4DC9 + ECF4BDD611434D9E00B7C09B + ECF4BDD711434D9E00B7C09B /Users/diopmamadou/Documents/doubango/xcode/tinyHTTP/tinyHTTP.xcodeproj WindowString - 219 146 951 810 0 0 1920 1178 + 0 146 1920 1032 0 0 1920 1178 WindowToolsV3 diff --git a/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/project.pbxproj b/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/project.pbxproj index 6511ae6d..0ef8cabb 100644 --- a/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/project.pbxproj +++ b/trunk/xcode/tinyHTTP/tinyHTTP.xcodeproj/project.pbxproj @@ -10,10 +10,6 @@ ECED61AA10F9885E006B4DC9 /* thttp_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61A910F9885E006B4DC9 /* thttp_auth.h */; }; ECED61AD10F98876006B4DC9 /* thttp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61AB10F98876006B4DC9 /* thttp.h */; }; ECED61AE10F98876006B4DC9 /* tinyhttp_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61AC10F98876006B4DC9 /* tinyhttp_config.h */; }; - ECED61B210F98893006B4DC9 /* thttp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61AF10F98893006B4DC9 /* thttp.c */; }; - ECED61B310F98893006B4DC9 /* thttp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61B010F98893006B4DC9 /* thttp_message.c */; }; - ECED61B410F98893006B4DC9 /* thttp_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61B110F98893006B4DC9 /* thttp_utl.c */; }; - ECED61B610F988B3006B4DC9 /* thttp_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61B510F988B3006B4DC9 /* thttp_auth.c */; }; ECED61F610F98926006B4DC9 /* tinySAK_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61C110F98926006B4DC9 /* tinySAK_config.h */; }; ECED61F710F98926006B4DC9 /* tsk.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61C210F98926006B4DC9 /* tsk.c */; }; ECED61F810F98926006B4DC9 /* tsk.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61C310F98926006B4DC9 /* tsk.h */; }; @@ -28,13 +24,10 @@ ECED620110F98926006B4DC9 /* tsk_debug.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61CC10F98926006B4DC9 /* tsk_debug.c */; }; ECED620210F98926006B4DC9 /* tsk_debug.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61CD10F98926006B4DC9 /* tsk_debug.h */; }; ECED620310F98926006B4DC9 /* tsk_errno.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61CE10F98926006B4DC9 /* tsk_errno.h */; }; - ECED620410F98926006B4DC9 /* tsk_heap.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61CF10F98926006B4DC9 /* tsk_heap.c */; }; - ECED620510F98926006B4DC9 /* tsk_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61D010F98926006B4DC9 /* tsk_heap.h */; }; ECED620610F98926006B4DC9 /* tsk_hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61D110F98926006B4DC9 /* tsk_hmac.c */; }; ECED620710F98926006B4DC9 /* tsk_hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61D210F98926006B4DC9 /* tsk_hmac.h */; }; ECED620810F98926006B4DC9 /* tsk_list.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61D310F98926006B4DC9 /* tsk_list.c */; }; ECED620910F98926006B4DC9 /* tsk_list.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61D410F98926006B4DC9 /* tsk_list.h */; }; - ECED620A10F98926006B4DC9 /* tsk_macros.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61D510F98926006B4DC9 /* tsk_macros.h */; }; ECED620B10F98926006B4DC9 /* tsk_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61D610F98926006B4DC9 /* tsk_md5.c */; }; ECED620C10F98926006B4DC9 /* tsk_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61D710F98926006B4DC9 /* tsk_md5.h */; }; ECED620D10F98926006B4DC9 /* tsk_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61D810F98926006B4DC9 /* tsk_memory.c */; }; @@ -68,10 +61,117 @@ ECED622910F98926006B4DC9 /* tsk_xml.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61F410F98926006B4DC9 /* tsk_xml.c */; }; ECED622A10F98926006B4DC9 /* tsk_xml.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61F510F98926006B4DC9 /* tsk_xml.h */; }; ECED622F10F989A3006B4DC9 /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED61BC10F988E7006B4DC9 /* libtinySAK.dylib */; }; - ECED624810F98B6A006B4DC9 /* stdafx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED624210F98B6A006B4DC9 /* stdafx.c */; }; - ECED624910F98B6A006B4DC9 /* test.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED624510F98B6A006B4DC9 /* test.c */; }; ECED624F10F98B8B006B4DC9 /* libtinyHTTP.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D2AAC0630554660B00DB518D /* libtinyHTTP.dylib */; }; ECED625010F98B8B006B4DC9 /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED61BC10F988E7006B4DC9 /* libtinySAK.dylib */; }; + ECF4BC8C11434AEB00B7C09B /* thttp_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC7811434AEB00B7C09B /* thttp_auth.c */; }; + ECF4BC8D11434AEB00B7C09B /* thttp_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC7A11434AEB00B7C09B /* thttp_header.c */; }; + ECF4BC8E11434AEB00B7C09B /* thttp_header_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC7B11434AEB00B7C09B /* thttp_header_Authorization.c */; }; + ECF4BC8F11434AEB00B7C09B /* thttp_header_Content_Length.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC7C11434AEB00B7C09B /* thttp_header_Content_Length.c */; }; + ECF4BC9011434AEB00B7C09B /* thttp_header_Content_Type.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC7D11434AEB00B7C09B /* thttp_header_Content_Type.c */; }; + ECF4BC9111434AEB00B7C09B /* thttp_header_Dummy.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC7E11434AEB00B7C09B /* thttp_header_Dummy.c */; }; + ECF4BC9211434AEB00B7C09B /* thttp_header_Proxy_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC7F11434AEB00B7C09B /* thttp_header_Proxy_Authenticate.c */; }; + ECF4BC9311434AEB00B7C09B /* thttp_header_WWW_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC8011434AEB00B7C09B /* thttp_header_WWW_Authenticate.c */; }; + ECF4BC9511434AEB00B7C09B /* thttp_parser_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC8311434AEB00B7C09B /* thttp_parser_header.c */; }; + ECF4BC9611434AEB00B7C09B /* thttp_parser_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC8411434AEB00B7C09B /* thttp_parser_message.c */; }; + ECF4BC9711434AEB00B7C09B /* thttp_parser_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC8511434AEB00B7C09B /* thttp_parser_url.c */; }; + ECF4BC9811434AEB00B7C09B /* thttp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC8611434AEB00B7C09B /* thttp.c */; }; + ECF4BC9911434AEB00B7C09B /* thttp_event.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC8711434AEB00B7C09B /* thttp_event.c */; }; + ECF4BC9A11434AEB00B7C09B /* thttp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC8811434AEB00B7C09B /* thttp_message.c */; }; + ECF4BC9B11434AEB00B7C09B /* thttp_operation.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC8911434AEB00B7C09B /* thttp_operation.c */; }; + ECF4BC9C11434AEB00B7C09B /* thttp_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC8A11434AEB00B7C09B /* thttp_transport.c */; }; + ECF4BC9D11434AEB00B7C09B /* thttp_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BC8B11434AEB00B7C09B /* thttp_url.c */; }; + ECF4BCAA11434B0E00B7C09B /* stdafx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCA111434B0E00B7C09B /* stdafx.c */; }; + ECF4BCAB11434B0E00B7C09B /* test.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCA411434B0E00B7C09B /* test.c */; }; + ECF4BCBA11434BF900B7C09B /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED61BC10F988E7006B4DC9 /* libtinySAK.dylib */; }; + ECF4BD3311434C1100B7C09B /* tnet_dhcp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCC811434C1000B7C09B /* tnet_dhcp.c */; }; + ECF4BD3411434C1100B7C09B /* tnet_dhcp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCC911434C1000B7C09B /* tnet_dhcp.h */; }; + ECF4BD3511434C1100B7C09B /* tnet_dhcp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCCA11434C1000B7C09B /* tnet_dhcp_message.c */; }; + ECF4BD3611434C1100B7C09B /* tnet_dhcp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCCB11434C1000B7C09B /* tnet_dhcp_message.h */; }; + ECF4BD3711434C1100B7C09B /* tnet_dhcp_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCCC11434C1000B7C09B /* tnet_dhcp_option.c */; }; + ECF4BD3811434C1100B7C09B /* tnet_dhcp_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCCD11434C1000B7C09B /* tnet_dhcp_option.h */; }; + ECF4BD3911434C1100B7C09B /* tnet_dhcp_option_sip.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCCE11434C1000B7C09B /* tnet_dhcp_option_sip.c */; }; + ECF4BD3A11434C1100B7C09B /* tnet_dhcp_option_sip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCCF11434C1000B7C09B /* tnet_dhcp_option_sip.h */; }; + ECF4BD3B11434C1100B7C09B /* tnet_dhcp6.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCD111434C1000B7C09B /* tnet_dhcp6.c */; }; + ECF4BD3C11434C1100B7C09B /* tnet_dhcp6.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCD211434C1000B7C09B /* tnet_dhcp6.h */; }; + ECF4BD3D11434C1100B7C09B /* tnet_dhcp6_duid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCD311434C1000B7C09B /* tnet_dhcp6_duid.c */; }; + ECF4BD3E11434C1100B7C09B /* tnet_dhcp6_duid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCD411434C1000B7C09B /* tnet_dhcp6_duid.h */; }; + ECF4BD3F11434C1100B7C09B /* tnet_dhcp6_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCD511434C1000B7C09B /* tnet_dhcp6_message.c */; }; + ECF4BD4011434C1100B7C09B /* tnet_dhcp6_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCD611434C1000B7C09B /* tnet_dhcp6_message.h */; }; + ECF4BD4111434C1100B7C09B /* tnet_dhcp6_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCD711434C1000B7C09B /* tnet_dhcp6_option.c */; }; + ECF4BD4211434C1100B7C09B /* tnet_dhcp6_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCD811434C1100B7C09B /* tnet_dhcp6_option.h */; }; + ECF4BD4311434C1100B7C09B /* tnet_dns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCDA11434C1100B7C09B /* tnet_dns.c */; }; + ECF4BD4411434C1100B7C09B /* tnet_dns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCDB11434C1100B7C09B /* tnet_dns.h */; }; + ECF4BD4511434C1100B7C09B /* tnet_dns_a.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCDC11434C1100B7C09B /* tnet_dns_a.c */; }; + ECF4BD4611434C1100B7C09B /* tnet_dns_a.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCDD11434C1100B7C09B /* tnet_dns_a.h */; }; + ECF4BD4711434C1100B7C09B /* tnet_dns_aaaa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCDE11434C1100B7C09B /* tnet_dns_aaaa.c */; }; + ECF4BD4811434C1100B7C09B /* tnet_dns_aaaa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCDF11434C1100B7C09B /* tnet_dns_aaaa.h */; }; + ECF4BD4911434C1100B7C09B /* tnet_dns_cname.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCE011434C1100B7C09B /* tnet_dns_cname.c */; }; + ECF4BD4A11434C1100B7C09B /* tnet_dns_cname.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCE111434C1100B7C09B /* tnet_dns_cname.h */; }; + ECF4BD4B11434C1100B7C09B /* tnet_dns_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCE211434C1100B7C09B /* tnet_dns_message.c */; }; + ECF4BD4C11434C1100B7C09B /* tnet_dns_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCE311434C1100B7C09B /* tnet_dns_message.h */; }; + ECF4BD4D11434C1100B7C09B /* tnet_dns_mx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCE411434C1100B7C09B /* tnet_dns_mx.c */; }; + ECF4BD4E11434C1100B7C09B /* tnet_dns_mx.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCE511434C1100B7C09B /* tnet_dns_mx.h */; }; + ECF4BD4F11434C1100B7C09B /* tnet_dns_naptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCE611434C1100B7C09B /* tnet_dns_naptr.c */; }; + ECF4BD5011434C1100B7C09B /* tnet_dns_naptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCE711434C1100B7C09B /* tnet_dns_naptr.h */; }; + ECF4BD5111434C1100B7C09B /* tnet_dns_ns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCE811434C1100B7C09B /* tnet_dns_ns.c */; }; + ECF4BD5211434C1100B7C09B /* tnet_dns_ns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCE911434C1100B7C09B /* tnet_dns_ns.h */; }; + ECF4BD5311434C1100B7C09B /* tnet_dns_opt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCEA11434C1100B7C09B /* tnet_dns_opt.c */; }; + ECF4BD5411434C1100B7C09B /* tnet_dns_opt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCEB11434C1100B7C09B /* tnet_dns_opt.h */; }; + ECF4BD5511434C1100B7C09B /* tnet_dns_ptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCEC11434C1100B7C09B /* tnet_dns_ptr.c */; }; + ECF4BD5611434C1100B7C09B /* tnet_dns_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCED11434C1100B7C09B /* tnet_dns_ptr.h */; }; + ECF4BD5711434C1100B7C09B /* tnet_dns_rr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCEE11434C1100B7C09B /* tnet_dns_rr.c */; }; + ECF4BD5811434C1100B7C09B /* tnet_dns_rr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCEF11434C1100B7C09B /* tnet_dns_rr.h */; }; + ECF4BD5911434C1100B7C09B /* tnet_dns_soa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCF011434C1100B7C09B /* tnet_dns_soa.c */; }; + ECF4BD5A11434C1100B7C09B /* tnet_dns_soa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCF111434C1100B7C09B /* tnet_dns_soa.h */; }; + ECF4BD5B11434C1100B7C09B /* tnet_dns_srv.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCF211434C1100B7C09B /* tnet_dns_srv.c */; }; + ECF4BD5C11434C1100B7C09B /* tnet_dns_srv.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCF311434C1100B7C09B /* tnet_dns_srv.h */; }; + ECF4BD5D11434C1100B7C09B /* tnet_dns_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCF411434C1100B7C09B /* tnet_dns_txt.c */; }; + ECF4BD5E11434C1100B7C09B /* tnet_dns_txt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCF511434C1100B7C09B /* tnet_dns_txt.h */; }; + ECF4BD5F11434C1100B7C09B /* tnet_ice.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCF711434C1100B7C09B /* tnet_ice.c */; }; + ECF4BD6011434C1100B7C09B /* tnet_ice.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCF811434C1100B7C09B /* tnet_ice.h */; }; + ECF4BD6211434C1100B7C09B /* tnet_stun.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCFC11434C1100B7C09B /* tnet_stun.c */; }; + ECF4BD6311434C1100B7C09B /* tnet_stun.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCFD11434C1100B7C09B /* tnet_stun.h */; }; + ECF4BD6411434C1100B7C09B /* tnet_stun_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCFE11434C1100B7C09B /* tnet_stun_attribute.c */; }; + ECF4BD6511434C1100B7C09B /* tnet_stun_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCFF11434C1100B7C09B /* tnet_stun_attribute.h */; }; + ECF4BD6611434C1100B7C09B /* tnet_stun_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0011434C1100B7C09B /* tnet_stun_message.c */; }; + ECF4BD6711434C1100B7C09B /* tnet_stun_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0111434C1100B7C09B /* tnet_stun_message.h */; }; + ECF4BD6811434C1100B7C09B /* tinyNET_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0211434C1100B7C09B /* tinyNET_config.h */; }; + ECF4BD6911434C1100B7C09B /* tnet_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0411434C1100B7C09B /* tnet_tls.c */; }; + ECF4BD6A11434C1100B7C09B /* tnet_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0511434C1100B7C09B /* tnet_tls.h */; }; + ECF4BD6B11434C1100B7C09B /* tnet.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0611434C1100B7C09B /* tnet.c */; }; + ECF4BD6C11434C1100B7C09B /* tnet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0711434C1100B7C09B /* tnet.h */; }; + ECF4BD6D11434C1100B7C09B /* tnet_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0811434C1100B7C09B /* tnet_auth.c */; }; + ECF4BD6E11434C1100B7C09B /* tnet_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0911434C1100B7C09B /* tnet_auth.h */; }; + ECF4BD6F11434C1100B7C09B /* tnet_hardwares.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0A11434C1100B7C09B /* tnet_hardwares.h */; }; + ECF4BD7011434C1100B7C09B /* tnet_nat.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0B11434C1100B7C09B /* tnet_nat.c */; }; + ECF4BD7111434C1100B7C09B /* tnet_nat.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0C11434C1100B7C09B /* tnet_nat.h */; }; + ECF4BD7211434C1100B7C09B /* tnet_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0D11434C1100B7C09B /* tnet_poll.c */; }; + ECF4BD7311434C1100B7C09B /* tnet_poll.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0E11434C1100B7C09B /* tnet_poll.h */; }; + ECF4BD7411434C1100B7C09B /* tnet_proto.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0F11434C1100B7C09B /* tnet_proto.h */; }; + ECF4BD7511434C1100B7C09B /* tnet_socket.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1011434C1100B7C09B /* tnet_socket.c */; }; + ECF4BD7611434C1100B7C09B /* tnet_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1111434C1100B7C09B /* tnet_socket.h */; }; + ECF4BD7711434C1100B7C09B /* tnet_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1211434C1100B7C09B /* tnet_transport.c */; }; + ECF4BD7811434C1100B7C09B /* tnet_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1311434C1100B7C09B /* tnet_transport.h */; }; + ECF4BD7911434C1100B7C09B /* tnet_transport_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1411434C1100B7C09B /* tnet_transport_poll.c */; }; + ECF4BD7A11434C1100B7C09B /* tnet_transport_win32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1511434C1100B7C09B /* tnet_transport_win32.c */; }; + ECF4BD7B11434C1100B7C09B /* tnet_types.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1611434C1100B7C09B /* tnet_types.h */; }; + ECF4BD7C11434C1100B7C09B /* tnet_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1711434C1100B7C09B /* tnet_utils.c */; }; + ECF4BD7D11434C1100B7C09B /* tnet_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1811434C1100B7C09B /* tnet_utils.h */; }; + ECF4BD7E11434C1100B7C09B /* tnet_turn.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1A11434C1100B7C09B /* tnet_turn.c */; }; + ECF4BD7F11434C1100B7C09B /* tnet_turn.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1B11434C1100B7C09B /* tnet_turn.h */; }; + ECF4BD8011434C1100B7C09B /* tnet_turn_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1C11434C1100B7C09B /* tnet_turn_attribute.c */; }; + ECF4BD8111434C1100B7C09B /* tnet_turn_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1D11434C1100B7C09B /* tnet_turn_attribute.h */; }; + ECF4BD8211434C1100B7C09B /* tnet_turn_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1E11434C1100B7C09B /* tnet_turn_message.c */; }; + ECF4BD8311434C1100B7C09B /* tnet_turn_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1F11434C1100B7C09B /* tnet_turn_message.h */; }; + ECF4BD9D11434CA000B7C09B /* tsk_fsm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD9511434CA000B7C09B /* tsk_fsm.c */; }; + ECF4BD9E11434CA000B7C09B /* tsk_fsm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD9611434CA000B7C09B /* tsk_fsm.h */; }; + ECF4BD9F11434CA000B7C09B /* tsk_ppfcs32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD9711434CA000B7C09B /* tsk_ppfcs32.c */; }; + ECF4BDA011434CA000B7C09B /* tsk_ppfcs32.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD9811434CA000B7C09B /* tsk_ppfcs32.h */; }; + ECF4BDA111434CA000B7C09B /* tsk_ragel_state.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD9911434CA000B7C09B /* tsk_ragel_state.c */; }; + ECF4BDA211434CA000B7C09B /* tsk_ragel_state.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD9A11434CA000B7C09B /* tsk_ragel_state.h */; }; + ECF4BDA311434CA000B7C09B /* tsk_uuid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD9B11434CA000B7C09B /* tsk_uuid.c */; }; + ECF4BDA411434CA000B7C09B /* tsk_uuid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD9C11434CA000B7C09B /* tsk_uuid.h */; }; + ECF4BDAA11434CC600B7C09B /* libtinyNET.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF4BCB411434BA800B7C09B /* libtinyNET.dylib */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -79,23 +179,37 @@ isa = PBXContainerItemProxy; containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; proxyType = 1; - remoteGlobalIDString = ECED61BB10F988E7006B4DC9 /* tinySAK */; + remoteGlobalIDString = ECED61BB10F988E7006B4DC9; remoteInfo = tinySAK; }; ECED624B10F98B85006B4DC9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2AAC0620554660B00DB518D /* tinyHTTP */; + remoteGlobalIDString = D2AAC0620554660B00DB518D; remoteInfo = tinyHTTP; }; ECED624D10F98B85006B4DC9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ECED61BB10F988E7006B4DC9; + remoteInfo = tinySAK; + }; + ECF4BCB811434BF400B7C09B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; proxyType = 1; remoteGlobalIDString = ECED61BB10F988E7006B4DC9 /* tinySAK */; remoteInfo = tinySAK; }; + ECF4BDA811434CC200B7C09B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ECF4BCB311434BA800B7C09B /* tinyNET */; + remoteInfo = tinyNET; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ @@ -106,10 +220,6 @@ ECED61A910F9885E006B4DC9 /* thttp_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = thttp_auth.h; path = ../../tinyHTTP/include/tinyHTTP/auth/thttp_auth.h; sourceTree = SOURCE_ROOT; }; ECED61AB10F98876006B4DC9 /* thttp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = thttp.h; path = ../../tinyHTTP/include/thttp.h; sourceTree = SOURCE_ROOT; }; ECED61AC10F98876006B4DC9 /* tinyhttp_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tinyhttp_config.h; path = ../../tinyHTTP/include/tinyhttp_config.h; sourceTree = SOURCE_ROOT; }; - ECED61AF10F98893006B4DC9 /* thttp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = thttp.c; path = ../../tinyHTTP/source/thttp.c; sourceTree = SOURCE_ROOT; }; - ECED61B010F98893006B4DC9 /* thttp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = thttp_message.c; path = ../../tinyHTTP/source/thttp_message.c; sourceTree = SOURCE_ROOT; }; - ECED61B110F98893006B4DC9 /* thttp_utl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = thttp_utl.c; path = ../../tinyHTTP/source/thttp_utl.c; sourceTree = SOURCE_ROOT; }; - ECED61B510F988B3006B4DC9 /* thttp_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = thttp_auth.c; path = ../../tinyHTTP/source/auth/thttp_auth.c; sourceTree = SOURCE_ROOT; }; ECED61BC10F988E7006B4DC9 /* libtinySAK.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinySAK.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; ECED61C110F98926006B4DC9 /* tinySAK_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tinySAK_config.h; path = ../../tinySAK/src/tinySAK_config.h; sourceTree = SOURCE_ROOT; }; ECED61C210F98926006B4DC9 /* tsk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk.c; path = ../../tinySAK/src/tsk.c; sourceTree = SOURCE_ROOT; }; @@ -125,13 +235,10 @@ ECED61CC10F98926006B4DC9 /* tsk_debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_debug.c; path = ../../tinySAK/src/tsk_debug.c; sourceTree = SOURCE_ROOT; }; ECED61CD10F98926006B4DC9 /* tsk_debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_debug.h; path = ../../tinySAK/src/tsk_debug.h; sourceTree = SOURCE_ROOT; }; ECED61CE10F98926006B4DC9 /* tsk_errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_errno.h; path = ../../tinySAK/src/tsk_errno.h; sourceTree = SOURCE_ROOT; }; - ECED61CF10F98926006B4DC9 /* tsk_heap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_heap.c; path = ../../tinySAK/src/tsk_heap.c; sourceTree = SOURCE_ROOT; }; - ECED61D010F98926006B4DC9 /* tsk_heap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_heap.h; path = ../../tinySAK/src/tsk_heap.h; sourceTree = SOURCE_ROOT; }; ECED61D110F98926006B4DC9 /* tsk_hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_hmac.c; path = ../../tinySAK/src/tsk_hmac.c; sourceTree = SOURCE_ROOT; }; ECED61D210F98926006B4DC9 /* tsk_hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_hmac.h; path = ../../tinySAK/src/tsk_hmac.h; sourceTree = SOURCE_ROOT; }; ECED61D310F98926006B4DC9 /* tsk_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_list.c; path = ../../tinySAK/src/tsk_list.c; sourceTree = SOURCE_ROOT; }; ECED61D410F98926006B4DC9 /* tsk_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_list.h; path = ../../tinySAK/src/tsk_list.h; sourceTree = SOURCE_ROOT; }; - ECED61D510F98926006B4DC9 /* tsk_macros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_macros.h; path = ../../tinySAK/src/tsk_macros.h; sourceTree = SOURCE_ROOT; }; ECED61D610F98926006B4DC9 /* tsk_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_md5.c; path = ../../tinySAK/src/tsk_md5.c; sourceTree = SOURCE_ROOT; }; ECED61D710F98926006B4DC9 /* tsk_md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_md5.h; path = ../../tinySAK/src/tsk_md5.h; sourceTree = SOURCE_ROOT; }; ECED61D810F98926006B4DC9 /* tsk_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_memory.c; path = ../../tinySAK/src/tsk_memory.c; sourceTree = SOURCE_ROOT; }; @@ -165,12 +272,120 @@ ECED61F410F98926006B4DC9 /* tsk_xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_xml.c; path = ../../tinySAK/src/tsk_xml.c; sourceTree = SOURCE_ROOT; }; ECED61F510F98926006B4DC9 /* tsk_xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_xml.h; path = ../../tinySAK/src/tsk_xml.h; sourceTree = SOURCE_ROOT; }; ECED623D10F98B46006B4DC9 /* test */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = test; sourceTree = BUILT_PRODUCTS_DIR; }; - ECED624210F98B6A006B4DC9 /* stdafx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = stdafx.c; path = ../../tinyHTTP/test/stdafx.c; sourceTree = SOURCE_ROOT; }; - ECED624310F98B6A006B4DC9 /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stdafx.h; path = ../../tinyHTTP/test/stdafx.h; sourceTree = SOURCE_ROOT; }; - ECED624410F98B6A006B4DC9 /* targetver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = targetver.h; path = ../../tinyHTTP/test/targetver.h; sourceTree = SOURCE_ROOT; }; - ECED624510F98B6A006B4DC9 /* test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = test.c; path = ../../tinyHTTP/test/test.c; sourceTree = SOURCE_ROOT; }; - ECED624610F98B6A006B4DC9 /* test.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = test.vcproj; path = ../../tinyHTTP/test/test.vcproj; sourceTree = SOURCE_ROOT; }; - ECED624710F98B6A006B4DC9 /* test_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_auth.h; path = ../../tinyHTTP/test/test_auth.h; sourceTree = SOURCE_ROOT; }; + ECF4BC7811434AEB00B7C09B /* thttp_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_auth.c; sourceTree = ""; }; + ECF4BC7A11434AEB00B7C09B /* thttp_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header.c; sourceTree = ""; }; + ECF4BC7B11434AEB00B7C09B /* thttp_header_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Authorization.c; sourceTree = ""; }; + ECF4BC7C11434AEB00B7C09B /* thttp_header_Content_Length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Length.c; sourceTree = ""; }; + ECF4BC7D11434AEB00B7C09B /* thttp_header_Content_Type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Type.c; sourceTree = ""; }; + ECF4BC7E11434AEB00B7C09B /* thttp_header_Dummy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Dummy.c; sourceTree = ""; }; + ECF4BC7F11434AEB00B7C09B /* thttp_header_Proxy_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Proxy_Authenticate.c; sourceTree = ""; }; + ECF4BC8011434AEB00B7C09B /* thttp_header_WWW_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_WWW_Authenticate.c; sourceTree = ""; }; + ECF4BC8311434AEB00B7C09B /* thttp_parser_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_header.c; sourceTree = ""; }; + ECF4BC8411434AEB00B7C09B /* thttp_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_message.c; sourceTree = ""; }; + ECF4BC8511434AEB00B7C09B /* thttp_parser_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_url.c; sourceTree = ""; }; + ECF4BC8611434AEB00B7C09B /* thttp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp.c; sourceTree = ""; }; + ECF4BC8711434AEB00B7C09B /* thttp_event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_event.c; sourceTree = ""; }; + ECF4BC8811434AEB00B7C09B /* thttp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_message.c; sourceTree = ""; }; + ECF4BC8911434AEB00B7C09B /* thttp_operation.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_operation.c; sourceTree = ""; }; + ECF4BC8A11434AEB00B7C09B /* thttp_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_transport.c; sourceTree = ""; }; + ECF4BC8B11434AEB00B7C09B /* thttp_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_url.c; sourceTree = ""; }; + ECF4BCA111434B0E00B7C09B /* stdafx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stdafx.c; sourceTree = ""; }; + ECF4BCA211434B0E00B7C09B /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = ""; }; + ECF4BCA311434B0E00B7C09B /* targetver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = targetver.h; sourceTree = ""; }; + ECF4BCA411434B0E00B7C09B /* test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = test.c; sourceTree = ""; }; + ECF4BCA511434B0E00B7C09B /* test.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = test.vcproj; sourceTree = ""; }; + ECF4BCA611434B0E00B7C09B /* test_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_auth.h; sourceTree = ""; }; + ECF4BCA711434B0E00B7C09B /* test_stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_stack.h; sourceTree = ""; }; + ECF4BCA811434B0E00B7C09B /* test_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_url.h; sourceTree = ""; }; + ECF4BCB411434BA800B7C09B /* libtinyNET.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyNET.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; + ECF4BCC811434C1000B7C09B /* tnet_dhcp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp.c; sourceTree = ""; }; + ECF4BCC911434C1000B7C09B /* tnet_dhcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp.h; sourceTree = ""; }; + ECF4BCCA11434C1000B7C09B /* tnet_dhcp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_message.c; sourceTree = ""; }; + ECF4BCCB11434C1000B7C09B /* tnet_dhcp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_message.h; sourceTree = ""; }; + ECF4BCCC11434C1000B7C09B /* tnet_dhcp_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option.c; sourceTree = ""; }; + ECF4BCCD11434C1000B7C09B /* tnet_dhcp_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option.h; sourceTree = ""; }; + ECF4BCCE11434C1000B7C09B /* tnet_dhcp_option_sip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option_sip.c; sourceTree = ""; }; + ECF4BCCF11434C1000B7C09B /* tnet_dhcp_option_sip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option_sip.h; sourceTree = ""; }; + ECF4BCD111434C1000B7C09B /* tnet_dhcp6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6.c; sourceTree = ""; }; + ECF4BCD211434C1000B7C09B /* tnet_dhcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6.h; sourceTree = ""; }; + ECF4BCD311434C1000B7C09B /* tnet_dhcp6_duid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_duid.c; sourceTree = ""; }; + ECF4BCD411434C1000B7C09B /* tnet_dhcp6_duid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_duid.h; sourceTree = ""; }; + ECF4BCD511434C1000B7C09B /* tnet_dhcp6_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_message.c; sourceTree = ""; }; + ECF4BCD611434C1000B7C09B /* tnet_dhcp6_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_message.h; sourceTree = ""; }; + ECF4BCD711434C1000B7C09B /* tnet_dhcp6_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_option.c; sourceTree = ""; }; + ECF4BCD811434C1100B7C09B /* tnet_dhcp6_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_option.h; sourceTree = ""; }; + ECF4BCDA11434C1100B7C09B /* tnet_dns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns.c; sourceTree = ""; }; + ECF4BCDB11434C1100B7C09B /* tnet_dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns.h; sourceTree = ""; }; + ECF4BCDC11434C1100B7C09B /* tnet_dns_a.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_a.c; sourceTree = ""; }; + ECF4BCDD11434C1100B7C09B /* tnet_dns_a.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_a.h; sourceTree = ""; }; + ECF4BCDE11434C1100B7C09B /* tnet_dns_aaaa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_aaaa.c; sourceTree = ""; }; + ECF4BCDF11434C1100B7C09B /* tnet_dns_aaaa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_aaaa.h; sourceTree = ""; }; + ECF4BCE011434C1100B7C09B /* tnet_dns_cname.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_cname.c; sourceTree = ""; }; + ECF4BCE111434C1100B7C09B /* tnet_dns_cname.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_cname.h; sourceTree = ""; }; + ECF4BCE211434C1100B7C09B /* tnet_dns_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_message.c; sourceTree = ""; }; + ECF4BCE311434C1100B7C09B /* tnet_dns_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_message.h; sourceTree = ""; }; + ECF4BCE411434C1100B7C09B /* tnet_dns_mx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_mx.c; sourceTree = ""; }; + ECF4BCE511434C1100B7C09B /* tnet_dns_mx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_mx.h; sourceTree = ""; }; + ECF4BCE611434C1100B7C09B /* tnet_dns_naptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_naptr.c; sourceTree = ""; }; + ECF4BCE711434C1100B7C09B /* tnet_dns_naptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_naptr.h; sourceTree = ""; }; + ECF4BCE811434C1100B7C09B /* tnet_dns_ns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ns.c; sourceTree = ""; }; + ECF4BCE911434C1100B7C09B /* tnet_dns_ns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ns.h; sourceTree = ""; }; + ECF4BCEA11434C1100B7C09B /* tnet_dns_opt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_opt.c; sourceTree = ""; }; + ECF4BCEB11434C1100B7C09B /* tnet_dns_opt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_opt.h; sourceTree = ""; }; + ECF4BCEC11434C1100B7C09B /* tnet_dns_ptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ptr.c; sourceTree = ""; }; + ECF4BCED11434C1100B7C09B /* tnet_dns_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ptr.h; sourceTree = ""; }; + ECF4BCEE11434C1100B7C09B /* tnet_dns_rr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_rr.c; sourceTree = ""; }; + ECF4BCEF11434C1100B7C09B /* tnet_dns_rr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_rr.h; sourceTree = ""; }; + ECF4BCF011434C1100B7C09B /* tnet_dns_soa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_soa.c; sourceTree = ""; }; + ECF4BCF111434C1100B7C09B /* tnet_dns_soa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_soa.h; sourceTree = ""; }; + ECF4BCF211434C1100B7C09B /* tnet_dns_srv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_srv.c; sourceTree = ""; }; + ECF4BCF311434C1100B7C09B /* tnet_dns_srv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_srv.h; sourceTree = ""; }; + ECF4BCF411434C1100B7C09B /* tnet_dns_txt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_txt.c; sourceTree = ""; }; + ECF4BCF511434C1100B7C09B /* tnet_dns_txt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_txt.h; sourceTree = ""; }; + ECF4BCF711434C1100B7C09B /* tnet_ice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_ice.c; sourceTree = ""; }; + ECF4BCF811434C1100B7C09B /* tnet_ice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_ice.h; sourceTree = ""; }; + ECF4BCFC11434C1100B7C09B /* tnet_stun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun.c; sourceTree = ""; }; + ECF4BCFD11434C1100B7C09B /* tnet_stun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun.h; sourceTree = ""; }; + ECF4BCFE11434C1100B7C09B /* tnet_stun_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_attribute.c; sourceTree = ""; }; + ECF4BCFF11434C1100B7C09B /* tnet_stun_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_attribute.h; sourceTree = ""; }; + ECF4BD0011434C1100B7C09B /* tnet_stun_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_message.c; sourceTree = ""; }; + ECF4BD0111434C1100B7C09B /* tnet_stun_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_message.h; sourceTree = ""; }; + ECF4BD0211434C1100B7C09B /* tinyNET_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyNET_config.h; sourceTree = ""; }; + ECF4BD0411434C1100B7C09B /* tnet_tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_tls.c; sourceTree = ""; }; + ECF4BD0511434C1100B7C09B /* tnet_tls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_tls.h; sourceTree = ""; }; + ECF4BD0611434C1100B7C09B /* tnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet.c; sourceTree = ""; }; + ECF4BD0711434C1100B7C09B /* tnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet.h; sourceTree = ""; }; + ECF4BD0811434C1100B7C09B /* tnet_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_auth.c; sourceTree = ""; }; + ECF4BD0911434C1100B7C09B /* tnet_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_auth.h; sourceTree = ""; }; + ECF4BD0A11434C1100B7C09B /* tnet_hardwares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_hardwares.h; sourceTree = ""; }; + ECF4BD0B11434C1100B7C09B /* tnet_nat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_nat.c; sourceTree = ""; }; + ECF4BD0C11434C1100B7C09B /* tnet_nat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_nat.h; sourceTree = ""; }; + ECF4BD0D11434C1100B7C09B /* tnet_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_poll.c; sourceTree = ""; }; + ECF4BD0E11434C1100B7C09B /* tnet_poll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_poll.h; sourceTree = ""; }; + ECF4BD0F11434C1100B7C09B /* tnet_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_proto.h; sourceTree = ""; }; + ECF4BD1011434C1100B7C09B /* tnet_socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_socket.c; sourceTree = ""; }; + ECF4BD1111434C1100B7C09B /* tnet_socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_socket.h; sourceTree = ""; }; + ECF4BD1211434C1100B7C09B /* tnet_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport.c; sourceTree = ""; }; + ECF4BD1311434C1100B7C09B /* tnet_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_transport.h; sourceTree = ""; }; + ECF4BD1411434C1100B7C09B /* tnet_transport_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_poll.c; sourceTree = ""; }; + ECF4BD1511434C1100B7C09B /* tnet_transport_win32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_win32.c; sourceTree = ""; }; + ECF4BD1611434C1100B7C09B /* tnet_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_types.h; sourceTree = ""; }; + ECF4BD1711434C1100B7C09B /* tnet_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_utils.c; sourceTree = ""; }; + ECF4BD1811434C1100B7C09B /* tnet_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_utils.h; sourceTree = ""; }; + ECF4BD1A11434C1100B7C09B /* tnet_turn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn.c; sourceTree = ""; }; + ECF4BD1B11434C1100B7C09B /* tnet_turn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn.h; sourceTree = ""; }; + ECF4BD1C11434C1100B7C09B /* tnet_turn_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_attribute.c; sourceTree = ""; }; + ECF4BD1D11434C1100B7C09B /* tnet_turn_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_attribute.h; sourceTree = ""; }; + ECF4BD1E11434C1100B7C09B /* tnet_turn_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_message.c; sourceTree = ""; }; + ECF4BD1F11434C1100B7C09B /* tnet_turn_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_message.h; sourceTree = ""; }; + ECF4BD9511434CA000B7C09B /* tsk_fsm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_fsm.c; path = ../../tinySAK/src/tsk_fsm.c; sourceTree = SOURCE_ROOT; }; + ECF4BD9611434CA000B7C09B /* tsk_fsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_fsm.h; path = ../../tinySAK/src/tsk_fsm.h; sourceTree = SOURCE_ROOT; }; + ECF4BD9711434CA000B7C09B /* tsk_ppfcs32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_ppfcs32.c; path = ../../tinySAK/src/tsk_ppfcs32.c; sourceTree = SOURCE_ROOT; }; + ECF4BD9811434CA000B7C09B /* tsk_ppfcs32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_ppfcs32.h; path = ../../tinySAK/src/tsk_ppfcs32.h; sourceTree = SOURCE_ROOT; }; + ECF4BD9911434CA000B7C09B /* 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; }; + ECF4BD9A11434CA000B7C09B /* 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; }; + ECF4BD9B11434CA000B7C09B /* tsk_uuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_uuid.c; path = ../../tinySAK/src/tsk_uuid.c; sourceTree = SOURCE_ROOT; }; + ECF4BD9C11434CA000B7C09B /* tsk_uuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_uuid.h; path = ../../tinySAK/src/tsk_uuid.h; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -179,6 +394,7 @@ buildActionMask = 2147483647; files = ( ECED622F10F989A3006B4DC9 /* libtinySAK.dylib in Frameworks */, + ECF4BDAA11434CC600B7C09B /* libtinyNET.dylib in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -198,48 +414,39 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + ECF4BCB211434BA800B7C09B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ECF4BCBA11434BF900B7C09B /* libtinySAK.dylib in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ 08FB7794FE84155DC02AAC07 /* tinyHTTP */ = { isa = PBXGroup; children = ( - ECED624210F98B6A006B4DC9 /* stdafx.c */, - ECED624310F98B6A006B4DC9 /* stdafx.h */, - ECED624410F98B6A006B4DC9 /* targetver.h */, - ECED624510F98B6A006B4DC9 /* test.c */, - ECED624610F98B6A006B4DC9 /* test.vcproj */, - ECED624710F98B6A006B4DC9 /* test_auth.h */, - ECED623910F98B38006B4DC9 /* test */, + ECF4BCBB11434C1000B7C09B /* tinyNET */, + ECF4BC9F11434B0E00B7C09B /* test */, + ECF4BC7611434AEB00B7C09B /* src */, ECED61BF10F988F6006B4DC9 /* tinySAK */, ECED619F10F987B4006B4DC9 /* ragel */, ECED619E10F987A5006B4DC9 /* abnf */, ECED619D10F9878B006B4DC9 /* include */, - 08FB7795FE84155DC02AAC07 /* Source */, 1AB674ADFE9D54B511CA2CBB /* Products */, ); name = tinyHTTP; sourceTree = ""; }; - 08FB7795FE84155DC02AAC07 /* Source */ = { - isa = PBXGroup; - children = ( - ECED61AF10F98893006B4DC9 /* thttp.c */, - ECED61B010F98893006B4DC9 /* thttp_message.c */, - ECED61B110F98893006B4DC9 /* thttp_utl.c */, - ECED61A210F987D2006B4DC9 /* parsers */, - ECED61A110F987CA006B4DC9 /* headers */, - ECED61A010F987C2006B4DC9 /* auth */, - ); - name = Source; - sourceTree = ""; - }; 1AB674ADFE9D54B511CA2CBB /* Products */ = { isa = PBXGroup; children = ( D2AAC0630554660B00DB518D /* libtinyHTTP.dylib */, ECED61BC10F988E7006B4DC9 /* libtinySAK.dylib */, ECED623D10F98B46006B4DC9 /* test */, + ECF4BCB411434BA800B7C09B /* libtinyNET.dylib */, ); name = Products; sourceTree = ""; @@ -273,28 +480,6 @@ name = ragel; sourceTree = ""; }; - ECED61A010F987C2006B4DC9 /* auth */ = { - isa = PBXGroup; - children = ( - ECED61B510F988B3006B4DC9 /* thttp_auth.c */, - ); - name = auth; - sourceTree = ""; - }; - ECED61A110F987CA006B4DC9 /* headers */ = { - isa = PBXGroup; - children = ( - ); - name = headers; - sourceTree = ""; - }; - ECED61A210F987D2006B4DC9 /* parsers */ = { - isa = PBXGroup; - children = ( - ); - name = parsers; - sourceTree = ""; - }; ECED61A310F987E3006B4DC9 /* auth */ = { isa = PBXGroup; children = ( @@ -320,6 +505,14 @@ ECED61BF10F988F6006B4DC9 /* tinySAK */ = { isa = PBXGroup; children = ( + ECF4BD9511434CA000B7C09B /* tsk_fsm.c */, + ECF4BD9611434CA000B7C09B /* tsk_fsm.h */, + ECF4BD9711434CA000B7C09B /* tsk_ppfcs32.c */, + ECF4BD9811434CA000B7C09B /* tsk_ppfcs32.h */, + ECF4BD9911434CA000B7C09B /* tsk_ragel_state.c */, + ECF4BD9A11434CA000B7C09B /* tsk_ragel_state.h */, + ECF4BD9B11434CA000B7C09B /* tsk_uuid.c */, + ECF4BD9C11434CA000B7C09B /* tsk_uuid.h */, ECED61C110F98926006B4DC9 /* tinySAK_config.h */, ECED61C210F98926006B4DC9 /* tsk.c */, ECED61C310F98926006B4DC9 /* tsk.h */, @@ -334,13 +527,10 @@ ECED61CC10F98926006B4DC9 /* tsk_debug.c */, ECED61CD10F98926006B4DC9 /* tsk_debug.h */, ECED61CE10F98926006B4DC9 /* tsk_errno.h */, - ECED61CF10F98926006B4DC9 /* tsk_heap.c */, - ECED61D010F98926006B4DC9 /* tsk_heap.h */, ECED61D110F98926006B4DC9 /* tsk_hmac.c */, ECED61D210F98926006B4DC9 /* tsk_hmac.h */, ECED61D310F98926006B4DC9 /* tsk_list.c */, ECED61D410F98926006B4DC9 /* tsk_list.h */, - ECED61D510F98926006B4DC9 /* tsk_macros.h */, ECED61D610F98926006B4DC9 /* tsk_md5.c */, ECED61D710F98926006B4DC9 /* tsk_md5.h */, ECED61D810F98926006B4DC9 /* tsk_memory.c */, @@ -377,11 +567,229 @@ name = tinySAK; sourceTree = ""; }; - ECED623910F98B38006B4DC9 /* test */ = { + ECF4BC7611434AEB00B7C09B /* src */ = { + isa = PBXGroup; + children = ( + ECF4BC7711434AEB00B7C09B /* auth */, + ECF4BC7911434AEB00B7C09B /* headers */, + ECF4BC8211434AEB00B7C09B /* parsers */, + ECF4BC8611434AEB00B7C09B /* thttp.c */, + ECF4BC8711434AEB00B7C09B /* thttp_event.c */, + ECF4BC8811434AEB00B7C09B /* thttp_message.c */, + ECF4BC8911434AEB00B7C09B /* thttp_operation.c */, + ECF4BC8A11434AEB00B7C09B /* thttp_transport.c */, + ECF4BC8B11434AEB00B7C09B /* thttp_url.c */, + ); + name = src; + path = ../../tinyHTTP/src; + sourceTree = SOURCE_ROOT; + }; + ECF4BC7711434AEB00B7C09B /* auth */ = { + isa = PBXGroup; + children = ( + ECF4BC7811434AEB00B7C09B /* thttp_auth.c */, + ); + path = auth; + sourceTree = ""; + }; + ECF4BC7911434AEB00B7C09B /* headers */ = { + isa = PBXGroup; + children = ( + ECF4BC7A11434AEB00B7C09B /* thttp_header.c */, + ECF4BC7B11434AEB00B7C09B /* thttp_header_Authorization.c */, + ECF4BC7C11434AEB00B7C09B /* thttp_header_Content_Length.c */, + ECF4BC7D11434AEB00B7C09B /* thttp_header_Content_Type.c */, + ECF4BC7E11434AEB00B7C09B /* thttp_header_Dummy.c */, + ECF4BC7F11434AEB00B7C09B /* thttp_header_Proxy_Authenticate.c */, + ECF4BC8011434AEB00B7C09B /* thttp_header_WWW_Authenticate.c */, + ); + path = headers; + sourceTree = ""; + }; + ECF4BC8211434AEB00B7C09B /* parsers */ = { + isa = PBXGroup; + children = ( + ECF4BC8311434AEB00B7C09B /* thttp_parser_header.c */, + ECF4BC8411434AEB00B7C09B /* thttp_parser_message.c */, + ECF4BC8511434AEB00B7C09B /* thttp_parser_url.c */, + ); + path = parsers; + sourceTree = ""; + }; + ECF4BC9F11434B0E00B7C09B /* test */ = { + isa = PBXGroup; + children = ( + ECF4BCA111434B0E00B7C09B /* stdafx.c */, + ECF4BCA211434B0E00B7C09B /* stdafx.h */, + ECF4BCA311434B0E00B7C09B /* targetver.h */, + ECF4BCA411434B0E00B7C09B /* test.c */, + ECF4BCA511434B0E00B7C09B /* test.vcproj */, + ECF4BCA611434B0E00B7C09B /* test_auth.h */, + ECF4BCA711434B0E00B7C09B /* test_stack.h */, + ECF4BCA811434B0E00B7C09B /* test_url.h */, + ); + name = test; + path = ../../tinyHTTP/test; + sourceTree = SOURCE_ROOT; + }; + ECF4BCBB11434C1000B7C09B /* tinyNET */ = { + isa = PBXGroup; + children = ( + ECF4BCC611434C1000B7C09B /* src */, + ); + name = tinyNET; + path = ../../tinyNET; + sourceTree = SOURCE_ROOT; + }; + ECF4BCC611434C1000B7C09B /* src */ = { + isa = PBXGroup; + children = ( + ECF4BCC711434C1000B7C09B /* dhcp */, + ECF4BCD011434C1000B7C09B /* dhcp6 */, + ECF4BCD911434C1100B7C09B /* dns */, + ECF4BCF611434C1100B7C09B /* ice */, + ECF4BCFA11434C1100B7C09B /* parsers */, + ECF4BCFB11434C1100B7C09B /* stun */, + ECF4BD0211434C1100B7C09B /* tinyNET_config.h */, + ECF4BD0311434C1100B7C09B /* tls */, + ECF4BD0611434C1100B7C09B /* tnet.c */, + ECF4BD0711434C1100B7C09B /* tnet.h */, + ECF4BD0811434C1100B7C09B /* tnet_auth.c */, + ECF4BD0911434C1100B7C09B /* tnet_auth.h */, + ECF4BD0A11434C1100B7C09B /* tnet_hardwares.h */, + ECF4BD0B11434C1100B7C09B /* tnet_nat.c */, + ECF4BD0C11434C1100B7C09B /* tnet_nat.h */, + ECF4BD0D11434C1100B7C09B /* tnet_poll.c */, + ECF4BD0E11434C1100B7C09B /* tnet_poll.h */, + ECF4BD0F11434C1100B7C09B /* tnet_proto.h */, + ECF4BD1011434C1100B7C09B /* tnet_socket.c */, + ECF4BD1111434C1100B7C09B /* tnet_socket.h */, + ECF4BD1211434C1100B7C09B /* tnet_transport.c */, + ECF4BD1311434C1100B7C09B /* tnet_transport.h */, + ECF4BD1411434C1100B7C09B /* tnet_transport_poll.c */, + ECF4BD1511434C1100B7C09B /* tnet_transport_win32.c */, + ECF4BD1611434C1100B7C09B /* tnet_types.h */, + ECF4BD1711434C1100B7C09B /* tnet_utils.c */, + ECF4BD1811434C1100B7C09B /* tnet_utils.h */, + ECF4BD1911434C1100B7C09B /* turn */, + ); + path = src; + sourceTree = ""; + }; + ECF4BCC711434C1000B7C09B /* dhcp */ = { + isa = PBXGroup; + children = ( + ECF4BCC811434C1000B7C09B /* tnet_dhcp.c */, + ECF4BCC911434C1000B7C09B /* tnet_dhcp.h */, + ECF4BCCA11434C1000B7C09B /* tnet_dhcp_message.c */, + ECF4BCCB11434C1000B7C09B /* tnet_dhcp_message.h */, + ECF4BCCC11434C1000B7C09B /* tnet_dhcp_option.c */, + ECF4BCCD11434C1000B7C09B /* tnet_dhcp_option.h */, + ECF4BCCE11434C1000B7C09B /* tnet_dhcp_option_sip.c */, + ECF4BCCF11434C1000B7C09B /* tnet_dhcp_option_sip.h */, + ); + path = dhcp; + sourceTree = ""; + }; + ECF4BCD011434C1000B7C09B /* dhcp6 */ = { + isa = PBXGroup; + children = ( + ECF4BCD111434C1000B7C09B /* tnet_dhcp6.c */, + ECF4BCD211434C1000B7C09B /* tnet_dhcp6.h */, + ECF4BCD311434C1000B7C09B /* tnet_dhcp6_duid.c */, + ECF4BCD411434C1000B7C09B /* tnet_dhcp6_duid.h */, + ECF4BCD511434C1000B7C09B /* tnet_dhcp6_message.c */, + ECF4BCD611434C1000B7C09B /* tnet_dhcp6_message.h */, + ECF4BCD711434C1000B7C09B /* tnet_dhcp6_option.c */, + ECF4BCD811434C1100B7C09B /* tnet_dhcp6_option.h */, + ); + path = dhcp6; + sourceTree = ""; + }; + ECF4BCD911434C1100B7C09B /* dns */ = { + isa = PBXGroup; + children = ( + ECF4BCDA11434C1100B7C09B /* tnet_dns.c */, + ECF4BCDB11434C1100B7C09B /* tnet_dns.h */, + ECF4BCDC11434C1100B7C09B /* tnet_dns_a.c */, + ECF4BCDD11434C1100B7C09B /* tnet_dns_a.h */, + ECF4BCDE11434C1100B7C09B /* tnet_dns_aaaa.c */, + ECF4BCDF11434C1100B7C09B /* tnet_dns_aaaa.h */, + ECF4BCE011434C1100B7C09B /* tnet_dns_cname.c */, + ECF4BCE111434C1100B7C09B /* tnet_dns_cname.h */, + ECF4BCE211434C1100B7C09B /* tnet_dns_message.c */, + ECF4BCE311434C1100B7C09B /* tnet_dns_message.h */, + ECF4BCE411434C1100B7C09B /* tnet_dns_mx.c */, + ECF4BCE511434C1100B7C09B /* tnet_dns_mx.h */, + ECF4BCE611434C1100B7C09B /* tnet_dns_naptr.c */, + ECF4BCE711434C1100B7C09B /* tnet_dns_naptr.h */, + ECF4BCE811434C1100B7C09B /* tnet_dns_ns.c */, + ECF4BCE911434C1100B7C09B /* tnet_dns_ns.h */, + ECF4BCEA11434C1100B7C09B /* tnet_dns_opt.c */, + ECF4BCEB11434C1100B7C09B /* tnet_dns_opt.h */, + ECF4BCEC11434C1100B7C09B /* tnet_dns_ptr.c */, + ECF4BCED11434C1100B7C09B /* tnet_dns_ptr.h */, + ECF4BCEE11434C1100B7C09B /* tnet_dns_rr.c */, + ECF4BCEF11434C1100B7C09B /* tnet_dns_rr.h */, + ECF4BCF011434C1100B7C09B /* tnet_dns_soa.c */, + ECF4BCF111434C1100B7C09B /* tnet_dns_soa.h */, + ECF4BCF211434C1100B7C09B /* tnet_dns_srv.c */, + ECF4BCF311434C1100B7C09B /* tnet_dns_srv.h */, + ECF4BCF411434C1100B7C09B /* tnet_dns_txt.c */, + ECF4BCF511434C1100B7C09B /* tnet_dns_txt.h */, + ); + path = dns; + sourceTree = ""; + }; + ECF4BCF611434C1100B7C09B /* ice */ = { + isa = PBXGroup; + children = ( + ECF4BCF711434C1100B7C09B /* tnet_ice.c */, + ECF4BCF811434C1100B7C09B /* tnet_ice.h */, + ); + path = ice; + sourceTree = ""; + }; + ECF4BCFA11434C1100B7C09B /* parsers */ = { isa = PBXGroup; children = ( ); - name = test; + path = parsers; + sourceTree = ""; + }; + ECF4BCFB11434C1100B7C09B /* stun */ = { + isa = PBXGroup; + children = ( + ECF4BCFC11434C1100B7C09B /* tnet_stun.c */, + ECF4BCFD11434C1100B7C09B /* tnet_stun.h */, + ECF4BCFE11434C1100B7C09B /* tnet_stun_attribute.c */, + ECF4BCFF11434C1100B7C09B /* tnet_stun_attribute.h */, + ECF4BD0011434C1100B7C09B /* tnet_stun_message.c */, + ECF4BD0111434C1100B7C09B /* tnet_stun_message.h */, + ); + path = stun; + sourceTree = ""; + }; + ECF4BD0311434C1100B7C09B /* tls */ = { + isa = PBXGroup; + children = ( + ECF4BD0411434C1100B7C09B /* tnet_tls.c */, + ECF4BD0511434C1100B7C09B /* tnet_tls.h */, + ); + path = tls; + sourceTree = ""; + }; + ECF4BD1911434C1100B7C09B /* turn */ = { + isa = PBXGroup; + children = ( + ECF4BD1A11434C1100B7C09B /* tnet_turn.c */, + ECF4BD1B11434C1100B7C09B /* tnet_turn.h */, + ECF4BD1C11434C1100B7C09B /* tnet_turn_attribute.c */, + ECF4BD1D11434C1100B7C09B /* tnet_turn_attribute.h */, + ECF4BD1E11434C1100B7C09B /* tnet_turn_message.c */, + ECF4BD1F11434C1100B7C09B /* tnet_turn_message.h */, + ); + path = turn; sourceTree = ""; }; /* End PBXGroup section */ @@ -409,10 +817,8 @@ ECED620010F98926006B4DC9 /* tsk_condwait.h in Headers */, ECED620210F98926006B4DC9 /* tsk_debug.h in Headers */, ECED620310F98926006B4DC9 /* tsk_errno.h in Headers */, - ECED620510F98926006B4DC9 /* tsk_heap.h in Headers */, ECED620710F98926006B4DC9 /* tsk_hmac.h in Headers */, ECED620910F98926006B4DC9 /* tsk_list.h in Headers */, - ECED620A10F98926006B4DC9 /* tsk_macros.h in Headers */, ECED620C10F98926006B4DC9 /* tsk_md5.h in Headers */, ECED620E10F98926006B4DC9 /* tsk_memory.h in Headers */, ECED621010F98926006B4DC9 /* tsk_mutex.h in Headers */, @@ -429,6 +835,58 @@ ECED622610F98926006B4DC9 /* tsk_timer.h in Headers */, ECED622810F98926006B4DC9 /* tsk_url.h in Headers */, ECED622A10F98926006B4DC9 /* tsk_xml.h in Headers */, + ECF4BD9E11434CA000B7C09B /* tsk_fsm.h in Headers */, + ECF4BDA011434CA000B7C09B /* tsk_ppfcs32.h in Headers */, + ECF4BDA211434CA000B7C09B /* tsk_ragel_state.h in Headers */, + ECF4BDA411434CA000B7C09B /* tsk_uuid.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + ECF4BCB011434BA800B7C09B /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ECF4BD3411434C1100B7C09B /* tnet_dhcp.h in Headers */, + ECF4BD3611434C1100B7C09B /* tnet_dhcp_message.h in Headers */, + ECF4BD3811434C1100B7C09B /* tnet_dhcp_option.h in Headers */, + ECF4BD3A11434C1100B7C09B /* tnet_dhcp_option_sip.h in Headers */, + ECF4BD3C11434C1100B7C09B /* tnet_dhcp6.h in Headers */, + ECF4BD3E11434C1100B7C09B /* tnet_dhcp6_duid.h in Headers */, + ECF4BD4011434C1100B7C09B /* tnet_dhcp6_message.h in Headers */, + ECF4BD4211434C1100B7C09B /* tnet_dhcp6_option.h in Headers */, + ECF4BD4411434C1100B7C09B /* tnet_dns.h in Headers */, + ECF4BD4611434C1100B7C09B /* tnet_dns_a.h in Headers */, + ECF4BD4811434C1100B7C09B /* tnet_dns_aaaa.h in Headers */, + ECF4BD4A11434C1100B7C09B /* tnet_dns_cname.h in Headers */, + ECF4BD4C11434C1100B7C09B /* tnet_dns_message.h in Headers */, + ECF4BD4E11434C1100B7C09B /* tnet_dns_mx.h in Headers */, + ECF4BD5011434C1100B7C09B /* tnet_dns_naptr.h in Headers */, + ECF4BD5211434C1100B7C09B /* tnet_dns_ns.h in Headers */, + ECF4BD5411434C1100B7C09B /* tnet_dns_opt.h in Headers */, + ECF4BD5611434C1100B7C09B /* tnet_dns_ptr.h in Headers */, + ECF4BD5811434C1100B7C09B /* tnet_dns_rr.h in Headers */, + ECF4BD5A11434C1100B7C09B /* tnet_dns_soa.h in Headers */, + ECF4BD5C11434C1100B7C09B /* tnet_dns_srv.h in Headers */, + ECF4BD5E11434C1100B7C09B /* tnet_dns_txt.h in Headers */, + ECF4BD6011434C1100B7C09B /* tnet_ice.h in Headers */, + ECF4BD6311434C1100B7C09B /* tnet_stun.h in Headers */, + ECF4BD6511434C1100B7C09B /* tnet_stun_attribute.h in Headers */, + ECF4BD6711434C1100B7C09B /* tnet_stun_message.h in Headers */, + ECF4BD6811434C1100B7C09B /* tinyNET_config.h in Headers */, + ECF4BD6A11434C1100B7C09B /* tnet_tls.h in Headers */, + ECF4BD6C11434C1100B7C09B /* tnet.h in Headers */, + ECF4BD6E11434C1100B7C09B /* tnet_auth.h in Headers */, + ECF4BD6F11434C1100B7C09B /* tnet_hardwares.h in Headers */, + ECF4BD7111434C1100B7C09B /* tnet_nat.h in Headers */, + ECF4BD7311434C1100B7C09B /* tnet_poll.h in Headers */, + ECF4BD7411434C1100B7C09B /* tnet_proto.h in Headers */, + ECF4BD7611434C1100B7C09B /* tnet_socket.h in Headers */, + ECF4BD7811434C1100B7C09B /* tnet_transport.h in Headers */, + ECF4BD7B11434C1100B7C09B /* tnet_types.h in Headers */, + ECF4BD7D11434C1100B7C09B /* tnet_utils.h in Headers */, + ECF4BD7F11434C1100B7C09B /* tnet_turn.h in Headers */, + ECF4BD8111434C1100B7C09B /* tnet_turn_attribute.h in Headers */, + ECF4BD8311434C1100B7C09B /* tnet_turn_message.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -447,6 +905,7 @@ ); dependencies = ( ECED622E10F9899F006B4DC9 /* PBXTargetDependency */, + ECF4BDA911434CC200B7C09B /* PBXTargetDependency */, ); name = tinyHTTP; productName = tinyHTTP; @@ -488,6 +947,24 @@ productReference = ECED623D10F98B46006B4DC9 /* test */; productType = "com.apple.product-type.tool"; }; + ECF4BCB311434BA800B7C09B /* tinyNET */ = { + isa = PBXNativeTarget; + buildConfigurationList = ECF4BCB711434BC700B7C09B /* Build configuration list for PBXNativeTarget "tinyNET" */; + buildPhases = ( + ECF4BCB011434BA800B7C09B /* Headers */, + ECF4BCB111434BA800B7C09B /* Sources */, + ECF4BCB211434BA800B7C09B /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ECF4BCB911434BF400B7C09B /* PBXTargetDependency */, + ); + name = tinyNET; + productName = tinyNET; + productReference = ECF4BCB411434BA800B7C09B /* libtinyNET.dylib */; + productType = "com.apple.product-type.library.dynamic"; + }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ @@ -503,6 +980,7 @@ D2AAC0620554660B00DB518D /* tinyHTTP */, ECED61BB10F988E7006B4DC9 /* tinySAK */, ECED623C10F98B46006B4DC9 /* test */, + ECF4BCB311434BA800B7C09B /* tinyNET */, ); }; /* End PBXProject section */ @@ -512,10 +990,23 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ECED61B210F98893006B4DC9 /* thttp.c in Sources */, - ECED61B310F98893006B4DC9 /* thttp_message.c in Sources */, - ECED61B410F98893006B4DC9 /* thttp_utl.c in Sources */, - ECED61B610F988B3006B4DC9 /* thttp_auth.c in Sources */, + ECF4BC8C11434AEB00B7C09B /* thttp_auth.c in Sources */, + ECF4BC8D11434AEB00B7C09B /* thttp_header.c in Sources */, + ECF4BC8E11434AEB00B7C09B /* thttp_header_Authorization.c in Sources */, + ECF4BC8F11434AEB00B7C09B /* thttp_header_Content_Length.c in Sources */, + ECF4BC9011434AEB00B7C09B /* thttp_header_Content_Type.c in Sources */, + ECF4BC9111434AEB00B7C09B /* thttp_header_Dummy.c in Sources */, + ECF4BC9211434AEB00B7C09B /* thttp_header_Proxy_Authenticate.c in Sources */, + ECF4BC9311434AEB00B7C09B /* thttp_header_WWW_Authenticate.c in Sources */, + ECF4BC9511434AEB00B7C09B /* thttp_parser_header.c in Sources */, + ECF4BC9611434AEB00B7C09B /* thttp_parser_message.c in Sources */, + ECF4BC9711434AEB00B7C09B /* thttp_parser_url.c in Sources */, + ECF4BC9811434AEB00B7C09B /* thttp.c in Sources */, + ECF4BC9911434AEB00B7C09B /* thttp_event.c in Sources */, + ECF4BC9A11434AEB00B7C09B /* thttp_message.c in Sources */, + ECF4BC9B11434AEB00B7C09B /* thttp_operation.c in Sources */, + ECF4BC9C11434AEB00B7C09B /* thttp_transport.c in Sources */, + ECF4BC9D11434AEB00B7C09B /* thttp_url.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -529,7 +1020,6 @@ ECED61FD10F98926006B4DC9 /* tsk_buffer.c in Sources */, ECED61FF10F98926006B4DC9 /* tsk_condwait.c in Sources */, ECED620110F98926006B4DC9 /* tsk_debug.c in Sources */, - ECED620410F98926006B4DC9 /* tsk_heap.c in Sources */, ECED620610F98926006B4DC9 /* tsk_hmac.c in Sources */, ECED620810F98926006B4DC9 /* tsk_list.c in Sources */, ECED620B10F98926006B4DC9 /* tsk_md5.c in Sources */, @@ -548,6 +1038,10 @@ ECED622510F98926006B4DC9 /* tsk_timer.c in Sources */, ECED622710F98926006B4DC9 /* tsk_url.c in Sources */, ECED622910F98926006B4DC9 /* tsk_xml.c in Sources */, + ECF4BD9D11434CA000B7C09B /* tsk_fsm.c in Sources */, + ECF4BD9F11434CA000B7C09B /* tsk_ppfcs32.c in Sources */, + ECF4BDA111434CA000B7C09B /* tsk_ragel_state.c in Sources */, + ECF4BDA311434CA000B7C09B /* tsk_uuid.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -555,8 +1049,54 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ECED624810F98B6A006B4DC9 /* stdafx.c in Sources */, - ECED624910F98B6A006B4DC9 /* test.c in Sources */, + ECF4BCAA11434B0E00B7C09B /* stdafx.c in Sources */, + ECF4BCAB11434B0E00B7C09B /* test.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + ECF4BCB111434BA800B7C09B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ECF4BD3311434C1100B7C09B /* tnet_dhcp.c in Sources */, + ECF4BD3511434C1100B7C09B /* tnet_dhcp_message.c in Sources */, + ECF4BD3711434C1100B7C09B /* tnet_dhcp_option.c in Sources */, + ECF4BD3911434C1100B7C09B /* tnet_dhcp_option_sip.c in Sources */, + ECF4BD3B11434C1100B7C09B /* tnet_dhcp6.c in Sources */, + ECF4BD3D11434C1100B7C09B /* tnet_dhcp6_duid.c in Sources */, + ECF4BD3F11434C1100B7C09B /* tnet_dhcp6_message.c in Sources */, + ECF4BD4111434C1100B7C09B /* tnet_dhcp6_option.c in Sources */, + ECF4BD4311434C1100B7C09B /* tnet_dns.c in Sources */, + ECF4BD4511434C1100B7C09B /* tnet_dns_a.c in Sources */, + ECF4BD4711434C1100B7C09B /* tnet_dns_aaaa.c in Sources */, + ECF4BD4911434C1100B7C09B /* tnet_dns_cname.c in Sources */, + ECF4BD4B11434C1100B7C09B /* tnet_dns_message.c in Sources */, + ECF4BD4D11434C1100B7C09B /* tnet_dns_mx.c in Sources */, + ECF4BD4F11434C1100B7C09B /* tnet_dns_naptr.c in Sources */, + ECF4BD5111434C1100B7C09B /* tnet_dns_ns.c in Sources */, + ECF4BD5311434C1100B7C09B /* tnet_dns_opt.c in Sources */, + ECF4BD5511434C1100B7C09B /* tnet_dns_ptr.c in Sources */, + ECF4BD5711434C1100B7C09B /* tnet_dns_rr.c in Sources */, + ECF4BD5911434C1100B7C09B /* tnet_dns_soa.c in Sources */, + ECF4BD5B11434C1100B7C09B /* tnet_dns_srv.c in Sources */, + ECF4BD5D11434C1100B7C09B /* tnet_dns_txt.c in Sources */, + ECF4BD5F11434C1100B7C09B /* tnet_ice.c in Sources */, + ECF4BD6211434C1100B7C09B /* tnet_stun.c in Sources */, + ECF4BD6411434C1100B7C09B /* tnet_stun_attribute.c in Sources */, + ECF4BD6611434C1100B7C09B /* tnet_stun_message.c in Sources */, + ECF4BD6911434C1100B7C09B /* tnet_tls.c in Sources */, + ECF4BD6B11434C1100B7C09B /* tnet.c in Sources */, + ECF4BD6D11434C1100B7C09B /* tnet_auth.c in Sources */, + ECF4BD7011434C1100B7C09B /* tnet_nat.c in Sources */, + ECF4BD7211434C1100B7C09B /* tnet_poll.c in Sources */, + ECF4BD7511434C1100B7C09B /* tnet_socket.c in Sources */, + ECF4BD7711434C1100B7C09B /* tnet_transport.c in Sources */, + ECF4BD7911434C1100B7C09B /* tnet_transport_poll.c in Sources */, + ECF4BD7A11434C1100B7C09B /* tnet_transport_win32.c in Sources */, + ECF4BD7C11434C1100B7C09B /* tnet_utils.c in Sources */, + ECF4BD7E11434C1100B7C09B /* tnet_turn.c in Sources */, + ECF4BD8011434C1100B7C09B /* tnet_turn_attribute.c in Sources */, + ECF4BD8211434C1100B7C09B /* tnet_turn_message.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -578,6 +1118,16 @@ target = ECED61BB10F988E7006B4DC9 /* tinySAK */; targetProxy = ECED624D10F98B85006B4DC9 /* PBXContainerItemProxy */; }; + ECF4BCB911434BF400B7C09B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = ECED61BB10F988E7006B4DC9 /* tinySAK */; + targetProxy = ECF4BCB811434BF400B7C09B /* PBXContainerItemProxy */; + }; + ECF4BDA911434CC200B7C09B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = ECF4BCB311434BA800B7C09B /* tinyNET */; + targetProxy = ECF4BDA811434CC200B7C09B /* PBXContainerItemProxy */; + }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ @@ -591,7 +1141,10 @@ GCC_ENABLE_FIX_AND_CONTINUE = YES; GCC_MODEL_TUNING = G5; GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ../../../doubango/tinyHTTP/include; + HEADER_SEARCH_PATHS = ( + ../../../doubango/tinyHTTP/include, + ../../../doubango/tinySAK/src, + ); INSTALL_PATH = /usr/local/lib; LIBRARY_SEARCH_PATHS = ""; PRODUCT_NAME = tinyHTTP; @@ -699,6 +1252,42 @@ }; name = Release; }; + ECF4BCB511434BA800B7C09B /* 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, + ../../../doubango/tinyNET/src, + ); + INSTALL_PATH = /usr/local/lib; + PREBINDING = NO; + PRODUCT_NAME = tinyNET; + }; + name = Debug; + }; + ECF4BCB611434BA800B7C09B /* 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 = tinyNET; + ZERO_LINK = NO; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -738,6 +1327,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + ECF4BCB711434BC700B7C09B /* Build configuration list for PBXNativeTarget "tinyNET" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + ECF4BCB511434BA800B7C09B /* Debug */, + ECF4BCB611434BA800B7C09B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ }; rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; diff --git a/trunk/xcode/tinyNET/tinyNET.xcodeproj/diopmamadou.pbxuser b/trunk/xcode/tinyNET/tinyNET.xcodeproj/diopmamadou.pbxuser index 08af942b..5b55413c 100644 --- a/trunk/xcode/tinyNET/tinyNET.xcodeproj/diopmamadou.pbxuser +++ b/trunk/xcode/tinyNET/tinyNET.xcodeproj/diopmamadou.pbxuser @@ -9,27 +9,25 @@ ); breakpoints = ( EC057C9410EF7A2D00280149 /* tnet_utils.c:331 */, - EC057C9710EF7A7200280149 /* test_transport.h:71 */, - EC057CFB10EF7EB200280149 /* tnet_transport.c:187 */, + EC057CFB10EF7EB200280149 /* tnet_transport.c:183 */, EC057D0710EF80E300280149 /* test_transport.h:40 */, - EC057D0910EF80E500280149 /* test_transport.h:46 */, ECED607810F96FDD006B4DC9 /* tnet_socket.c:86 */, - ECED608F10F97808006B4DC9 /* tnet_transport_poll.c:363 */, - ECED609710F978D7006B4DC9 /* tnet_transport_poll.c:307 */, - ECED60B510F979E1006B4DC9 /* tnet_transport_poll.c:300 */, - ECED60B910F979F9006B4DC9 /* test_transport.h:179 */, - ECED60C310F97A49006B4DC9 /* tnet_transport_poll.c:369 */, - ECED60C510F97A5E006B4DC9 /* tnet_transport_poll.c:450 */, - ECED60C710F97A69006B4DC9 /* tnet_transport_poll.c:366 */, - ECED60D810F97CF8006B4DC9 /* tnet_transport_poll.c:393 */, - ECED60F310F97E82006B4DC9 /* tnet_transport_poll.c:370 */, - ECE8D52D10FBD9DE00B2464F /* test_transport.h:139 */, + ECED608F10F97808006B4DC9 /* tnet_transport_poll.c:336 */, + ECED609710F978D7006B4DC9 /* tnet_transport_poll.c:281 */, + ECED60B510F979E1006B4DC9 /* tnet_transport_poll.c:274 */, + ECED60C310F97A49006B4DC9 /* tnet_transport_poll.c:341 */, + ECED60C710F97A69006B4DC9 /* tnet_transport_poll.c:339 */, + ECED60F310F97E82006B4DC9 /* tnet_transport_poll.c:342 */, EC9A8E761124C78C0046F5EC /* test_ifaces.h:70 */, EC9A8EA81124C99E0046F5EC /* tnet_dns.c:184 */, EC9A8EAC1124C9B10046F5EC /* tnet_dns.c:162 */, EC9A8EC01124CA580046F5EC /* tnet_dns.c:138 */, EC9A8ED31124CAF70046F5EC /* tnet_dhcp.c:68 */, EC9A8EDF1124CBE00046F5EC /* tnet_socket.c:189 */, + ECF4BC2C1143490800B7C09B /* asm write$UNIX2003 0x959b1c74:8 */, + ECF4BC2E1143490F00B7C09B /* test_transport.h:114 */, + ECF4BC3F1143497C00B7C09B /* test.c:82 */, + ECF4BC6511434A8700B7C09B /* tnet_transport_poll.c:414 */, ); codeSenseManager = ECE5B90510EF65C200B7EDDD /* Code sense */; executables = ( @@ -41,7 +39,7 @@ PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Target_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 935, + 1474, 20, 48, 43, @@ -103,7 +101,7 @@ PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 895, + 1434, 60, 20, 48, @@ -120,182 +118,53 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 287618766; - PBXWorkspaceStateSaveDate = 287618766; + PBXPerProjectTemplateStateSaveDate = 289611810; + PBXWorkspaceStateSaveDate = 289611810; }; perUserProjectItems = { - EC9A8DEC1124B9360046F5EC /* PBXTextBookmark */ = EC9A8DEC1124B9360046F5EC /* PBXTextBookmark */; - EC9A8DEF1124B9360046F5EC /* PBXTextBookmark */ = EC9A8DEF1124B9360046F5EC /* PBXTextBookmark */; - EC9A8DF21124B9360046F5EC /* PBXTextBookmark */ = EC9A8DF21124B9360046F5EC /* PBXTextBookmark */; - EC9A8DF31124B9360046F5EC /* PBXTextBookmark */ = EC9A8DF31124B9360046F5EC /* PBXTextBookmark */; - EC9A8DF41124B9360046F5EC /* PBXTextBookmark */ = EC9A8DF41124B9360046F5EC /* PBXTextBookmark */; - EC9A8DF51124B9360046F5EC /* PBXTextBookmark */ = EC9A8DF51124B9360046F5EC /* PBXTextBookmark */; - EC9A8DF61124B9360046F5EC /* PBXTextBookmark */ = EC9A8DF61124B9360046F5EC /* PBXTextBookmark */; - EC9A8DF71124B9360046F5EC /* PBXTextBookmark */ = EC9A8DF71124B9360046F5EC /* PBXTextBookmark */; - EC9A8DF81124B9360046F5EC /* PBXTextBookmark */ = EC9A8DF81124B9360046F5EC /* PBXTextBookmark */; - EC9A8DF91124B9360046F5EC /* PBXTextBookmark */ = EC9A8DF91124B9360046F5EC /* PBXTextBookmark */; - EC9A8DFA1124B9360046F5EC /* PBXTextBookmark */ = EC9A8DFA1124B9360046F5EC /* PBXTextBookmark */; - EC9A8DFB1124B9360046F5EC /* PBXTextBookmark */ = EC9A8DFB1124B9360046F5EC /* PBXTextBookmark */; - EC9A8DFC1124B9360046F5EC /* PBXTextBookmark */ = EC9A8DFC1124B9360046F5EC /* PBXTextBookmark */; - EC9A8DFD1124B9360046F5EC /* PBXTextBookmark */ = EC9A8DFD1124B9360046F5EC /* PBXTextBookmark */; - EC9A8DFE1124B9360046F5EC /* PBXTextBookmark */ = EC9A8DFE1124B9360046F5EC /* PBXTextBookmark */; - EC9A8DFF1124B9360046F5EC /* PBXTextBookmark */ = EC9A8DFF1124B9360046F5EC /* PBXTextBookmark */; - EC9A8E001124B9360046F5EC /* PBXTextBookmark */ = EC9A8E001124B9360046F5EC /* PBXTextBookmark */; - EC9A8E0C1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E0C1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E0E1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E0E1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E0F1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E0F1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E101124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E101124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E121124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E121124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E131124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E131124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E151124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E151124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E191124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E191124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E1B1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E1B1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E1C1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E1C1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E1D1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E1D1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E1E1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E1E1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E1F1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E1F1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E201124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E201124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E211124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E211124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E221124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E221124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E231124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E231124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E241124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E241124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E251124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E251124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E261124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E261124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E271124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E271124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E281124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E281124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E2A1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E2A1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E2B1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E2B1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E2C1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E2C1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E2D1124BB6C0046F5EC /* PBXTextBookmark */ = EC9A8E2D1124BB6C0046F5EC /* PBXTextBookmark */; - EC9A8E311124BE6A0046F5EC /* PBXTextBookmark */ = EC9A8E311124BE6A0046F5EC /* PBXTextBookmark */; - EC9A8E331124BE6A0046F5EC /* PBXTextBookmark */ = EC9A8E331124BE6A0046F5EC /* PBXTextBookmark */; - EC9A8E341124BE6A0046F5EC /* PBXTextBookmark */ = EC9A8E341124BE6A0046F5EC /* PBXTextBookmark */; - EC9A8E351124BE6A0046F5EC /* PBXTextBookmark */ = EC9A8E351124BE6A0046F5EC /* PBXTextBookmark */; - EC9A8E361124BE6A0046F5EC /* PBXTextBookmark */ = EC9A8E361124BE6A0046F5EC /* PBXTextBookmark */; - EC9A8E371124BE6A0046F5EC /* PBXTextBookmark */ = EC9A8E371124BE6A0046F5EC /* PBXTextBookmark */; - EC9A8E381124BE6A0046F5EC /* PBXTextBookmark */ = EC9A8E381124BE6A0046F5EC /* PBXTextBookmark */; - EC9A8E451124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E451124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E461124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E461124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E471124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E471124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E491124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E491124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E4A1124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E4A1124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E4C1124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E4C1124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E4D1124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E4D1124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E4F1124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E4F1124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E501124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E501124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E521124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E521124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E531124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E531124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E541124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E541124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E551124C04A0046F5EC /* PBXTextBookmark */ = EC9A8E551124C04A0046F5EC /* PBXTextBookmark */; - EC9A8E5A1124C3670046F5EC /* PBXTextBookmark */ = EC9A8E5A1124C3670046F5EC /* PBXTextBookmark */; - EC9A8E5C1124C3670046F5EC /* PBXTextBookmark */ = EC9A8E5C1124C3670046F5EC /* PBXTextBookmark */; - EC9A8E5D1124C3670046F5EC /* PBXTextBookmark */ = EC9A8E5D1124C3670046F5EC /* PBXTextBookmark */; - EC9A8E601124C3AC0046F5EC /* PBXTextBookmark */ = EC9A8E601124C3AC0046F5EC /* PBXTextBookmark */; - EC9A8E621124C3AC0046F5EC /* PBXTextBookmark */ = EC9A8E621124C3AC0046F5EC /* PBXTextBookmark */; - EC9A8E641124C5CF0046F5EC /* PBXTextBookmark */ = EC9A8E641124C5CF0046F5EC /* PBXTextBookmark */; - EC9A8E671124C5CF0046F5EC /* PBXTextBookmark */ = EC9A8E671124C5CF0046F5EC /* PBXTextBookmark */; - EC9A8E681124C5CF0046F5EC /* PBXTextBookmark */ = EC9A8E681124C5CF0046F5EC /* PBXTextBookmark */; - EC9A8E691124C5CF0046F5EC /* PBXTextBookmark */ = EC9A8E691124C5CF0046F5EC /* PBXTextBookmark */; - EC9A8E6D1124C62F0046F5EC /* PBXTextBookmark */ = EC9A8E6D1124C62F0046F5EC /* PBXTextBookmark */; - EC9A8E7F1124C8880046F5EC /* PBXTextBookmark */ = EC9A8E7F1124C8880046F5EC /* PBXTextBookmark */; - EC9A8E801124C8880046F5EC /* PBXTextBookmark */ = EC9A8E801124C8880046F5EC /* PBXTextBookmark */; - EC9A8E821124C8880046F5EC /* PBXTextBookmark */ = EC9A8E821124C8880046F5EC /* PBXTextBookmark */; - EC9A8E851124C8880046F5EC /* PBXTextBookmark */ = EC9A8E851124C8880046F5EC /* PBXTextBookmark */; - EC9A8E861124C8880046F5EC /* PBXTextBookmark */ = EC9A8E861124C8880046F5EC /* PBXTextBookmark */; - EC9A8E871124C8880046F5EC /* PBXTextBookmark */ = EC9A8E871124C8880046F5EC /* PBXTextBookmark */; - EC9A8E881124C8880046F5EC /* PBXTextBookmark */ = EC9A8E881124C8880046F5EC /* PBXTextBookmark */; - EC9A8E891124C8880046F5EC /* PBXTextBookmark */ = EC9A8E891124C8880046F5EC /* PBXTextBookmark */; - EC9A8E8A1124C8880046F5EC /* PBXTextBookmark */ = EC9A8E8A1124C8880046F5EC /* PBXTextBookmark */; - EC9A8E8B1124C8880046F5EC /* PBXTextBookmark */ = EC9A8E8B1124C8880046F5EC /* PBXTextBookmark */; - EC9A8E8C1124C8880046F5EC /* PBXTextBookmark */ = EC9A8E8C1124C8880046F5EC /* PBXTextBookmark */; - EC9A8E8D1124C8880046F5EC /* PBXTextBookmark */ = EC9A8E8D1124C8880046F5EC /* PBXTextBookmark */; - EC9A8E8E1124C8880046F5EC /* PBXTextBookmark */ = EC9A8E8E1124C8880046F5EC /* PBXTextBookmark */; - EC9A8E8F1124C8880046F5EC /* PBXTextBookmark */ = EC9A8E8F1124C8880046F5EC /* PBXTextBookmark */; - EC9A8E901124C8880046F5EC /* PBXTextBookmark */ = EC9A8E901124C8880046F5EC /* PBXTextBookmark */; - EC9A8E911124C8880046F5EC /* PBXTextBookmark */ = EC9A8E911124C8880046F5EC /* PBXTextBookmark */; - EC9A8E9A1124C8EE0046F5EC /* PBXTextBookmark */ = EC9A8E9A1124C8EE0046F5EC /* PBXTextBookmark */; - EC9A8E9B1124C8EE0046F5EC /* PBXTextBookmark */ = EC9A8E9B1124C8EE0046F5EC /* PBXTextBookmark */; - EC9A8EB11124CA190046F5EC /* PBXTextBookmark */ = EC9A8EB11124CA190046F5EC /* PBXTextBookmark */; - EC9A8EB21124CA190046F5EC /* PBXTextBookmark */ = EC9A8EB21124CA190046F5EC /* PBXTextBookmark */; - EC9A8EB51124CA190046F5EC /* PBXTextBookmark */ = EC9A8EB51124CA190046F5EC /* PBXTextBookmark */; - EC9A8EB61124CA190046F5EC /* PBXTextBookmark */ = EC9A8EB61124CA190046F5EC /* PBXTextBookmark */; - EC9A8EB71124CA190046F5EC /* PBXTextBookmark */ = EC9A8EB71124CA190046F5EC /* PBXTextBookmark */; - EC9A8EB81124CA190046F5EC /* PBXTextBookmark */ = EC9A8EB81124CA190046F5EC /* PBXTextBookmark */; - EC9A8EB91124CA190046F5EC /* PBXTextBookmark */ = EC9A8EB91124CA190046F5EC /* PBXTextBookmark */; - EC9A8EBA1124CA190046F5EC /* PBXTextBookmark */ = EC9A8EBA1124CA190046F5EC /* PBXTextBookmark */; - EC9A8EBB1124CA190046F5EC /* PBXTextBookmark */ = EC9A8EBB1124CA190046F5EC /* PBXTextBookmark */; - EC9A8EBC1124CA190046F5EC /* PBXTextBookmark */ = EC9A8EBC1124CA190046F5EC /* PBXTextBookmark */; - EC9A8EC51124CA9A0046F5EC /* PBXTextBookmark */ = EC9A8EC51124CA9A0046F5EC /* PBXTextBookmark */; - EC9A8EC71124CA9A0046F5EC /* PBXTextBookmark */ = EC9A8EC71124CA9A0046F5EC /* PBXTextBookmark */; - EC9A8EC81124CA9A0046F5EC /* PBXTextBookmark */ = EC9A8EC81124CA9A0046F5EC /* PBXTextBookmark */; - EC9A8EC91124CA9A0046F5EC /* PBXTextBookmark */ = EC9A8EC91124CA9A0046F5EC /* PBXTextBookmark */; - EC9A8ECA1124CA9A0046F5EC /* PBXTextBookmark */ = EC9A8ECA1124CA9A0046F5EC /* PBXTextBookmark */; - EC9A8ECB1124CA9A0046F5EC /* PBXTextBookmark */ = EC9A8ECB1124CA9A0046F5EC /* PBXTextBookmark */; - EC9A8ED61124CB1F0046F5EC /* PBXTextBookmark */ = EC9A8ED61124CB1F0046F5EC /* PBXTextBookmark */; - EC9A8EE01124CBF10046F5EC /* PBXTextBookmark */ = EC9A8EE01124CBF10046F5EC /* PBXTextBookmark */; - EC9A8EE31124CBF10046F5EC /* PBXTextBookmark */ = EC9A8EE31124CBF10046F5EC /* PBXTextBookmark */; - EC9A8EE41124CBF10046F5EC /* PBXTextBookmark */ = EC9A8EE41124CBF10046F5EC /* PBXTextBookmark */; - EC9A8EE51124CBF10046F5EC /* PBXTextBookmark */ = EC9A8EE51124CBF10046F5EC /* PBXTextBookmark */; - EC9A8EE61124CBF10046F5EC /* PBXTextBookmark */ = EC9A8EE61124CBF10046F5EC /* PBXTextBookmark */; - EC9A8EE71124CBF10046F5EC /* PBXTextBookmark */ = EC9A8EE71124CBF10046F5EC /* PBXTextBookmark */; - EC9A8EFD1124CE400046F5EC /* PBXTextBookmark */ = EC9A8EFD1124CE400046F5EC /* PBXTextBookmark */; - EC9A8EFE1124CE400046F5EC /* PBXTextBookmark */ = EC9A8EFE1124CE400046F5EC /* PBXTextBookmark */; - EC9A8F021124CE400046F5EC /* PBXTextBookmark */ = EC9A8F021124CE400046F5EC /* PBXTextBookmark */; - EC9A8F031124CE400046F5EC /* PBXTextBookmark */ = EC9A8F031124CE400046F5EC /* PBXTextBookmark */; - EC9A8F041124CE400046F5EC /* PBXTextBookmark */ = EC9A8F041124CE400046F5EC /* PBXTextBookmark */; - EC9A8F051124CE400046F5EC /* PBXTextBookmark */ = EC9A8F051124CE400046F5EC /* PBXTextBookmark */; - EC9A8F061124CE400046F5EC /* PBXTextBookmark */ = EC9A8F061124CE400046F5EC /* PBXTextBookmark */; - EC9A8F071124CE400046F5EC /* PBXTextBookmark */ = EC9A8F071124CE400046F5EC /* PBXTextBookmark */; - EC9A8F081124CE400046F5EC /* PBXTextBookmark */ = EC9A8F081124CE400046F5EC /* PBXTextBookmark */; - EC9A8F091124CE400046F5EC /* PBXTextBookmark */ = EC9A8F091124CE400046F5EC /* PBXTextBookmark */; - EC9A8F0A1124CE400046F5EC /* PBXTextBookmark */ = EC9A8F0A1124CE400046F5EC /* PBXTextBookmark */; - EC9A8F0B1124CE400046F5EC /* PBXTextBookmark */ = EC9A8F0B1124CE400046F5EC /* PBXTextBookmark */; - EC9A8F0C1124CE400046F5EC /* PBXTextBookmark */ = EC9A8F0C1124CE400046F5EC /* PBXTextBookmark */; - EC9A8F0D1124CE400046F5EC /* PBXTextBookmark */ = EC9A8F0D1124CE400046F5EC /* PBXTextBookmark */; - EC9A8F121124CE950046F5EC /* PBXTextBookmark */ = EC9A8F121124CE950046F5EC /* PBXTextBookmark */; - EC9A8F171124D2690046F5EC /* PBXTextBookmark */ = EC9A8F171124D2690046F5EC /* PBXTextBookmark */; - EC9A8F181124D2690046F5EC /* PBXTextBookmark */ = EC9A8F181124D2690046F5EC /* PBXTextBookmark */; - EC9A8F191124D2690046F5EC /* PBXTextBookmark */ = EC9A8F191124D2690046F5EC /* PBXTextBookmark */; - EC9A8F1B1124D2690046F5EC /* PBXTextBookmark */ = EC9A8F1B1124D2690046F5EC /* PBXTextBookmark */; - EC9A8F1D1124D2690046F5EC /* PBXTextBookmark */ = EC9A8F1D1124D2690046F5EC /* PBXTextBookmark */; - EC9A8F1E1124D2690046F5EC /* PBXTextBookmark */ = EC9A8F1E1124D2690046F5EC /* PBXTextBookmark */; - EC9A8F1F1124D2690046F5EC /* PBXTextBookmark */ = EC9A8F1F1124D2690046F5EC /* PBXTextBookmark */; - EC9A8F211124D2690046F5EC /* PBXTextBookmark */ = EC9A8F211124D2690046F5EC /* PBXTextBookmark */; - EC9A8F221124D2690046F5EC /* PBXTextBookmark */ = EC9A8F221124D2690046F5EC /* PBXTextBookmark */; - EC9A8F231124D2690046F5EC /* PBXTextBookmark */ = EC9A8F231124D2690046F5EC /* PBXTextBookmark */; - EC9A8F241124D2690046F5EC /* PBXTextBookmark */ = EC9A8F241124D2690046F5EC /* PBXTextBookmark */; - EC9A8F261124D2690046F5EC /* PBXTextBookmark */ = EC9A8F261124D2690046F5EC /* PBXTextBookmark */; - EC9A8F281124D4490046F5EC /* PBXTextBookmark */ = EC9A8F281124D4490046F5EC /* PBXTextBookmark */; - EC9A8F291124D4490046F5EC /* PBXTextBookmark */ = EC9A8F291124D4490046F5EC /* PBXTextBookmark */; - EC9A8F2B1124D4E90046F5EC /* PBXTextBookmark */ = EC9A8F2B1124D4E90046F5EC /* PBXTextBookmark */; - ECE8D4F910FBD85A00B2464F /* PBXTextBookmark */ = ECE8D4F910FBD85A00B2464F /* PBXTextBookmark */; - ECE8D4FD10FBD85A00B2464F /* PBXTextBookmark */ = ECE8D4FD10FBD85A00B2464F /* PBXTextBookmark */; - ECE8D50E10FBD90900B2464F /* PBXTextBookmark */ = ECE8D50E10FBD90900B2464F /* PBXTextBookmark */; - ECE8D53810FBDA7B00B2464F /* PBXTextBookmark */ = ECE8D53810FBDA7B00B2464F /* PBXTextBookmark */; - ECE8D53F10FBDA7B00B2464F /* PBXTextBookmark */ = ECE8D53F10FBDA7B00B2464F /* PBXTextBookmark */; - ECE8D54510FBE5D100B2464F /* PBXTextBookmark */ = ECE8D54510FBE5D100B2464F /* PBXTextBookmark */; - ECE8D54810FBE5D100B2464F /* PBXTextBookmark */ = ECE8D54810FBE5D100B2464F /* PBXTextBookmark */; - ECE8D55710FBE7FD00B2464F /* PBXTextBookmark */ = ECE8D55710FBE7FD00B2464F /* PBXTextBookmark */; - ECE8D55810FBE7FD00B2464F /* PBXTextBookmark */ = ECE8D55810FBE7FD00B2464F /* PBXTextBookmark */; - ECE8D55F10FBE7FD00B2464F /* PBXTextBookmark */ = ECE8D55F10FBE7FD00B2464F /* PBXTextBookmark */; - ECE8D56210FBE7FD00B2464F /* PBXTextBookmark */ = ECE8D56210FBE7FD00B2464F /* PBXTextBookmark */; - ECED600610F96CF8006B4DC9 /* PBXTextBookmark */ = ECED600610F96CF8006B4DC9 /* PBXTextBookmark */; - ECED600710F96CF8006B4DC9 /* PBXTextBookmark */ = ECED600710F96CF8006B4DC9 /* PBXTextBookmark */; - ECED600910F96CF8006B4DC9 /* PBXTextBookmark */ = ECED600910F96CF8006B4DC9 /* PBXTextBookmark */; - ECED600C10F96CF8006B4DC9 /* PBXTextBookmark */ = ECED600C10F96CF8006B4DC9 /* PBXTextBookmark */; - ECED602110F96D50006B4DC9 /* PBXTextBookmark */ = ECED602110F96D50006B4DC9 /* PBXTextBookmark */; - ECED602B10F96D99006B4DC9 /* PBXTextBookmark */ = ECED602B10F96D99006B4DC9 /* PBXTextBookmark */; - ECED602E10F96D99006B4DC9 /* PBXTextBookmark */ = ECED602E10F96D99006B4DC9 /* PBXTextBookmark */; - ECED605410F96F57006B4DC9 /* PBXTextBookmark */ = ECED605410F96F57006B4DC9 /* PBXTextBookmark */; - ECED608610F9774A006B4DC9 /* PBXTextBookmark */ = ECED608610F9774A006B4DC9 /* PBXTextBookmark */; - ECED608B10F9774A006B4DC9 /* PBXTextBookmark */ = ECED608B10F9774A006B4DC9 /* PBXTextBookmark */; - ECED608C10F9774A006B4DC9 /* PBXTextBookmark */ = ECED608C10F9774A006B4DC9 /* PBXTextBookmark */; - ECED611810F98090006B4DC9 /* PBXTextBookmark */ = ECED611810F98090006B4DC9 /* PBXTextBookmark */; - ECED612210F98090006B4DC9 /* PBXTextBookmark */ = ECED612210F98090006B4DC9 /* PBXTextBookmark */; - ECED616410F9861A006B4DC9 /* PBXTextBookmark */ = ECED616410F9861A006B4DC9 /* PBXTextBookmark */; - ECED616510F9861A006B4DC9 /* PBXTextBookmark */ = ECED616510F9861A006B4DC9 /* PBXTextBookmark */; - ECED617710F986BE006B4DC9 /* PBXTextBookmark */ = ECED617710F986BE006B4DC9 /* PBXTextBookmark */; - ECED617B10F986BE006B4DC9 /* PBXTextBookmark */ = ECED617B10F986BE006B4DC9 /* PBXTextBookmark */; + ECF4BB35114328E800B7C09B /* PBXTextBookmark */ = ECF4BB35114328E800B7C09B /* PBXTextBookmark */; + ECF4BB38114328E800B7C09B /* PBXTextBookmark */ = ECF4BB38114328E800B7C09B /* PBXTextBookmark */; + ECF4BB39114328E800B7C09B /* PBXTextBookmark */ = ECF4BB39114328E800B7C09B /* PBXTextBookmark */; + ECF4BB4E1143295D00B7C09B /* PBXTextBookmark */ = ECF4BB4E1143295D00B7C09B /* PBXTextBookmark */; + ECF4BB511143296600B7C09B /* PBXTextBookmark */ = ECF4BB511143296600B7C09B /* PBXTextBookmark */; + ECF4BB591143299000B7C09B /* PBXTextBookmark */ = ECF4BB591143299000B7C09B /* PBXTextBookmark */; + ECF4BB6611433E6F00B7C09B /* PBXTextBookmark */ = ECF4BB6611433E6F00B7C09B /* PBXTextBookmark */; + ECF4BB75114342F000B7C09B /* PBXTextBookmark */ = ECF4BB75114342F000B7C09B /* PBXTextBookmark */; + ECF4BB76114342F000B7C09B /* PBXTextBookmark */ = ECF4BB76114342F000B7C09B /* PBXTextBookmark */; + ECF4BB79114342F000B7C09B /* PBXTextBookmark */ = ECF4BB79114342F000B7C09B /* PBXTextBookmark */; + ECF4BB7A114342F000B7C09B /* PBXTextBookmark */ = ECF4BB7A114342F000B7C09B /* PBXTextBookmark */; + ECF4BB7B114342F000B7C09B /* PBXTextBookmark */ = ECF4BB7B114342F000B7C09B /* PBXTextBookmark */; + ECF4BB7C114342F000B7C09B /* PBXTextBookmark */ = ECF4BB7C114342F000B7C09B /* PBXTextBookmark */; + ECF4BB7D114342F000B7C09B /* PBXTextBookmark */ = ECF4BB7D114342F000B7C09B /* PBXTextBookmark */; + ECF4BB7E114342F000B7C09B /* PBXTextBookmark */ = ECF4BB7E114342F000B7C09B /* PBXTextBookmark */; + ECF4BB7F114342F000B7C09B /* PBXTextBookmark */ = ECF4BB7F114342F000B7C09B /* PBXTextBookmark */; + ECF4BB80114342F000B7C09B /* PBXTextBookmark */ = ECF4BB80114342F000B7C09B /* PBXTextBookmark */; + ECF4BB81114342F000B7C09B /* PBXTextBookmark */ = ECF4BB81114342F000B7C09B /* PBXTextBookmark */; + ECF4BB82114342F000B7C09B /* PBXTextBookmark */ = ECF4BB82114342F000B7C09B /* PBXTextBookmark */; + ECF4BB83114342F000B7C09B /* PBXTextBookmark */ = ECF4BB83114342F000B7C09B /* PBXTextBookmark */; + ECF4BB84114342F000B7C09B /* PBXTextBookmark */ = ECF4BB84114342F000B7C09B /* PBXTextBookmark */; + ECF4BB85114342F000B7C09B /* PBXTextBookmark */ = ECF4BB85114342F000B7C09B /* PBXTextBookmark */; + ECF4BBAA114344E500B7C09B /* PBXTextBookmark */ = ECF4BBAA114344E500B7C09B /* PBXTextBookmark */; + ECF4BBAC114344E500B7C09B /* PBXTextBookmark */ = ECF4BBAC114344E500B7C09B /* PBXTextBookmark */; + ECF4BBAD114344E500B7C09B /* PBXTextBookmark */ = ECF4BBAD114344E500B7C09B /* PBXTextBookmark */; + ECF4BBEE1143475800B7C09B /* PBXTextBookmark */ = ECF4BBEE1143475800B7C09B /* PBXTextBookmark */; + ECF4BBF11143475800B7C09B /* PBXTextBookmark */ = ECF4BBF11143475800B7C09B /* PBXTextBookmark */; + ECF4BBF21143475800B7C09B /* PBXTextBookmark */ = ECF4BBF21143475800B7C09B /* PBXTextBookmark */; + ECF4BBF31143475800B7C09B /* PBXTextBookmark */ = ECF4BBF31143475800B7C09B /* PBXTextBookmark */; + ECF4BC0F1143485A00B7C09B /* PBXTextBookmark */ = ECF4BC0F1143485A00B7C09B /* PBXTextBookmark */; + ECF4BC101143485A00B7C09B /* PBXTextBookmark */ = ECF4BC101143485A00B7C09B /* PBXTextBookmark */; + ECF4BC111143485A00B7C09B /* PBXTextBookmark */ = ECF4BC111143485A00B7C09B /* PBXTextBookmark */; + ECF4BC27114348EB00B7C09B /* PBXTextBookmark */ = ECF4BC27114348EB00B7C09B /* PBXTextBookmark */; + ECF4BC321143491700B7C09B /* PBXTextBookmark */ = ECF4BC321143491700B7C09B /* PBXTextBookmark */; + ECF4BC411143498C00B7C09B /* PBXTextBookmark */ = ECF4BC411143498C00B7C09B /* PBXTextBookmark */; + ECF4BC421143498C00B7C09B /* PBXTextBookmark */ = ECF4BC421143498C00B7C09B /* PBXTextBookmark */; + ECF4BC441143498C00B7C09B /* PBXTextBookmark */ = ECF4BC441143498C00B7C09B /* PBXTextBookmark */; + ECF4BC451143498C00B7C09B /* PBXTextBookmark */ = ECF4BC451143498C00B7C09B /* PBXTextBookmark */; + ECF4BC461143498C00B7C09B /* PBXTextBookmark */ = ECF4BC461143498C00B7C09B /* PBXTextBookmark */; + ECF4BC5711434A7100B7C09B /* PBXTextBookmark */ = ECF4BC5711434A7100B7C09B /* PBXTextBookmark */; + ECF4BC5E11434A7100B7C09B /* PBXTextBookmark */ = ECF4BC5E11434A7100B7C09B /* PBXTextBookmark */; + ECF4BC6111434A7E00B7C09B /* PBXTextBookmark */ = ECF4BC6111434A7E00B7C09B /* PBXTextBookmark */; + ECF4BC6B11434AB500B7C09B /* PBXTextBookmark */ = ECF4BC6B11434AB500B7C09B /* PBXTextBookmark */; }; sourceControlManager = ECE5B90410EF65C200B7EDDD /* Source Control */; userBuildSettings = { @@ -318,27 +187,10 @@ ignoreCount = 0; lineNumber = 331; location = libtinyNET.dylib; - modificationTime = 287625823.750541; + modificationTime = 289622682.557045; state = 1; }; - EC057C9710EF7A7200280149 /* test_transport.h:71 */ = { - isa = PBXFileBreakpoint; - actions = ( - ); - breakpointStyle = 0; - continueAfterActions = 0; - countType = 0; - delayBeforeContinue = 0; - fileReference = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; - functionName = "test_transport_tcp_ipv4(tnet_transport_handle_t *transport)"; - hitCount = 0; - ignoreCount = 0; - lineNumber = 71; - location = test; - modificationTime = 287625823.905545; - state = 1; - }; - EC057CFB10EF7EB200280149 /* tnet_transport.c:187 */ = { + EC057CFB10EF7EB200280149 /* tnet_transport.c:183 */ = { isa = PBXFileBreakpoint; actions = ( ); @@ -350,9 +202,9 @@ functionName = "run()"; hitCount = 0; ignoreCount = 0; - lineNumber = 187; + lineNumber = 183; location = libtinyNET.dylib; - modificationTime = 287625822.393614; + modificationTime = 289622681.317986; state = 2; }; EC057D0710EF80E300280149 /* test_transport.h:40 */ = { @@ -368,27 +220,9 @@ hitCount = 0; ignoreCount = 0; lineNumber = 40; - location = test; - modificationTime = 287625823.927514; + modificationTime = 289622691.7294; state = 1; }; - EC057D0910EF80E500280149 /* test_transport.h:46 */ = { - isa = PBXFileBreakpoint; - actions = ( - ); - breakpointStyle = 0; - continueAfterActions = 0; - countType = 0; - delayBeforeContinue = 0; - fileReference = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; - functionName = "tnet_udp_data_read(const void *callback_data, const void* data, size_t size)"; - hitCount = 0; - ignoreCount = 0; - lineNumber = 46; - location = test; - modificationTime = 287625822.393718; - state = 2; - }; EC9A8CCF1124B74C0046F5EC /* test_dns.h */ = { uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1113, 1288}}"; @@ -411,944 +245,44 @@ }; }; EC9A8D441124B8160046F5EC /* tnet_dhcp.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tnet_dhcp.c; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/dhcp/tnet_dhcp.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1113, 4396}}"; sepNavSelRange = "{2227, 0}"; sepNavVisRange = "{1139, 1317}"; }; }; - EC9A8D451124B8160046F5EC /* tnet_dhcp.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1113, 1596}}"; - sepNavSelRange = "{2099, 0}"; - sepNavVisRange = "{1269, 1331}"; - }; - }; - EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 4938}}"; - sepNavSelRange = "{1228, 0}"; - sepNavVisRange = "{40, 1385}"; - }; - }; - EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 3178}}"; - sepNavSelRange = "{1156, 0}"; - sepNavVisRange = "{40, 1705}"; - }; - }; - EC9A8D4A1124B8160046F5EC /* tnet_dhcp_option_sip.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 1834}}"; - sepNavSelRange = "{1083, 30}"; - sepNavVisRange = "{0, 1500}"; - }; - }; - EC9A8D4D1124B8160046F5EC /* tnet_dhcp6.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 3458}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{1529, 1416}"; - }; - }; - EC9A8D4F1124B8160046F5EC /* tnet_dhcp6_duid.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 4004}}"; - sepNavSelRange = "{1968, 0}"; - sepNavVisRange = "{1477, 805}"; - }; - }; - EC9A8D511124B8160046F5EC /* tnet_dhcp6_message.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 1652}}"; - sepNavSelRange = "{1047, 0}"; - sepNavVisRange = "{0, 1355}"; - }; - }; - EC9A8D521124B8160046F5EC /* tnet_dhcp6_message.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 2016}}"; - sepNavSelRange = "{1142, 0}"; - sepNavVisRange = "{0, 1478}"; - }; - }; - EC9A8D531124B8160046F5EC /* tnet_dhcp6_option.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 4858}}"; - sepNavSelRange = "{1707, 0}"; - sepNavVisRange = "{1307, 835}"; - }; - }; - EC9A8D541124B8160046F5EC /* tnet_dhcp6_option.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 3360}}"; - sepNavSelRange = "{8961, 0}"; - sepNavVisRange = "{7431, 2236}"; - }; - }; EC9A8D561124B8160046F5EC /* tnet_dns.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tnet_dns.c; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/dns/tnet_dns.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1113, 7280}}"; sepNavSelRange = "{1777, 0}"; sepNavVisRange = "{3636, 1190}"; }; }; - EC9A8D571124B8160046F5EC /* tnet_dns.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1308, 1456}}"; - sepNavSelRange = "{1720, 0}"; - sepNavVisRange = "{1835, 1459}"; - }; - }; - EC9A8D791124B8160046F5EC /* tnet_stun.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 2072}}"; - sepNavSelRange = "{945, 0}"; - sepNavVisRange = "{294, 1557}"; - }; - }; - EC9A8D7C1124B8160046F5EC /* tnet_stun_message.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 5894}}"; - sepNavSelRange = "{1199, 0}"; - sepNavVisRange = "{95, 1587}"; - }; - }; - EC9A8D7E1124B8160046F5EC /* tinyNET_config.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 1638}}"; - sepNavSelRange = "{2760, 12}"; - sepNavVisRange = "{2024, 969}"; - }; - }; EC9A8D891124B8160046F5EC /* 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}, {1113, 3710}}"; sepNavSelRange = "{4371, 0}"; sepNavVisRange = "{4358, 1287}"; }; }; - EC9A8D8F1124B8160046F5EC /* tnet_types.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 1386}}"; - sepNavSelRange = "{1332, 0}"; - sepNavVisRange = "{639, 875}"; - }; - }; - EC9A8D901124B8160046F5EC /* tnet_utils.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1113, 13510}}"; - sepNavSelRange = "{1325, 0}"; - sepNavVisRange = "{957, 722}"; - }; - }; - EC9A8D911124B8160046F5EC /* tnet_utils.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1320, 1946}}"; - sepNavSelRange = "{5588, 0}"; - sepNavVisRange = "{5491, 478}"; - }; - }; - EC9A8D931124B8160046F5EC /* tnet_turn.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 10706}}"; - sepNavSelRange = "{7444, 55}"; - sepNavVisRange = "{7901, 1497}"; - }; - }; - EC9A8D951124B8160046F5EC /* tnet_turn_attribute.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 8582}}"; - sepNavSelRange = "{14902, 51}"; - sepNavVisRange = "{14290, 1234}"; - }; - }; - EC9A8D971124B8160046F5EC /* tnet_turn_message.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 2240}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1381}"; - }; - }; - EC9A8DEC1124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D371124B7C90046F5EC /* tsk_uuid.c */; - name = "tsk_uuid.c: 38"; - rLen = 0; - rLoc = 1191; - rType = 0; - vrLen = 1332; - vrLoc = 1009; - }; - EC9A8DEF1124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D4A1124B8160046F5EC /* tnet_dhcp_option_sip.c */; - name = "tnet_dhcp_option_sip.c: 32"; - rLen = 30; - rLoc = 1083; - rType = 0; - vrLen = 1421; - vrLoc = 0; - }; - EC9A8DF21124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B91310EF65EF00B7EDDD /* tnet_types.h */; - name = "tnet_types.h: 101"; - rLen = 0; - rLoc = 2356; - rType = 0; - vrLen = 885; - vrLoc = 639; - }; - EC9A8DF31124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D371124B7C90046F5EC /* tsk_uuid.c */; - name = "tsk_uuid.c: 38"; - rLen = 0; - rLoc = 1191; - rType = 0; - vrLen = 1332; - vrLoc = 1009; - }; - EC9A8DF41124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */; - name = "tnet_dhcp_message.c: 39"; - rLen = 27; - rLoc = 1179; - rType = 0; - vrLen = 1070; - vrLoc = 728; - }; - EC9A8DF51124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */; - name = "tnet_dhcp_message.h: 215"; - rLen = 112; - rLoc = 8095; - rType = 0; - vrLen = 1902; - vrLoc = 6712; - }; - EC9A8DF61124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */; - name = "tnet_dhcp_message.c: 164"; - rLen = 3; - rLoc = 5303; - rType = 0; - vrLen = 1098; - vrLoc = 4617; - }; - EC9A8DF71124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */; - name = "tnet_dhcp_message.h: 216"; - rLen = 122; - rLoc = 8207; - rType = 0; - vrLen = 1902; - vrLoc = 6712; - }; - EC9A8DF81124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */; - name = "tnet_dhcp_message.c: 164"; - rLen = 3; - rLoc = 5303; - rType = 0; - vrLen = 1098; - vrLoc = 4617; - }; - EC9A8DF91124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */; - name = "tnet_dhcp_message.h: 216"; - rLen = 122; - rLoc = 8207; - rType = 0; - vrLen = 1902; - vrLoc = 6712; - }; - EC9A8DFA1124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */; - name = "tnet_dhcp_message.c: 164"; - rLen = 3; - rLoc = 5303; - rType = 0; - vrLen = 1098; - vrLoc = 4617; - }; - EC9A8DFB1124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */; - name = "tnet_dhcp_message.h: 216"; - rLen = 122; - rLoc = 8207; - rType = 0; - vrLen = 1902; - vrLoc = 6712; - }; - EC9A8DFC1124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */; - name = "tnet_dhcp_message.c: 164"; - rLen = 3; - rLoc = 5303; - rType = 0; - vrLen = 1098; - vrLoc = 4617; - }; - EC9A8DFD1124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */; - name = "tnet_dhcp_message.h: 216"; - rLen = 122; - rLoc = 8207; - rType = 0; - vrLen = 1902; - vrLoc = 6712; - }; - EC9A8DFE1124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */; - name = "tnet_dhcp_message.c: 39"; - rLen = 0; - rLoc = 1161; - rType = 0; - vrLen = 1328; - vrLoc = 0; - }; - EC9A8DFF1124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D4A1124B8160046F5EC /* tnet_dhcp_option_sip.c */; - name = "tnet_dhcp_option_sip.c: 32"; - rLen = 30; - rLoc = 1083; - rType = 0; - vrLen = 1421; - vrLoc = 0; - }; - EC9A8E001124B9360046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D791124B8160046F5EC /* tnet_stun.h */; - name = "tnet_stun.h: 129"; - rLen = 0; - rLoc = 3641; - rType = 0; - vrLen = 1685; - vrLoc = 2716; - }; - EC9A8E0C1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D971124B8160046F5EC /* tnet_turn_message.c */; - name = "tnet_turn_message.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 1381; - vrLoc = 0; - }; - EC9A8E0E1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D931124B8160046F5EC /* tnet_turn.c */; - name = "tnet_turn.c: 220"; - rLen = 55; - rLoc = 7444; - rType = 0; - vrLen = 888; - vrLoc = 6768; - }; - EC9A8E0F1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */; - name = "tnet_dhcp_message.c: 41"; - rLen = 0; - rLoc = 1228; - rType = 0; - vrLen = 1321; - vrLoc = 40; - }; - EC9A8E101124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */; - name = "tnet_dhcp_message.h: 42"; - rLen = 0; - rLoc = 1156; - rType = 0; - vrLen = 1705; - vrLoc = 40; - }; - EC9A8E121124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D541124B8160046F5EC /* tnet_dhcp6_option.h */; - name = "tnet_dhcp6_option.h: 198"; - rLen = 0; - rLoc = 8961; - rType = 0; - vrLen = 2236; - vrLoc = 7431; - }; - EC9A8E131124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D521124B8160046F5EC /* tnet_dhcp6_message.h */; - name = "tnet_dhcp6_message.h: 41"; - rLen = 0; - rLoc = 1142; - rType = 0; - vrLen = 1478; - vrLoc = 0; - }; - EC9A8E151124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D531124B8160046F5EC /* tnet_dhcp6_option.c */; - name = "tnet_dhcp6_option.c: 71"; - rLen = 0; - rLoc = 1707; - rType = 0; - vrLen = 835; - vrLoc = 1307; - }; - EC9A8E171124BB6C0046F5EC /* if.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = if.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/net/if.h; - sourceTree = ""; - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 5488}}"; - sepNavSelRange = "{9452, 53}"; - sepNavVisRange = "{8959, 1302}"; - }; - }; - EC9A8E191124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D7C1124B8160046F5EC /* tnet_stun_message.c */; - name = "tnet_stun_message.c: 42"; - rLen = 0; - rLoc = 1199; - rType = 0; - vrLen = 1587; - vrLoc = 95; - }; - EC9A8E1B1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D951124B8160046F5EC /* tnet_turn_attribute.c */; - name = "tnet_turn_attribute.c: 592"; - rLen = 65; - rLoc = 15000; - rType = 0; - vrLen = 992; - vrLoc = 14400; - }; - EC9A8E1C1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D971124B8160046F5EC /* tnet_turn_message.c */; - name = "tnet_turn_message.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 1381; - vrLoc = 0; - }; - EC9A8E1D1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D951124B8160046F5EC /* tnet_turn_attribute.c */; - name = "tnet_turn_attribute.c: 599"; - rLen = 51; - rLoc = 15152; - rType = 0; - vrLen = 954; - vrLoc = 14570; - }; - EC9A8E1E1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D931124B8160046F5EC /* tnet_turn.c */; - name = "tnet_turn.c: 220"; - rLen = 55; - rLoc = 7444; - rType = 0; - vrLen = 888; - vrLoc = 6768; - }; - EC9A8E1F1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */; - name = "tnet_dhcp_message.h: 215"; - rLen = 27; - rLoc = 8109; - rType = 0; - vrLen = 1902; - vrLoc = 6712; - }; - EC9A8E201124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */; - name = "tnet_dhcp_message.c: 41"; - rLen = 0; - rLoc = 1228; - rType = 0; - vrLen = 1321; - vrLoc = 40; - }; - EC9A8E211124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */; - name = "tnet_dhcp_message.h: 42"; - rLen = 0; - rLoc = 1156; - rType = 0; - vrLen = 1705; - vrLoc = 40; - }; - EC9A8E221124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 38"; - rLen = 0; - rLoc = 1289; - rType = 0; - vrLen = 1871; - vrLoc = 151; - }; - EC9A8E231124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D541124B8160046F5EC /* tnet_dhcp6_option.h */; - name = "tnet_dhcp6_option.h: 198"; - rLen = 0; - rLoc = 8961; - rType = 0; - vrLen = 2236; - vrLoc = 7431; - }; - EC9A8E241124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D521124B8160046F5EC /* tnet_dhcp6_message.h */; - name = "tnet_dhcp6_message.h: 41"; - rLen = 0; - rLoc = 1142; - rType = 0; - vrLen = 1478; - vrLoc = 0; - }; - EC9A8E251124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D511124B8160046F5EC /* tnet_dhcp6_message.c */; - name = "tnet_dhcp6_message.c: 22"; - rLen = 0; - rLoc = 788; - rType = 0; - vrLen = 1450; - vrLoc = 0; - }; - EC9A8E261124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D531124B8160046F5EC /* tnet_dhcp6_option.c */; - name = "tnet_dhcp6_option.c: 71"; - rLen = 0; - rLoc = 1707; - rType = 0; - vrLen = 835; - vrLoc = 1307; - }; - EC9A8E271124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 204"; - rLen = 8; - rLoc = 5911; - rType = 0; - vrLen = 949; - vrLoc = 4070; - }; - EC9A8E281124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8E291124BB6C0046F5EC /* if.h */; - name = "if.h: 257"; - rLen = 53; - rLoc = 9452; - rType = 0; - vrLen = 1487; - vrLoc = 9137; - }; - EC9A8E291124BB6C0046F5EC /* if.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = if.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/net/if.h; - sourceTree = ""; - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 5264}}"; - sepNavSelRange = "{9384, 15}"; - sepNavVisRange = "{8602, 1194}"; - }; - }; - EC9A8E2A1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 714"; - rLen = 16; - rLoc = 18808; - rType = 0; - vrLen = 1128; - vrLoc = 17096; - }; - EC9A8E2B1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D7E1124B8160046F5EC /* tinyNET_config.h */; - name = "tinyNET_config.h: 99"; - rLen = 16; - rLoc = 2696; - rType = 0; - vrLen = 1114; - vrLoc = 1698; - }; - EC9A8E2C1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 714"; - rLen = 0; - rLoc = 18820; - rType = 0; - vrLen = 994; - vrLoc = 17261; - }; - EC9A8E2D1124BB6C0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D7C1124B8160046F5EC /* tnet_stun_message.c */; - name = "tnet_stun_message.c: 42"; - rLen = 0; - rLoc = 1199; - rType = 0; - vrLen = 1587; - vrLoc = 95; - }; - EC9A8E311124BE6A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D7E1124B8160046F5EC /* tinyNET_config.h */; - name = "tinyNET_config.h: 103"; - rLen = 12; - rLoc = 2760; - rType = 0; - vrLen = 969; - vrLoc = 2024; - }; - EC9A8E331124BE6A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 204"; - rLen = 8; - rLoc = 5911; - rType = 0; - vrLen = 995; - vrLoc = 4231; - }; - EC9A8E341124BE6A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8E171124BB6C0046F5EC /* if.h */; - name = "if.h: 257"; - rLen = 53; - rLoc = 9452; - rType = 0; - vrLen = 1254; - vrLoc = 11066; - }; - EC9A8E351124BE6A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 204"; - rLen = 8; - rLoc = 5911; - rType = 0; - vrLen = 995; - vrLoc = 4231; - }; - EC9A8E361124BE6A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8E171124BB6C0046F5EC /* if.h */; - name = "if.h: 257"; - rLen = 53; - rLoc = 9452; - rType = 0; - vrLen = 1302; - vrLoc = 8959; - }; - EC9A8E371124BE6A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 156"; - rLen = 12; - rLoc = 3511; - rType = 0; - vrLen = 1011; - vrLoc = 3057; - }; - EC9A8E381124BE6A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D7E1124B8160046F5EC /* tinyNET_config.h */; - name = "tinyNET_config.h: 103"; - rLen = 12; - rLoc = 2760; - rType = 0; - vrLen = 969; - vrLoc = 2024; - }; - EC9A8E451124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D951124B8160046F5EC /* tnet_turn_attribute.c */; - name = "tnet_turn_attribute.c: 589"; - rLen = 51; - rLoc = 14902; - rType = 0; - vrLen = 1234; - vrLoc = 14290; - }; - EC9A8E461124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D4F1124B8160046F5EC /* tnet_dhcp6_duid.c */; - name = "tnet_dhcp6_duid.c: 73"; - rLen = 0; - rLoc = 1968; - rType = 0; - vrLen = 784; - vrLoc = 1477; - }; - EC9A8E471124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D511124B8160046F5EC /* tnet_dhcp6_message.c */; - name = "tnet_dhcp6_message.c: 34"; - rLen = 0; - rLoc = 1047; - rType = 0; - vrLen = 1355; - vrLoc = 0; - }; - EC9A8E491124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 163"; - rLen = 10; - rLoc = 3700; - rType = 0; - vrLen = 856; - vrLoc = 3421; - }; - EC9A8E4A1124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8E4B1124C04A0046F5EC /* ifaddrs.h */; - name = "ifaddrs.h: 52"; - rLen = 48; - rLoc = 1805; - rType = 0; - vrLen = 1629; - vrLoc = 293; - }; - EC9A8E4B1124C04A0046F5EC /* ifaddrs.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = ifaddrs.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/ifaddrs.h; - sourceTree = ""; - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 770}}"; - sepNavSelRange = "{1369, 18}"; - sepNavVisRange = "{0, 1790}"; - }; - }; - EC9A8E4C1124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 174"; - rLen = 0; - rLoc = 4960; - rType = 0; - vrLen = 864; - vrLoc = 3475; - }; - EC9A8E4D1124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8E4E1124C04A0046F5EC /* ifaddrs.h */; - name = "ifaddrs.h: 32"; - rLen = 28; - rLoc = 1341; - rType = 0; - vrLen = 1790; - vrLoc = 0; - }; - EC9A8E4E1124C04A0046F5EC /* ifaddrs.h */ = { - isa = PBXFileReference; - name = ifaddrs.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/ifaddrs.h; - sourceTree = ""; - }; - EC9A8E4F1124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 163"; - rLen = 10; - rLoc = 3700; - rType = 0; - vrLen = 826; - vrLoc = 3475; - }; - EC9A8E501124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8E511124C04A0046F5EC /* ifaddrs.h */; - name = "ifaddrs.h: 13"; - rLen = 0; - rLoc = 479; - rType = 0; - vrLen = 1762; - vrLoc = 153; - }; - EC9A8E511124C04A0046F5EC /* ifaddrs.h */ = { - isa = PBXFileReference; - name = ifaddrs.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/ifaddrs.h; - sourceTree = ""; - }; - EC9A8E521124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D8F1124B8160046F5EC /* tnet_types.h */; - name = "tnet_types.h: 49"; - rLen = 0; - rLoc = 1301; - rType = 0; - vrLen = 882; - vrLoc = 639; - }; - EC9A8E531124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D951124B8160046F5EC /* tnet_turn_attribute.c */; - name = "tnet_turn_attribute.c: 589"; - rLen = 51; - rLoc = 14902; - rType = 0; - vrLen = 1234; - vrLoc = 14290; - }; - EC9A8E541124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D4F1124B8160046F5EC /* tnet_dhcp6_duid.c */; - name = "tnet_dhcp6_duid.c: 73"; - rLen = 0; - rLoc = 1968; - rType = 0; - vrLen = 784; - vrLoc = 1477; - }; - EC9A8E551124C04A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D511124B8160046F5EC /* tnet_dhcp6_message.c */; - name = "tnet_dhcp6_message.c: 34"; - rLen = 0; - rLoc = 1047; - rType = 0; - vrLen = 1355; - vrLoc = 0; - }; - EC9A8E5A1124C3670046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8E291124BB6C0046F5EC /* if.h */; - name = "if.h: 253"; - rLen = 15; - rLoc = 9384; - rType = 0; - vrLen = 1194; - vrLoc = 8602; - }; - EC9A8E5C1124C3670046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 171"; - rLen = 0; - rLoc = 3868; - rType = 0; - vrLen = 1053; - vrLoc = 3391; - }; - EC9A8E5D1124C3670046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8E291124BB6C0046F5EC /* if.h */; - name = "if.h: 253"; - rLen = 15; - rLoc = 9384; - rType = 0; - vrLen = 1194; - vrLoc = 8602; - }; - EC9A8E601124C3AC0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D8F1124B8160046F5EC /* tnet_types.h */; - name = "tnet_types.h: 52"; - rLen = 0; - rLoc = 1332; - rType = 0; - vrLen = 875; - vrLoc = 639; - }; - EC9A8E621124C3AC0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D8F1124B8160046F5EC /* tnet_types.h */; - name = "tnet_types.h: 52"; - rLen = 0; - rLoc = 1332; - rType = 0; - vrLen = 875; - vrLoc = 639; - }; - EC9A8E641124C5CF0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8E4B1124C04A0046F5EC /* ifaddrs.h */; - name = "ifaddrs.h: 33"; - rLen = 18; - rLoc = 1369; - rType = 0; - vrLen = 1790; - vrLoc = 0; - }; - EC9A8E671124C5CF0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 200"; - rLen = 8; - rLoc = 4815; - rType = 0; - vrLen = 1156; - vrLoc = 3923; - }; - EC9A8E681124C5CF0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8E4B1124C04A0046F5EC /* ifaddrs.h */; - name = "ifaddrs.h: 33"; - rLen = 18; - rLoc = 1369; - rType = 0; - vrLen = 1790; - vrLoc = 0; - }; - EC9A8E691124C5CF0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 185"; - rLen = 0; - rLoc = 4190; - rType = 0; - vrLen = 1108; - vrLoc = 4160; - }; - EC9A8E6D1124C62F0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D4D1124B8160046F5EC /* tnet_dhcp6.c */; - name = "tnet_dhcp6.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 1573; - vrLoc = 1877; - }; EC9A8E761124C78C0046F5EC /* test_ifaces.h:70 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1362,190 +296,9 @@ hitCount = 0; ignoreCount = 0; lineNumber = 70; - location = test; - modificationTime = 287625823.93763; + modificationTime = 289622691.729608; state = 1; }; - EC9A8E7F1124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D4D1124B8160046F5EC /* tnet_dhcp6.c */; - name = "tnet_dhcp6.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 1416; - vrLoc = 1529; - }; - EC9A8E801124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D791124B8160046F5EC /* tnet_stun.h */; - name = "tnet_stun.h: 26"; - rLen = 0; - rLoc = 945; - rType = 0; - vrLen = 1557; - vrLoc = 294; - }; - EC9A8E821124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE8D56310FBE7FD00B2464F /* socket.h */; - name = "socket.h: 254"; - rLen = 48; - rLoc = 9939; - rType = 0; - vrLen = 2407; - vrLoc = 8956; - }; - EC9A8E851124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 159"; - rLen = 0; - rLoc = 3672; - rType = 0; - vrLen = 975; - vrLoc = 3421; - }; - EC9A8E861124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D4D1124B8160046F5EC /* tnet_dhcp6.c */; - name = "tnet_dhcp6.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 1416; - vrLoc = 1529; - }; - EC9A8E871124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 171"; - rLen = 0; - rLoc = 3924; - rType = 0; - vrLen = 1012; - vrLoc = 3475; - }; - EC9A8E881124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D4D1124B8160046F5EC /* tnet_dhcp6.c */; - name = "tnet_dhcp6.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 1416; - vrLoc = 1529; - }; - EC9A8E891124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 164"; - rLen = 0; - rLoc = 3731; - rType = 0; - vrLen = 1096; - vrLoc = 3391; - }; - EC9A8E8A1124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAA10EF6E4800B7EDDD /* test.c */; - name = "test.c: 96"; - rLen = 11; - rLoc = 2037; - rType = 0; - vrLen = 659; - vrLoc = 1576; - }; - EC9A8E8B1124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8CD01124B74C0046F5EC /* test_ifaces.h */; - name = "test_ifaces.h: 70"; - rLen = 0; - rLoc = 1808; - rType = 0; - vrLen = 1027; - vrLoc = 852; - }; - EC9A8E8C1124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D791124B8160046F5EC /* tnet_stun.h */; - name = "tnet_stun.h: 26"; - rLen = 0; - rLoc = 945; - rType = 0; - vrLen = 1557; - vrLoc = 294; - }; - EC9A8E8D1124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAA10EF6E4800B7EDDD /* test.c */; - name = "test.c: 65"; - rLen = 0; - rLoc = 1638; - rType = 0; - vrLen = 663; - vrLoc = 1639; - }; - EC9A8E8E1124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8CD01124B74C0046F5EC /* test_ifaces.h */; - name = "test_ifaces.h: 70"; - rLen = 0; - rLoc = 1781; - rType = 0; - vrLen = 1124; - vrLoc = 755; - }; - EC9A8E8F1124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 170"; - rLen = 7; - rLoc = 3902; - rType = 0; - vrLen = 1264; - vrLoc = 3428; - }; - EC9A8E901124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE8D56310FBE7FD00B2464F /* socket.h */; - name = "socket.h: 254"; - rLen = 48; - rLoc = 9939; - rType = 0; - vrLen = 2407; - vrLoc = 8956; - }; - EC9A8E911124C8880046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 202"; - rLen = 0; - rLoc = 4892; - rType = 0; - vrLen = 1214; - vrLoc = 5552; - }; - EC9A8E9A1124C8EE0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8CD01124B74C0046F5EC /* test_ifaces.h */; - name = "test_ifaces.h: 33"; - rLen = 0; - rLoc = 1072; - rType = 0; - vrLen = 1127; - vrLoc = 752; - }; - EC9A8E9B1124C8EE0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8CD01124B74C0046F5EC /* test_ifaces.h */; - name = "test_ifaces.h: 33"; - rLen = 0; - rLoc = 1072; - rType = 0; - vrLen = 1127; - vrLoc = 752; - }; EC9A8EA81124C99E0046F5EC /* tnet_dns.c:184 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1560,7 +313,7 @@ ignoreCount = 0; lineNumber = 184; location = libtinyNET.dylib; - modificationTime = 287625822.394541; + modificationTime = 289622681.319429; state = 1; }; EC9A8EAC1124C9B10046F5EC /* tnet_dns.c:162 */ = { @@ -1577,109 +330,9 @@ ignoreCount = 0; lineNumber = 162; location = libtinyNET.dylib; - modificationTime = 287625822.394606; + modificationTime = 289622681.319541; state = 1; }; - EC9A8EB11124CA190046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BA3010EF6D8500B7EDDD /* tsk_object.c */; - name = "tsk_object.c: 61"; - rLen = 0; - rLoc = 1626; - rType = 0; - vrLen = 859; - vrLoc = 1088; - }; - EC9A8EB21124CA190046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8CCF1124B74C0046F5EC /* test_dns.h */; - name = "test_dns.h: 69"; - rLen = 0; - rLoc = 1899; - rType = 0; - vrLen = 867; - vrLoc = 1344; - }; - EC9A8EB51124CA190046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAA10EF6E4800B7EDDD /* test.c */; - name = "test.c: 58"; - rLen = 0; - rLoc = 1521; - rType = 0; - vrLen = 753; - vrLoc = 1009; - }; - EC9A8EB61124CA190046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 406"; - rLen = 0; - rLoc = 9980; - rType = 0; - vrLen = 1313; - vrLoc = 9767; - }; - EC9A8EB71124CA190046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D561124B8160046F5EC /* tnet_dns.c */; - name = "tnet_dns.c: 492"; - rLen = 0; - rLoc = 12613; - rType = 0; - vrLen = 987; - vrLoc = 12008; - }; - EC9A8EB81124CA190046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BA3010EF6D8500B7EDDD /* tsk_object.c */; - name = "tsk_object.c: 61"; - rLen = 0; - rLoc = 1626; - rType = 0; - vrLen = 859; - vrLoc = 1088; - }; - EC9A8EB91124CA190046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8CCF1124B74C0046F5EC /* test_dns.h */; - name = "test_dns.h: 69"; - rLen = 0; - rLoc = 1899; - rType = 0; - vrLen = 867; - vrLoc = 1344; - }; - EC9A8EBA1124CA190046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D561124B8160046F5EC /* tnet_dns.c */; - name = "tnet_dns.c: 160"; - rLen = 0; - rLoc = 4699; - rType = 0; - vrLen = 1231; - vrLoc = 3900; - }; - EC9A8EBB1124CA190046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 415"; - rLen = 0; - rLoc = 10000; - rType = 0; - vrLen = 1257; - vrLoc = 9826; - }; - EC9A8EBC1124CA190046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D561124B8160046F5EC /* tnet_dns.c */; - name = "tnet_dns.c: 310"; - rLen = 0; - rLoc = 8350; - rType = 0; - vrLen = 987; - vrLoc = 8166; - }; EC9A8EC01124CA580046F5EC /* tnet_dns.c:138 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1694,69 +347,9 @@ ignoreCount = 0; lineNumber = 138; location = libtinyNET.dylib; - modificationTime = 287625822.394663; + modificationTime = 289622681.319649; state = 1; }; - EC9A8EC51124CA9A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAA10EF6E4800B7EDDD /* test.c */; - name = "test.c: 55"; - rLen = 0; - rLoc = 1476; - rType = 0; - vrLen = 762; - vrLoc = 1060; - }; - EC9A8EC71124CA9A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 400"; - rLen = 0; - rLoc = 9933; - rType = 0; - vrLen = 1258; - vrLoc = 7090; - }; - EC9A8EC81124CA9A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D561124B8160046F5EC /* tnet_dns.c */; - name = "tnet_dns.c: 133"; - rLen = 0; - rLoc = 3893; - rType = 0; - vrLen = 1278; - vrLoc = 3535; - }; - EC9A8EC91124CA9A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 415"; - rLen = 0; - rLoc = 10000; - rType = 0; - vrLen = 1398; - vrLoc = 9876; - }; - EC9A8ECA1124CA9A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D561124B8160046F5EC /* tnet_dns.c */; - name = "tnet_dns.c: 138"; - rLen = 0; - rLoc = 3913; - rType = 0; - vrLen = 1285; - vrLoc = 3535; - }; - EC9A8ECB1124CA9A0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAA10EF6E4800B7EDDD /* test.c */; - name = "test.c: 55"; - rLen = 0; - rLoc = 1476; - rType = 0; - vrLen = 762; - vrLoc = 1060; - }; EC9A8ED31124CAF70046F5EC /* tnet_dhcp.c:68 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1767,23 +360,13 @@ delayBeforeContinue = 0; fileReference = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; functionName = "tnet_dhcp_send_request()"; - hitCount = 1; + hitCount = 0; ignoreCount = 0; lineNumber = 68; location = libtinyNET.dylib; - modificationTime = 287625823.871996; + modificationTime = 289622682.58064; state = 1; }; - EC9A8ED61124CB1F0046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 209"; - rLen = 0; - rLoc = 4996; - rType = 0; - vrLen = 1058; - vrLoc = 4396; - }; EC9A8EDF1124CBE00046F5EC /* tnet_socket.c:189 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1794,407 +377,12 @@ delayBeforeContinue = 0; fileReference = EC9A8D891124B8160046F5EC /* tnet_socket.c */; functionName = "tnet_socket_create()"; - hitCount = 1; + hitCount = 0; ignoreCount = 0; lineNumber = 189; location = libtinyNET.dylib; - modificationTime = 287625826.707421; - state = 1; - }; - EC9A8EE01124CBF10046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BA2210EF6D8500B7EDDD /* tsk_errno.h */; - name = "tsk_errno.h: 39"; - rLen = 0; - rLoc = 1028; - rType = 0; - vrLen = 1026; - vrLoc = 885; - }; - EC9A8EE31124CBF10046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 68"; - rLen = 0; - rLoc = 2303; - rType = 0; - vrLen = 1037; - vrLoc = 1818; - }; - EC9A8EE41124CBF10046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D891124B8160046F5EC /* tnet_socket.c */; - name = "tnet_socket.c: 75"; - rLen = 0; - rLoc = 1818; - rType = 0; - vrLen = 1001; - vrLoc = 4944; - }; - EC9A8EE51124CBF10046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BA2210EF6D8500B7EDDD /* tsk_errno.h */; - name = "tsk_errno.h: 39"; - rLen = 0; - rLoc = 1028; - rType = 0; - vrLen = 1026; - vrLoc = 885; - }; - EC9A8EE61124CBF10046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D891124B8160046F5EC /* tnet_socket.c */; - name = "tnet_socket.c: 75"; - rLen = 0; - rLoc = 1818; - rType = 0; - vrLen = 996; - vrLoc = 4944; - }; - EC9A8EE71124CBF10046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 68"; - rLen = 0; - rLoc = 2227; - rType = 0; - vrLen = 1037; - vrLoc = 1818; - }; - EC9A8EFD1124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D571124B8160046F5EC /* tnet_dns.h */; - name = "tnet_dns.h: 54"; - rLen = 0; - rLoc = 1720; - rType = 0; - vrLen = 1459; - vrLoc = 1835; - }; - EC9A8EFE1124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D561124B8160046F5EC /* tnet_dns.c */; - name = "tnet_dns.c: 50"; - rLen = 0; - rLoc = 1777; - rType = 0; - vrLen = 1190; - vrLoc = 3636; - }; - EC9A8F021124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D891124B8160046F5EC /* tnet_socket.c */; - name = "tnet_socket.c: 184"; - rLen = 0; - rLoc = 5028; - rType = 0; - vrLen = 926; - vrLoc = 899; - }; - EC9A8F031124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D571124B8160046F5EC /* tnet_dns.h */; - name = "tnet_dns.h: 54"; - rLen = 0; - rLoc = 1720; - rType = 0; - vrLen = 1415; - vrLoc = 1083; - }; - EC9A8F041124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D561124B8160046F5EC /* tnet_dns.c */; - name = "tnet_dns.c: 138"; - rLen = 0; - rLoc = 3913; - rType = 0; - vrLen = 1337; - vrLoc = 1210; - }; - EC9A8F051124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 68"; - rLen = 0; - rLoc = 2227; - rType = 0; - vrLen = 1066; - vrLoc = 1773; - }; - EC9A8F061124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D571124B8160046F5EC /* tnet_dns.h */; - name = "tnet_dns.h: 54"; - rLen = 0; - rLoc = 1720; - rType = 0; - vrLen = 1459; - vrLoc = 1835; - }; - EC9A8F071124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D561124B8160046F5EC /* tnet_dns.c */; - name = "tnet_dns.c: 50"; - rLen = 0; - rLoc = 1777; - rType = 0; - vrLen = 1190; - vrLoc = 3636; - }; - EC9A8F081124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 68"; - rLen = 0; - rLoc = 2227; - rType = 0; - vrLen = 1066; - vrLoc = 1773; - }; - EC9A8F091124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D891124B8160046F5EC /* tnet_socket.c */; - name = "tnet_socket.c: 189"; - rLen = 0; - rLoc = 5065; - rType = 0; - vrLen = 1267; - vrLoc = 4329; - }; - EC9A8F0A1124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 68"; - rLen = 0; - rLoc = 2227; - rType = 0; - vrLen = 1308; - vrLoc = 1134; - }; - EC9A8F0B1124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D451124B8160046F5EC /* tnet_dhcp.h */; - name = "tnet_dhcp.h: 53"; - rLen = 0; - rLoc = 1731; - rType = 0; - vrLen = 1277; - vrLoc = 1294; - }; - EC9A8F0C1124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 68"; - rLen = 0; - rLoc = 2227; - rType = 0; - vrLen = 1308; - vrLoc = 1134; - }; - EC9A8F0D1124CE400046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D891124B8160046F5EC /* tnet_socket.c */; - name = "tnet_socket.c: 189"; - rLen = 0; - rLoc = 5065; - rType = 0; - vrLen = 1238; - vrLoc = 4358; - }; - EC9A8F121124CE950046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 34"; - rLen = 0; - rLoc = 1238; - rType = 0; - vrLen = 1326; - vrLoc = 1134; - }; - EC9A8F171124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D451124B8160046F5EC /* tnet_dhcp.h */; - name = "tnet_dhcp.h: 66"; - rLen = 0; - rLoc = 2099; - rType = 0; - vrLen = 1331; - vrLoc = 1269; - }; - EC9A8F181124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 53"; - rLen = 0; - rLoc = 1325; - rType = 0; - vrLen = 722; - vrLoc = 957; - }; - EC9A8F191124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8F1A1124D2690046F5EC /* errno.h */; - name = "errno.h: 86"; - rLen = 0; - rLoc = 3994; - rType = 0; - vrLen = 1641; - vrLoc = 3676; - }; - EC9A8F1A1124D2690046F5EC /* errno.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = errno.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/errno.h; - sourceTree = ""; - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1113, 3584}}"; - sepNavSelRange = "{4356, 6}"; - sepNavVisRange = "{3662, 1655}"; - }; - }; - EC9A8F1B1124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 68"; - rLen = 0; - rLoc = 2227; - rType = 0; - vrLen = 1317; - vrLoc = 1139; - }; - EC9A8F1D1124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D451124B8160046F5EC /* tnet_dhcp.h */; - name = "tnet_dhcp.h: 66"; - rLen = 0; - rLoc = 2099; - rType = 0; - vrLen = 1331; - vrLoc = 1269; - }; - EC9A8F1E1124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 65"; - rLen = 5; - rLoc = 2218; - rType = 0; - vrLen = 1331; - vrLoc = 1134; - }; - EC9A8F1F1124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8F201124D2690046F5EC /* errno.h */; - name = "errno.h: 175"; - rLen = 12; - rLoc = 8148; - rType = 0; - vrLen = 1874; - vrLoc = 7804; - }; - EC9A8F201124D2690046F5EC /* errno.h */ = { - isa = PBXFileReference; - name = errno.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/errno.h; - sourceTree = ""; - }; - EC9A8F211124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 65"; - rLen = 0; - rLoc = 2218; - rType = 0; - vrLen = 1322; - vrLoc = 1134; - }; - EC9A8F221124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D891124B8160046F5EC /* tnet_socket.c */; - name = "tnet_socket.c: 189"; - rLen = 0; - rLoc = 5065; - rType = 0; - vrLen = 1238; - vrLoc = 4358; - }; - EC9A8F231124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; - name = "tnet_utils.c: 53"; - rLen = 0; - rLoc = 1325; - rType = 0; - vrLen = 722; - vrLoc = 957; - }; - EC9A8F241124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8F251124D2690046F5EC /* errno.h */; - name = "errno.h: 86"; - rLen = 0; - rLoc = 3994; - rType = 0; - vrLen = 1641; - vrLoc = 3676; - }; - EC9A8F251124D2690046F5EC /* errno.h */ = { - isa = PBXFileReference; - name = errno.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/errno.h; - sourceTree = ""; - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1113, 3584}}"; - sepNavSelRange = "{4297, 0}"; - sepNavVisRange = "{3662, 1655}"; - }; - }; - EC9A8F261124D2690046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; - name = "tnet_dhcp.c: 68"; - rLen = 0; - rLoc = 2227; - rType = 0; - vrLen = 1317; - vrLoc = 1139; - }; - EC9A8F281124D4490046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D891124B8160046F5EC /* tnet_socket.c */; - name = "tnet_socket.c: 168"; - rLen = 0; - rLoc = 4371; - rType = 0; - vrLen = 1287; - vrLoc = 4358; - }; - EC9A8F291124D4490046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8D891124B8160046F5EC /* tnet_socket.c */; - name = "tnet_socket.c: 168"; - rLen = 0; - rLoc = 4371; - rType = 0; - vrLen = 1287; - vrLoc = 4358; - }; - EC9A8F2B1124D4E90046F5EC /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC9A8F2C1124D4E90046F5EC /* errno.h */; - name = "errno.h: 93"; - rLen = 0; - rLoc = 4297; - rType = 0; - vrLen = 1655; - vrLoc = 3662; - }; - EC9A8F2C1124D4E90046F5EC /* errno.h */ = { - isa = PBXFileReference; - name = errno.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/errno.h; - sourceTree = ""; + modificationTime = 289622681.319862; + state = 2; }; ECE5B90410EF65C200B7EDDD /* Source Control */ = { isa = PBXSourceControlManager; @@ -2235,11 +423,6 @@ name = tnet_socket.c; path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_socket.c; sourceTree = ""; - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1320, 3864}}"; - sepNavSelRange = "{5028, 0}"; - sepNavVisRange = "{1082, 470}"; - }; }; ECE5B90E10EF65EF00B7EDDD /* tnet_socket.h */ = { uiCtxt = { @@ -2255,11 +438,6 @@ name = tnet_transport.c; path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_transport.c; sourceTree = ""; - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1705, 3486}}"; - sepNavSelRange = "{3584, 0}"; - sepNavVisRange = "{3411, 292}"; - }; }; ECE5B91010EF65EF00B7EDDD /* tnet_transport.h */ = { uiCtxt = { @@ -2275,24 +453,6 @@ name = tnet_transport_poll.c; path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_transport_poll.c; sourceTree = ""; - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1859, 6412}}"; - sepNavSelRange = "{6282, 0}"; - sepNavVisRange = "{6174, 482}"; - }; - }; - ECE5B91210EF65EF00B7EDDD /* 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}, {1652, 8120}}"; - sepNavSelRange = "{8035, 8}"; - sepNavVisRange = "{7821, 1117}"; - }; }; ECE5B91310EF65EF00B7EDDD /* tnet_types.h */ = { uiCtxt = { @@ -2309,9 +469,9 @@ path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_utils.c; sourceTree = ""; uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {945, 5166}}"; - sepNavSelRange = "{8765, 5}"; - sepNavVisRange = "{8459, 377}"; + sepNavIntBoundsRect = "{{0, 0}, {1652, 17850}}"; + sepNavSelRange = "{33114, 0}"; + sepNavVisRange = "{32174, 856}"; }; }; ECE5B91510EF65EF00B7EDDD /* tnet_utils.h */ = { @@ -2394,6 +554,13 @@ sepNavVisRange = "{2096, 386}"; }; }; + ECE5BA4410EF6D8500B7EDDD /* tsk_timer.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1268, 5908}}"; + sepNavSelRange = "{3837, 0}"; + sepNavVisRange = "{3958, 1265}"; + }; + }; ECE5BA9B10EF6E1900B7EDDD /* test */ = { activeExec = 0; executables = ( @@ -2445,9 +612,9 @@ }; ECE5BAAA10EF6E4800B7EDDD /* test.c */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1113, 1596}}"; - sepNavSelRange = "{1476, 0}"; - sepNavVisRange = "{1060, 762}"; + sepNavIntBoundsRect = "{{0, 0}, {1859, 1750}}"; + sepNavSelRange = "{1848, 0}"; + sepNavVisRange = "{1499, 546}"; }; }; ECE5BAAB10EF6E4800B7EDDD /* test.vcproj */ = { @@ -2473,252 +640,12 @@ }; ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1396, 2576}}"; - sepNavSelRange = "{3642, 0}"; - sepNavVisRange = "{1014, 1025}"; + sepNavIntBoundsRect = "{{0, 0}, {1859, 3038}}"; + sepNavSelRange = "{2778, 0}"; + sepNavVisRange = "{2214, 1281}"; sepNavWindowFrame = "{{38, 594}, {750, 558}}"; }; }; - ECE8D4F910FBD85A00B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAB10EF6E4800B7EDDD /* test.vcproj */; - name = "test.vcproj: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 798; - vrLoc = 0; - }; - ECE8D4FD10FBD85A00B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAB10EF6E4800B7EDDD /* test.vcproj */; - name = "test.vcproj: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 798; - vrLoc = 0; - }; - ECE8D50E10FBD90900B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAD10EF6E4800B7EDDD /* test_sockets.h */; - name = "test_sockets.h: 34"; - rLen = 0; - rLoc = 1048; - rType = 0; - vrLen = 836; - vrLoc = 655; - }; - ECE8D52D10FBD9DE00B2464F /* test_transport.h:139 */ = { - isa = PBXFileBreakpoint; - actions = ( - ); - breakpointStyle = 0; - continueAfterActions = 0; - countType = 0; - delayBeforeContinue = 0; - fileReference = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; - functionName = "test_transport_udp_ipv4(tnet_transport_handle_t *transport)"; - hitCount = 0; - ignoreCount = 0; - lineNumber = 139; - location = test; - modificationTime = 287625823.937434; - state = 1; - }; - ECE8D53810FBDA7B00B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B90E10EF65EF00B7EDDD /* tnet_socket.h */; - name = "tnet_socket.h: 142"; - rLen = 9; - rLoc = 7241; - rType = 0; - vrLen = 664; - vrLoc = 7034; - }; - ECE8D53F10FBDA7B00B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B90E10EF65EF00B7EDDD /* tnet_socket.h */; - name = "tnet_socket.h: 142"; - rLen = 9; - rLoc = 7241; - rType = 0; - vrLen = 664; - vrLoc = 7034; - }; - ECE8D54210FBDA7B00B2464F /* in6.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = in6.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/netinet6/in6.h; - sourceTree = ""; - }; - ECE8D54510FBE5D100B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE8D54210FBDA7B00B2464F /* in6.h */; - name = "in6.h: 123"; - rLen = 0; - rLoc = 5454; - rType = 0; - vrLen = 1326; - vrLoc = 5003; - }; - ECE8D54810FBE5D100B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE8D54210FBDA7B00B2464F /* in6.h */; - name = "in6.h: 123"; - rLen = 0; - rLoc = 5454; - rType = 0; - vrLen = 1326; - vrLoc = 5003; - }; - ECE8D55710FBE7FD00B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; - name = "test_transport.h: 137"; - rLen = 0; - rLoc = 3642; - rType = 0; - vrLen = 1025; - vrLoc = 1014; - }; - ECE8D55810FBE7FD00B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE8D55910FBE7FD00B2464F /* in.h */; - name = "in.h: 208"; - rLen = 0; - rLoc = 9487; - rType = 0; - vrLen = 1792; - vrLoc = 9844; - }; - ECE8D55910FBE7FD00B2464F /* in.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = in.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/netinet/in.h; - sourceTree = ""; - }; - ECE8D55F10FBE7FD00B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE8D56010FBE7FD00B2464F /* in.h */; - name = "in.h: 208"; - rLen = 0; - rLoc = 9487; - rType = 0; - vrLen = 1792; - vrLoc = 9844; - }; - ECE8D56010FBE7FD00B2464F /* in.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = in.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/netinet/in.h; - sourceTree = ""; - }; - ECE8D56210FBE7FD00B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE8D56310FBE7FD00B2464F /* socket.h */; - name = "socket.h: 138"; - rLen = 44; - rLoc = 4914; - rType = 0; - vrLen = 2230; - vrLoc = 0; - }; - ECE8D56310FBE7FD00B2464F /* socket.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = socket.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/socket.h; - sourceTree = ""; - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1652, 7686}}"; - sepNavSelRange = "{9939, 48}"; - sepNavVisRange = "{8956, 2407}"; - }; - }; - ECED600610F96CF8006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B91110EF65EF00B7EDDD /* tnet_transport_poll.c */; - name = "tnet_transport_poll.c: 319"; - rLen = 0; - rLoc = 8198; - rType = 0; - vrLen = 448; - vrLoc = 7208; - }; - ECED600710F96CF8006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B91210EF65EF00B7EDDD /* tnet_transport_win32.c */; - name = "tnet_transport_win32.c: 402"; - rLen = 32; - rLoc = 9916; - rType = 0; - vrLen = 1402; - vrLoc = 8992; - }; - ECED600910F96CF8006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAA10EF6E4800B7EDDD /* test.c */; - name = "test.c: 32"; - rLen = 0; - rLoc = 925; - rType = 0; - vrLen = 610; - vrLoc = 776; - }; - ECED600C10F96CF8006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAD10EF6E4800B7EDDD /* test_sockets.h */; - name = "test_sockets.h: 29"; - rLen = 0; - rLoc = 889; - rType = 0; - vrLen = 1089; - vrLoc = 402; - }; - ECED602110F96D50006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B90D10EF65EF00B7EDDD /* tnet_socket.c */; - name = "tnet_socket.c: 92"; - rLen = 0; - rLoc = 2496; - rType = 0; - vrLen = 314; - vrLoc = 2483; - }; - ECED602B10F96D99006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; - name = "test_transport.h: 156"; - rLen = 0; - rLoc = 4248; - rType = 0; - vrLen = 1083; - vrLoc = 2428; - }; - ECED602E10F96D99006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B90F10EF65EF00B7EDDD /* tnet_transport.c */; - name = "tnet_transport.c: 187"; - rLen = 0; - rLoc = 3881; - rType = 0; - vrLen = 929; - vrLoc = 3767; - }; - ECED605410F96F57006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B90F10EF65EF00B7EDDD /* tnet_transport.c */; - name = "tnet_transport.c: 187"; - rLen = 0; - rLoc = 3881; - rType = 0; - vrLen = 986; - vrLoc = 3765; - }; ECED607810F96FDD006B4DC9 /* tnet_socket.c:86 */ = { isa = PBXFileBreakpoint; actions = ( @@ -2733,40 +660,10 @@ ignoreCount = 0; lineNumber = 86; location = libtinyNET.dylib; - modificationTime = 287625823.767475; - state = 1; + modificationTime = 289622681.318262; + state = 2; }; - ECED608610F9774A006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B91510EF65EF00B7EDDD /* tnet_utils.h */; - name = "tnet_utils.h: 51"; - rLen = 56; - rLoc = 1738; - rType = 0; - vrLen = 1574; - vrLoc = 222; - }; - ECED608B10F9774A006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B91510EF65EF00B7EDDD /* tnet_utils.h */; - name = "tnet_utils.h: 51"; - rLen = 56; - rLoc = 1738; - rType = 0; - vrLen = 1574; - vrLoc = 222; - }; - ECED608C10F9774A006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B91310EF65EF00B7EDDD /* tnet_types.h */; - name = "tnet_types.h: 45"; - rLen = 0; - rLoc = 1283; - rType = 0; - vrLen = 993; - vrLoc = 936; - }; - ECED608F10F97808006B4DC9 /* tnet_transport_poll.c:363 */ = { + ECED608F10F97808006B4DC9 /* tnet_transport_poll.c:336 */ = { isa = PBXFileBreakpoint; actions = ( ); @@ -2778,12 +675,12 @@ functionName = "tnet_transport_mainthread()"; hitCount = 0; ignoreCount = 0; - lineNumber = 363; + lineNumber = 336; location = libtinyNET.dylib; - modificationTime = 287625822.393907; + modificationTime = 289622681.318363; state = 2; }; - ECED609710F978D7006B4DC9 /* tnet_transport_poll.c:307 */ = { + ECED609710F978D7006B4DC9 /* tnet_transport_poll.c:281 */ = { isa = PBXFileBreakpoint; actions = ( ); @@ -2795,12 +692,12 @@ functionName = "tnet_transport_stop()"; hitCount = 0; ignoreCount = 0; - lineNumber = 307; + lineNumber = 281; location = libtinyNET.dylib; - modificationTime = 287625822.39397; + modificationTime = 289622681.318524; state = 2; }; - ECED60B510F979E1006B4DC9 /* tnet_transport_poll.c:300 */ = { + ECED60B510F979E1006B4DC9 /* tnet_transport_poll.c:274 */ = { isa = PBXFileBreakpoint; actions = ( ); @@ -2812,12 +709,501 @@ functionName = "tnet_transport_stop()"; hitCount = 0; ignoreCount = 0; - lineNumber = 300; + lineNumber = 274; location = libtinyNET.dylib; - modificationTime = 287625822.394026; + modificationTime = 289622681.318685; state = 2; }; - ECED60B910F979F9006B4DC9 /* test_transport.h:179 */ = { + ECED60C310F97A49006B4DC9 /* tnet_transport_poll.c:341 */ = { + isa = PBXFileBreakpoint; + actions = ( + ); + breakpointStyle = 0; + continueAfterActions = 0; + countType = 0; + delayBeforeContinue = 0; + fileReference = ECE5B91110EF65EF00B7EDDD /* tnet_transport_poll.c */; + functionName = "tnet_transport_mainthread()"; + hitCount = 0; + ignoreCount = 0; + lineNumber = 341; + location = libtinyNET.dylib; + modificationTime = 289622681.318845; + state = 2; + }; + ECED60C710F97A69006B4DC9 /* tnet_transport_poll.c:339 */ = { + isa = PBXFileBreakpoint; + actions = ( + ); + breakpointStyle = 0; + continueAfterActions = 0; + countType = 0; + delayBeforeContinue = 0; + fileReference = ECE5B91110EF65EF00B7EDDD /* tnet_transport_poll.c */; + functionName = "tnet_transport_mainthread()"; + hitCount = 0; + ignoreCount = 0; + lineNumber = 339; + location = libtinyNET.dylib; + modificationTime = 289622681.319002; + state = 2; + }; + ECED60F310F97E82006B4DC9 /* tnet_transport_poll.c:342 */ = { + isa = PBXFileBreakpoint; + actions = ( + ); + breakpointStyle = 0; + continueAfterActions = 0; + countType = 0; + delayBeforeContinue = 0; + fileReference = ECE5B91110EF65EF00B7EDDD /* tnet_transport_poll.c */; + functionName = "tnet_transport_mainthread()"; + hitCount = 0; + ignoreCount = 0; + lineNumber = 342; + location = libtinyNET.dylib; + modificationTime = 289622681.319161; + state = 2; + }; + ECF4BAC41143287400B7C09B /* tnet_tls.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1652, 5964}}"; + sepNavSelRange = "{8198, 0}"; + sepNavVisRange = "{8880, 1276}"; + }; + }; + ECF4BACE1143287400B7C09B /* tnet_poll.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1652, 1386}}"; + sepNavSelRange = "{2126, 12}"; + sepNavVisRange = "{1079, 1239}"; + }; + }; + ECF4BAD01143287400B7C09B /* tnet_socket.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1652, 3374}}"; + sepNavSelRange = "{2180, 0}"; + sepNavVisRange = "{1580, 1413}"; + }; + }; + ECF4BAD21143287400B7C09B /* tnet_transport.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1652, 4830}}"; + sepNavSelRange = "{1811, 0}"; + sepNavVisRange = "{954, 1431}"; + }; + }; + ECF4BAD31143287400B7C09B /* tnet_transport.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1652, 1820}}"; + sepNavSelRange = "{4127, 0}"; + sepNavVisRange = "{94, 1832}"; + }; + }; + ECF4BAD41143287400B7C09B /* tnet_transport_poll.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1859, 7994}}"; + sepNavSelRange = "{9650, 0}"; + sepNavVisRange = "{9255, 1207}"; + }; + }; + ECF4BAD51143287400B7C09B /* tnet_transport_win32.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1859, 9184}}"; + sepNavSelRange = "{1471, 0}"; + sepNavVisRange = "{1109, 1019}"; + }; + }; + ECF4BAD71143287400B7C09B /* tnet_utils.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1770, 17542}}"; + sepNavSelRange = "{20858, 0}"; + sepNavVisRange = "{19560, 1798}"; + }; + }; + ECF4BADE1143287400B7C09B /* tnet_turn_message.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1652, 2310}}"; + sepNavSelRange = "{1050, 0}"; + sepNavVisRange = "{222, 1922}"; + }; + }; + ECF4BB35114328E800B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAC41143287400B7C09B /* tnet_tls.c */; + name = "tnet_tls.c: 338"; + rLen = 0; + rLoc = 8198; + rType = 0; + vrLen = 1276; + vrLoc = 8880; + }; + ECF4BB38114328E800B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAC41143287400B7C09B /* tnet_tls.c */; + name = "tnet_tls.c: 338"; + rLen = 0; + rLoc = 8198; + rType = 0; + vrLen = 1276; + vrLoc = 8880; + }; + ECF4BB39114328E800B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; + name = "test_transport.h: 42"; + rLen = 0; + rLoc = 1261; + rType = 0; + vrLen = 995; + vrLoc = 1654; + }; + ECF4BB4E1143295D00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD01143287400B7C09B /* tnet_socket.c */; + name = "tnet_socket.c: 202"; + rLen = 0; + rLoc = 5293; + rType = 0; + vrLen = 883; + vrLoc = 4478; + }; + ECF4BB511143296600B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD01143287400B7C09B /* tnet_socket.c */; + name = "tnet_socket.c: 89"; + rLen = 0; + rLoc = 2180; + rType = 0; + vrLen = 1413; + vrLoc = 1580; + }; + ECF4BB591143299000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; + name = "test_transport.h: 66"; + rLen = 0; + rLoc = 1901; + rType = 0; + vrLen = 1147; + vrLoc = 1208; + }; + ECF4BB6611433E6F00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD41143287400B7C09B /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 516"; + rLen = 0; + rLoc = 11857; + rType = 0; + vrLen = 941; + vrLoc = 11820; + }; + ECF4BB75114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD31143287400B7C09B /* tnet_transport.h */; + name = "tnet_transport.h: 97"; + rLen = 0; + rLoc = 4127; + rType = 0; + vrLen = 1832; + vrLoc = 94; + }; + ECF4BB76114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BACE1143287400B7C09B /* tnet_poll.h */; + name = "tnet_poll.h: 86"; + rLen = 12; + rLoc = 2126; + rType = 0; + vrLen = 1239; + vrLoc = 1079; + }; + ECF4BB79114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; + name = "test_transport.h: 63"; + rLen = 0; + rLoc = 1848; + rType = 0; + vrLen = 1344; + vrLoc = 4309; + }; + ECF4BB7A114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD41143287400B7C09B /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 442"; + rLen = 0; + rLoc = 9782; + rType = 0; + vrLen = 1319; + vrLoc = 11469; + }; + ECF4BB7B114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD21143287400B7C09B /* tnet_transport.c */; + name = "tnet_transport.c: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1201; + vrLoc = 6818; + }; + ECF4BB7C114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD31143287400B7C09B /* tnet_transport.h */; + name = "tnet_transport.h: 77"; + rLen = 0; + rLoc = 2241; + rType = 0; + vrLen = 2484; + vrLoc = 1815; + }; + ECF4BB7D114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD21143287400B7C09B /* tnet_transport.c */; + name = "tnet_transport.c: 322"; + rLen = 790; + rLoc = 7967; + rType = 0; + vrLen = 1194; + vrLoc = 7566; + }; + ECF4BB7E114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD41143287400B7C09B /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 72"; + rLen = 0; + rLoc = 1987; + rType = 0; + vrLen = 1538; + vrLoc = 1431; + }; + ECF4BB7F114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD31143287400B7C09B /* tnet_transport.h */; + name = "tnet_transport.h: 97"; + rLen = 0; + rLoc = 4127; + rType = 0; + vrLen = 1832; + vrLoc = 94; + }; + ECF4BB80114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD51143287400B7C09B /* tnet_transport_win32.c */; + name = "tnet_transport_win32.c: 511"; + rLen = 0; + rLoc = 12962; + rType = 0; + vrLen = 1474; + vrLoc = 12928; + }; + ECF4BB81114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD41143287400B7C09B /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 553"; + rLen = 0; + rLoc = 13262; + rType = 0; + vrLen = 955; + vrLoc = 12166; + }; + ECF4BB82114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD51143287400B7C09B /* tnet_transport_win32.c */; + name = "tnet_transport_win32.c: 645"; + rLen = 0; + rLoc = 16512; + rType = 0; + vrLen = 1573; + vrLoc = 14254; + }; + ECF4BB83114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BACE1143287400B7C09B /* tnet_poll.h */; + name = "tnet_poll.h: 86"; + rLen = 12; + rLoc = 2126; + rType = 0; + vrLen = 1239; + vrLoc = 1079; + }; + ECF4BB84114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD41143287400B7C09B /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 509"; + rLen = 0; + rLoc = 12273; + rType = 0; + vrLen = 1373; + vrLoc = 11007; + }; + ECF4BB85114342F000B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD51143287400B7C09B /* tnet_transport_win32.c */; + name = "tnet_transport_win32.c: 599"; + rLen = 124; + rLoc = 15215; + rType = 0; + vrLen = 1584; + vrLoc = 14670; + }; + ECF4BBAA114344E500B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD51143287400B7C09B /* tnet_transport_win32.c */; + name = "tnet_transport_win32.c: 43"; + rLen = 0; + rLoc = 1250; + rType = 0; + vrLen = 1453; + vrLoc = 732; + }; + ECF4BBAC114344E500B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD51143287400B7C09B /* tnet_transport_win32.c */; + name = "tnet_transport_win32.c: 43"; + rLen = 0; + rLoc = 1250; + rType = 0; + vrLen = 1453; + vrLoc = 732; + }; + ECF4BBAD114344E500B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD41143287400B7C09B /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 387"; + rLen = 0; + rLoc = 8878; + rType = 0; + vrLen = 1611; + vrLoc = 8851; + }; + ECF4BBEE1143475800B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BBEF1143475800B7C09B /* string.h */; + name = "string.h: 83"; + rLen = 44; + rLoc = 3369; + rType = 0; + vrLen = 1979; + vrLoc = 2253; + }; + ECF4BBEF1143475800B7C09B /* string.h */ = { + isa = PBXFileReference; + name = string.h; + path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h; + sourceTree = ""; + }; + ECF4BBF11143475800B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; + name = "test_transport.h: 59"; + rLen = 0; + rLoc = 1743; + rType = 0; + vrLen = 1190; + vrLoc = 1005; + }; + ECF4BBF21143475800B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BADE1143287400B7C09B /* tnet_turn_message.c */; + name = "tnet_turn_message.c: 139"; + rLen = 6; + rLoc = 3843; + rType = 0; + vrLen = 1070; + vrLoc = 3100; + }; + ECF4BBF31143475800B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BBF41143475800B7C09B /* string.h */; + name = "string.h: 83"; + rLen = 44; + rLoc = 3369; + rType = 0; + vrLen = 1979; + vrLoc = 2253; + }; + ECF4BBF41143475800B7C09B /* string.h */ = { + isa = PBXFileReference; + name = string.h; + path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h; + sourceTree = ""; + }; + ECF4BC071143483600B7C09B /* tnet_transport_poll.c */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.c; + name = tnet_transport_poll.c; + path = /Users/diopmamadou/Documents/doubango/xcode/tinyNET/../../tinyNET/src/tnet_transport_poll.c; + sourceTree = ""; + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1859, 7994}}"; + sepNavSelRange = "{9650, 0}"; + sepNavVisRange = "{9230, 1076}"; + }; + }; + ECF4BC0F1143485A00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BADE1143287400B7C09B /* tnet_turn_message.c */; + name = "tnet_turn_message.c: 36"; + rLen = 0; + rLoc = 1050; + rType = 0; + vrLen = 1922; + vrLoc = 222; + }; + ECF4BC101143485A00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BC071143483600B7C09B /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 422"; + rLen = 0; + rLoc = 9720; + rType = 0; + vrLen = 1662; + vrLoc = 9078; + }; + ECF4BC111143485A00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BC071143483600B7C09B /* tnet_transport_poll.c */; + name = "tnet_transport_poll.c: 422"; + rLen = 0; + rLoc = 9720; + rType = 0; + vrLen = 1662; + vrLoc = 9078; + }; + ECF4BC27114348EB00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; + name = "test_transport.h: 114"; + rLen = 0; + rLoc = 2919; + rType = 0; + vrLen = 1613; + vrLoc = 2195; + }; + ECF4BC2A1143490800B7C09B /* asm write$UNIX2003 0x959b1c74 */ = { + isa = PBXFileReference; + lastKnownFileType = text; + path = "asm write$UNIX2003 0x959b1c74"; + sourceTree = ""; + }; + ECF4BC2C1143490800B7C09B /* asm write$UNIX2003 0x959b1c74:8 */ = { + isa = PBXFileBreakpoint; + actions = ( + ); + breakpointStyle = 0; + continueAfterActions = 0; + countType = 0; + delayBeforeContinue = 0; + fileReference = ECF4BC2A1143490800B7C09B /* asm write$UNIX2003 0x959b1c74 */; + hitCount = 0; + ignoreCount = 0; + lineNumber = 8; + modificationTime = 289622681.319967; + state = 1; + }; + ECF4BC2E1143490F00B7C09B /* test_transport.h:114 */ = { isa = PBXFileBreakpoint; actions = ( ); @@ -2826,157 +1212,157 @@ countType = 0; delayBeforeContinue = 0; fileReference = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; - functionName = "test_transport()"; + functionName = "test_transport_tcp_ipv4(tnet_transport_handle_t *transport)"; hitCount = 0; ignoreCount = 0; - lineNumber = 179; + lineNumber = 114; + modificationTime = 289622681.320073; + state = 2; + }; + ECF4BC321143491700B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECE5BAAA10EF6E4800B7EDDD /* test.c */; + name = "test.c: 61"; + rLen = 0; + rLoc = 1604; + rType = 0; + vrLen = 654; + vrLoc = 1221; + }; + ECF4BC3F1143497C00B7C09B /* test.c:82 */ = { + isa = PBXFileBreakpoint; + actions = ( + ); + breakpointStyle = 0; + continueAfterActions = 0; + countType = 0; + delayBeforeContinue = 0; + fileReference = ECE5BAAA10EF6E4800B7EDDD /* test.c */; + functionName = "main()"; + hitCount = 0; + ignoreCount = 0; + lineNumber = 82; location = test; - modificationTime = 287625822.394079; + modificationTime = 289622681.320185; state = 2; }; - ECED60C310F97A49006B4DC9 /* tnet_transport_poll.c:369 */ = { - isa = PBXFileBreakpoint; - actions = ( - ); - breakpointStyle = 0; - continueAfterActions = 0; - countType = 0; - delayBeforeContinue = 0; - fileReference = ECE5B91110EF65EF00B7EDDD /* tnet_transport_poll.c */; - functionName = "tnet_transport_mainthread()"; - hitCount = 0; - ignoreCount = 0; - lineNumber = 369; - location = libtinyNET.dylib; - modificationTime = 287625822.394133; - state = 2; - }; - ECED60C510F97A5E006B4DC9 /* tnet_transport_poll.c:450 */ = { - isa = PBXFileBreakpoint; - actions = ( - ); - breakpointStyle = 0; - continueAfterActions = 0; - countType = 0; - delayBeforeContinue = 0; - fileReference = ECE5B91110EF65EF00B7EDDD /* tnet_transport_poll.c */; - functionName = "tnet_transport_mainthread()"; - hitCount = 0; - ignoreCount = 0; - lineNumber = 450; - location = libtinyNET.dylib; - modificationTime = 287625822.394187; - state = 2; - }; - ECED60C710F97A69006B4DC9 /* tnet_transport_poll.c:366 */ = { - isa = PBXFileBreakpoint; - actions = ( - ); - breakpointStyle = 0; - continueAfterActions = 0; - countType = 0; - delayBeforeContinue = 0; - fileReference = ECE5B91110EF65EF00B7EDDD /* tnet_transport_poll.c */; - functionName = "tnet_transport_mainthread()"; - hitCount = 0; - ignoreCount = 0; - lineNumber = 366; - location = libtinyNET.dylib; - modificationTime = 287625822.394256; - state = 2; - }; - ECED60D810F97CF8006B4DC9 /* tnet_transport_poll.c:393 */ = { - isa = PBXFileBreakpoint; - actions = ( - ); - breakpointStyle = 0; - continueAfterActions = 0; - countType = 0; - delayBeforeContinue = 0; - fileReference = ECE5B91110EF65EF00B7EDDD /* tnet_transport_poll.c */; - functionName = "tnet_transport_mainthread()"; - hitCount = 0; - ignoreCount = 0; - lineNumber = 393; - location = libtinyNET.dylib; - modificationTime = 287625822.394311; - state = 2; - }; - ECED60F310F97E82006B4DC9 /* tnet_transport_poll.c:370 */ = { - isa = PBXFileBreakpoint; - actions = ( - ); - breakpointStyle = 0; - continueAfterActions = 0; - countType = 0; - delayBeforeContinue = 0; - fileReference = ECE5B91110EF65EF00B7EDDD /* tnet_transport_poll.c */; - functionName = "tnet_transport_mainthread()"; - hitCount = 0; - ignoreCount = 0; - lineNumber = 370; - location = libtinyNET.dylib; - modificationTime = 287625822.394366; - state = 2; - }; - ECED611810F98090006B4DC9 /* PBXTextBookmark */ = { + ECF4BC411143498C00B7C09B /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = ECE5B90C10EF65EF00B7EDDD /* tnet_poll.h */; - name = "tnet_poll.h: 45"; - rLen = 38; - rLoc = 1173; - rType = 0; - vrLen = 1321; - vrLoc = 0; - }; - ECED612210F98090006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B90C10EF65EF00B7EDDD /* tnet_poll.h */; - name = "tnet_poll.h: 45"; - rLen = 38; - rLoc = 1173; - rType = 0; - vrLen = 1321; - vrLoc = 0; - }; - ECED616410F9861A006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B91110EF65EF00B7EDDD /* tnet_transport_poll.c */; - name = "tnet_transport_poll.c: 278"; - rLen = 100; - rLoc = 6420; - rType = 0; - vrLen = 920; - vrLoc = 5826; - }; - ECED616510F9861A006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B91210EF65EF00B7EDDD /* tnet_transport_win32.c */; - name = "tnet_transport_win32.c: 331"; - rLen = 8; - rLoc = 8035; - rType = 0; - vrLen = 1117; - vrLoc = 7821; - }; - ECED617710F986BE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECE5B91010EF65EF00B7EDDD /* tnet_transport.h */; - name = "tnet_transport.h: 14"; + fRef = ECE5BAAA10EF6E4800B7EDDD /* test.c */; + name = "test.c: 65"; rLen = 0; - rLoc = 520; + rLoc = 1630; rType = 0; - vrLen = 2452; - vrLoc = 756; + vrLen = 752; + vrLoc = 1525; }; - ECED617B10F986BE006B4DC9 /* PBXTextBookmark */ = { + ECF4BC421143498C00B7C09B /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = ECE5B91010EF65EF00B7EDDD /* tnet_transport.h */; - name = "tnet_transport.h: 14"; + fRef = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; + name = "test_transport.h: 200"; rLen = 0; - rLoc = 520; + rLoc = 5325; rType = 0; - vrLen = 2452; - vrLoc = 756; + vrLen = 1417; + vrLoc = 1934; + }; + ECF4BC441143498C00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; + name = "test_transport.h: 115"; + rLen = 0; + rLoc = 2975; + rType = 0; + vrLen = 1580; + vrLoc = 2195; + }; + ECF4BC451143498C00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECE5BAAA10EF6E4800B7EDDD /* test.c */; + name = "test.c: 65"; + rLen = 0; + rLoc = 1630; + rType = 0; + vrLen = 752; + vrLoc = 1525; + }; + ECF4BC461143498C00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */; + name = "test_transport.h: 200"; + rLen = 0; + rLoc = 5325; + rType = 0; + vrLen = 1417; + vrLoc = 1934; + }; + ECF4BC5711434A7100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD71143287400B7C09B /* tnet_utils.c */; + name = "tnet_utils.c: 724"; + rLen = 0; + rLoc = 20942; + rType = 0; + vrLen = 1162; + vrLoc = 20196; + }; + ECF4BC5E11434A7100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD21143287400B7C09B /* tnet_transport.c */; + name = "tnet_transport.c: 60"; + rLen = 0; + rLoc = 1811; + rType = 0; + vrLen = 1031; + vrLoc = 930; + }; + ECF4BC6111434A7E00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD71143287400B7C09B /* tnet_utils.c */; + name = "tnet_utils.c: 718"; + rLen = 0; + rLoc = 20858; + rType = 0; + vrLen = 1798; + vrLoc = 19560; + }; + ECF4BC6311434A8700B7C09B /* tnet_transport_poll.c */ = { + isa = PBXFileReference; + 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}, {1859, 8008}}"; + sepNavSelRange = "{9650, 0}"; + sepNavVisRange = "{9230, 1076}"; + }; + }; + ECF4BC6511434A8700B7C09B /* tnet_transport_poll.c:414 */ = { + isa = PBXFileBreakpoint; + actions = ( + ); + breakpointStyle = 0; + continueAfterActions = 0; + countType = 0; + delayBeforeContinue = 0; + fileReference = ECF4BC6311434A8700B7C09B /* tnet_transport_poll.c */; + functionName = "tnet_transport_mainthread()"; + hitCount = 0; + ignoreCount = 0; + lineNumber = 414; + location = libtinyNET.dylib; + modificationTime = 289622682.622463; + state = 1; + }; + ECF4BC6B11434AB500B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BAD21143287400B7C09B /* tnet_transport.c */; + name = "tnet_transport.c: 58"; + rLen = 0; + rLoc = 1811; + rType = 0; + vrLen = 1431; + vrLoc = 954; }; } diff --git a/trunk/xcode/tinyNET/tinyNET.xcodeproj/project.pbxproj b/trunk/xcode/tinyNET/tinyNET.xcodeproj/project.pbxproj index 92a85a5a..37fc56ce 100644 --- a/trunk/xcode/tinyNET/tinyNET.xcodeproj/project.pbxproj +++ b/trunk/xcode/tinyNET/tinyNET.xcodeproj/project.pbxproj @@ -11,84 +11,6 @@ EC9A8D3A1124B7C90046F5EC /* tsk_ppfcs32.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D361124B7C90046F5EC /* tsk_ppfcs32.h */; }; EC9A8D3B1124B7C90046F5EC /* tsk_uuid.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D371124B7C90046F5EC /* tsk_uuid.c */; }; EC9A8D3C1124B7C90046F5EC /* tsk_uuid.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D381124B7C90046F5EC /* tsk_uuid.h */; }; - EC9A8D991124B8160046F5EC /* tnet_dhcp.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D441124B8160046F5EC /* tnet_dhcp.c */; }; - EC9A8D9A1124B8160046F5EC /* tnet_dhcp.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D451124B8160046F5EC /* tnet_dhcp.h */; }; - EC9A8D9B1124B8160046F5EC /* tnet_dhcp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */; }; - EC9A8D9C1124B8160046F5EC /* tnet_dhcp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */; }; - EC9A8D9D1124B8160046F5EC /* tnet_dhcp_option.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D481124B8160046F5EC /* tnet_dhcp_option.c */; }; - EC9A8D9E1124B8160046F5EC /* tnet_dhcp_option.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D491124B8160046F5EC /* tnet_dhcp_option.h */; }; - EC9A8D9F1124B8160046F5EC /* tnet_dhcp_option_sip.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D4A1124B8160046F5EC /* tnet_dhcp_option_sip.c */; }; - EC9A8DA01124B8160046F5EC /* tnet_dhcp_option_sip.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D4B1124B8160046F5EC /* tnet_dhcp_option_sip.h */; }; - EC9A8DA11124B8160046F5EC /* tnet_dhcp6.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D4D1124B8160046F5EC /* tnet_dhcp6.c */; }; - EC9A8DA21124B8160046F5EC /* tnet_dhcp6.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D4E1124B8160046F5EC /* tnet_dhcp6.h */; }; - EC9A8DA31124B8160046F5EC /* tnet_dhcp6_duid.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D4F1124B8160046F5EC /* tnet_dhcp6_duid.c */; }; - EC9A8DA41124B8160046F5EC /* tnet_dhcp6_duid.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D501124B8160046F5EC /* tnet_dhcp6_duid.h */; }; - EC9A8DA51124B8160046F5EC /* tnet_dhcp6_message.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D511124B8160046F5EC /* tnet_dhcp6_message.c */; }; - EC9A8DA61124B8160046F5EC /* tnet_dhcp6_message.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D521124B8160046F5EC /* tnet_dhcp6_message.h */; }; - EC9A8DA71124B8160046F5EC /* tnet_dhcp6_option.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D531124B8160046F5EC /* tnet_dhcp6_option.c */; }; - EC9A8DA81124B8160046F5EC /* tnet_dhcp6_option.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D541124B8160046F5EC /* tnet_dhcp6_option.h */; }; - EC9A8DA91124B8160046F5EC /* tnet_dns.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D561124B8160046F5EC /* tnet_dns.c */; }; - EC9A8DAA1124B8160046F5EC /* tnet_dns.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D571124B8160046F5EC /* tnet_dns.h */; }; - EC9A8DAB1124B8160046F5EC /* tnet_dns_a.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D581124B8160046F5EC /* tnet_dns_a.c */; }; - EC9A8DAC1124B8160046F5EC /* tnet_dns_a.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D591124B8160046F5EC /* tnet_dns_a.h */; }; - EC9A8DAD1124B8160046F5EC /* tnet_dns_aaaa.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D5A1124B8160046F5EC /* tnet_dns_aaaa.c */; }; - EC9A8DAE1124B8160046F5EC /* tnet_dns_aaaa.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D5B1124B8160046F5EC /* tnet_dns_aaaa.h */; }; - EC9A8DAF1124B8160046F5EC /* tnet_dns_cname.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D5C1124B8160046F5EC /* tnet_dns_cname.c */; }; - EC9A8DB01124B8160046F5EC /* tnet_dns_cname.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D5D1124B8160046F5EC /* tnet_dns_cname.h */; }; - EC9A8DB11124B8160046F5EC /* tnet_dns_message.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D5E1124B8160046F5EC /* tnet_dns_message.c */; }; - EC9A8DB21124B8160046F5EC /* tnet_dns_message.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D5F1124B8160046F5EC /* tnet_dns_message.h */; }; - EC9A8DB31124B8160046F5EC /* tnet_dns_mx.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D601124B8160046F5EC /* tnet_dns_mx.c */; }; - EC9A8DB41124B8160046F5EC /* tnet_dns_mx.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D611124B8160046F5EC /* tnet_dns_mx.h */; }; - EC9A8DB51124B8160046F5EC /* tnet_dns_naptr.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D621124B8160046F5EC /* tnet_dns_naptr.c */; }; - EC9A8DB61124B8160046F5EC /* tnet_dns_naptr.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D631124B8160046F5EC /* tnet_dns_naptr.h */; }; - EC9A8DB71124B8160046F5EC /* tnet_dns_ns.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D641124B8160046F5EC /* tnet_dns_ns.c */; }; - EC9A8DB81124B8160046F5EC /* tnet_dns_ns.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D651124B8160046F5EC /* tnet_dns_ns.h */; }; - EC9A8DB91124B8160046F5EC /* tnet_dns_opt.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D661124B8160046F5EC /* tnet_dns_opt.c */; }; - EC9A8DBA1124B8160046F5EC /* tnet_dns_opt.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D671124B8160046F5EC /* tnet_dns_opt.h */; }; - EC9A8DBB1124B8160046F5EC /* tnet_dns_ptr.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D681124B8160046F5EC /* tnet_dns_ptr.c */; }; - EC9A8DBC1124B8160046F5EC /* tnet_dns_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D691124B8160046F5EC /* tnet_dns_ptr.h */; }; - EC9A8DBD1124B8160046F5EC /* tnet_dns_rr.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D6A1124B8160046F5EC /* tnet_dns_rr.c */; }; - EC9A8DBE1124B8160046F5EC /* tnet_dns_rr.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D6B1124B8160046F5EC /* tnet_dns_rr.h */; }; - EC9A8DBF1124B8160046F5EC /* tnet_dns_soa.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D6C1124B8160046F5EC /* tnet_dns_soa.c */; }; - EC9A8DC01124B8160046F5EC /* tnet_dns_soa.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D6D1124B8160046F5EC /* tnet_dns_soa.h */; }; - EC9A8DC11124B8160046F5EC /* tnet_dns_srv.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D6E1124B8160046F5EC /* tnet_dns_srv.c */; }; - EC9A8DC21124B8160046F5EC /* tnet_dns_srv.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D6F1124B8160046F5EC /* tnet_dns_srv.h */; }; - EC9A8DC31124B8160046F5EC /* tnet_dns_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D701124B8160046F5EC /* tnet_dns_txt.c */; }; - EC9A8DC41124B8160046F5EC /* tnet_dns_txt.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D711124B8160046F5EC /* tnet_dns_txt.h */; }; - EC9A8DC51124B8160046F5EC /* tnet_ice.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D731124B8160046F5EC /* tnet_ice.c */; }; - EC9A8DC61124B8160046F5EC /* tnet_ice.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D741124B8160046F5EC /* tnet_ice.h */; }; - EC9A8DC81124B8160046F5EC /* tnet_stun.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D781124B8160046F5EC /* tnet_stun.c */; }; - EC9A8DC91124B8160046F5EC /* tnet_stun.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D791124B8160046F5EC /* tnet_stun.h */; }; - EC9A8DCA1124B8160046F5EC /* tnet_stun_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D7A1124B8160046F5EC /* tnet_stun_attribute.c */; }; - EC9A8DCB1124B8160046F5EC /* tnet_stun_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D7B1124B8160046F5EC /* tnet_stun_attribute.h */; }; - EC9A8DCC1124B8160046F5EC /* tnet_stun_message.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D7C1124B8160046F5EC /* tnet_stun_message.c */; }; - EC9A8DCD1124B8160046F5EC /* tnet_stun_message.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D7D1124B8160046F5EC /* tnet_stun_message.h */; }; - EC9A8DCE1124B8160046F5EC /* tinyNET_config.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D7E1124B8160046F5EC /* tinyNET_config.h */; }; - EC9A8DCF1124B8160046F5EC /* tnet.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D7F1124B8160046F5EC /* tnet.c */; }; - EC9A8DD01124B8160046F5EC /* tnet.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D801124B8160046F5EC /* tnet.h */; }; - EC9A8DD11124B8160046F5EC /* tnet_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D811124B8160046F5EC /* tnet_auth.c */; }; - EC9A8DD21124B8160046F5EC /* tnet_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D821124B8160046F5EC /* tnet_auth.h */; }; - EC9A8DD31124B8160046F5EC /* tnet_hardwares.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D831124B8160046F5EC /* tnet_hardwares.h */; }; - EC9A8DD41124B8160046F5EC /* tnet_nat.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D841124B8160046F5EC /* tnet_nat.c */; }; - EC9A8DD51124B8160046F5EC /* tnet_nat.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D851124B8160046F5EC /* tnet_nat.h */; }; - EC9A8DD61124B8160046F5EC /* tnet_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D861124B8160046F5EC /* tnet_poll.c */; }; - EC9A8DD71124B8160046F5EC /* tnet_poll.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D871124B8160046F5EC /* tnet_poll.h */; }; - EC9A8DD81124B8160046F5EC /* tnet_proto.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D881124B8160046F5EC /* tnet_proto.h */; }; - EC9A8DD91124B8160046F5EC /* tnet_socket.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D891124B8160046F5EC /* tnet_socket.c */; }; - EC9A8DDA1124B8160046F5EC /* tnet_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D8A1124B8160046F5EC /* tnet_socket.h */; }; - EC9A8DDB1124B8160046F5EC /* tnet_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D8B1124B8160046F5EC /* tnet_transport.c */; }; - EC9A8DDC1124B8160046F5EC /* tnet_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D8C1124B8160046F5EC /* tnet_transport.h */; }; - EC9A8DDD1124B8160046F5EC /* tnet_transport_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D8D1124B8160046F5EC /* tnet_transport_poll.c */; }; - EC9A8DDE1124B8160046F5EC /* tnet_transport_win32.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D8E1124B8160046F5EC /* tnet_transport_win32.c */; }; - EC9A8DDF1124B8160046F5EC /* tnet_types.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D8F1124B8160046F5EC /* tnet_types.h */; }; - EC9A8DE01124B8160046F5EC /* tnet_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D901124B8160046F5EC /* tnet_utils.c */; }; - EC9A8DE11124B8160046F5EC /* tnet_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D911124B8160046F5EC /* tnet_utils.h */; }; - EC9A8DE21124B8160046F5EC /* tnet_turn.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D931124B8160046F5EC /* tnet_turn.c */; }; - EC9A8DE31124B8160046F5EC /* tnet_turn.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D941124B8160046F5EC /* tnet_turn.h */; }; - EC9A8DE41124B8160046F5EC /* tnet_turn_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D951124B8160046F5EC /* tnet_turn_attribute.c */; }; - EC9A8DE51124B8160046F5EC /* tnet_turn_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D961124B8160046F5EC /* tnet_turn_attribute.h */; }; - EC9A8DE61124B8160046F5EC /* tnet_turn_message.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D971124B8160046F5EC /* tnet_turn_message.c */; }; - EC9A8DE71124B8160046F5EC /* tnet_turn_message.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D981124B8160046F5EC /* tnet_turn_message.h */; }; ECE5B91610EF65EF00B7EDDD /* tinyNET_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5B90610EF65EF00B7EDDD /* tinyNET_config.h */; }; ECE5B91810EF65EF00B7EDDD /* tnet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5B90810EF65EF00B7EDDD /* tnet.h */; }; ECE5B91A10EF65EF00B7EDDD /* tnet_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5B90A10EF65EF00B7EDDD /* tnet_auth.h */; }; @@ -111,13 +33,10 @@ ECE5BA5510EF6D8500B7EDDD /* tsk_debug.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2010EF6D8500B7EDDD /* tsk_debug.c */; }; ECE5BA5610EF6D8500B7EDDD /* tsk_debug.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2110EF6D8500B7EDDD /* tsk_debug.h */; }; ECE5BA5710EF6D8500B7EDDD /* tsk_errno.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2210EF6D8500B7EDDD /* tsk_errno.h */; }; - ECE5BA5810EF6D8500B7EDDD /* tsk_heap.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2310EF6D8500B7EDDD /* tsk_heap.c */; }; - ECE5BA5910EF6D8500B7EDDD /* tsk_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2410EF6D8500B7EDDD /* tsk_heap.h */; }; ECE5BA5A10EF6D8500B7EDDD /* tsk_hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2510EF6D8500B7EDDD /* tsk_hmac.c */; }; ECE5BA5B10EF6D8500B7EDDD /* tsk_hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2610EF6D8500B7EDDD /* tsk_hmac.h */; }; ECE5BA5C10EF6D8500B7EDDD /* tsk_list.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2710EF6D8500B7EDDD /* tsk_list.c */; }; ECE5BA5D10EF6D8500B7EDDD /* tsk_list.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2810EF6D8500B7EDDD /* tsk_list.h */; }; - ECE5BA5E10EF6D8500B7EDDD /* tsk_macros.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2910EF6D8500B7EDDD /* tsk_macros.h */; }; ECE5BA5F10EF6D8500B7EDDD /* tsk_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2A10EF6D8500B7EDDD /* tsk_md5.c */; }; ECE5BA6010EF6D8500B7EDDD /* tsk_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2B10EF6D8500B7EDDD /* tsk_md5.h */; }; ECE5BA6110EF6D8500B7EDDD /* tsk_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2C10EF6D8500B7EDDD /* tsk_memory.c */; }; @@ -155,6 +74,86 @@ ECE5BAA510EF6E2500B7EDDD /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECE5B98410EF6B6F00B7EDDD /* libtinySAK.dylib */; }; ECE5BAAF10EF6E4800B7EDDD /* stdafx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BAA710EF6E4800B7EDDD /* stdafx.c */; }; ECE5BAB010EF6E4800B7EDDD /* test.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BAAA10EF6E4800B7EDDD /* test.c */; }; + ECF4BAE01143287500B7C09B /* tnet_dhcp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BA881143287400B7C09B /* tnet_dhcp.c */; }; + ECF4BAE11143287500B7C09B /* tnet_dhcp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BA891143287400B7C09B /* tnet_dhcp.h */; }; + ECF4BAE21143287500B7C09B /* tnet_dhcp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BA8A1143287400B7C09B /* tnet_dhcp_message.c */; }; + ECF4BAE31143287500B7C09B /* tnet_dhcp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BA8B1143287400B7C09B /* tnet_dhcp_message.h */; }; + ECF4BAE41143287500B7C09B /* tnet_dhcp_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BA8C1143287400B7C09B /* tnet_dhcp_option.c */; }; + ECF4BAE51143287500B7C09B /* tnet_dhcp_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BA8D1143287400B7C09B /* tnet_dhcp_option.h */; }; + ECF4BAE61143287500B7C09B /* tnet_dhcp_option_sip.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BA8E1143287400B7C09B /* tnet_dhcp_option_sip.c */; }; + ECF4BAE71143287500B7C09B /* tnet_dhcp_option_sip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BA8F1143287400B7C09B /* tnet_dhcp_option_sip.h */; }; + ECF4BAE81143287500B7C09B /* tnet_dhcp6.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BA911143287400B7C09B /* tnet_dhcp6.c */; }; + ECF4BAE91143287500B7C09B /* tnet_dhcp6.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BA921143287400B7C09B /* tnet_dhcp6.h */; }; + ECF4BAEA1143287500B7C09B /* tnet_dhcp6_duid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BA931143287400B7C09B /* tnet_dhcp6_duid.c */; }; + ECF4BAEB1143287500B7C09B /* tnet_dhcp6_duid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BA941143287400B7C09B /* tnet_dhcp6_duid.h */; }; + ECF4BAEC1143287500B7C09B /* tnet_dhcp6_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BA951143287400B7C09B /* tnet_dhcp6_message.c */; }; + ECF4BAED1143287500B7C09B /* tnet_dhcp6_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BA961143287400B7C09B /* tnet_dhcp6_message.h */; }; + ECF4BAEE1143287500B7C09B /* tnet_dhcp6_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BA971143287400B7C09B /* tnet_dhcp6_option.c */; }; + ECF4BAEF1143287500B7C09B /* tnet_dhcp6_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BA981143287400B7C09B /* tnet_dhcp6_option.h */; }; + ECF4BAF01143287500B7C09B /* tnet_dns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BA9A1143287400B7C09B /* tnet_dns.c */; }; + ECF4BAF11143287500B7C09B /* tnet_dns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BA9B1143287400B7C09B /* tnet_dns.h */; }; + ECF4BAF21143287500B7C09B /* tnet_dns_a.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BA9C1143287400B7C09B /* tnet_dns_a.c */; }; + ECF4BAF31143287500B7C09B /* tnet_dns_a.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BA9D1143287400B7C09B /* tnet_dns_a.h */; }; + ECF4BAF41143287500B7C09B /* tnet_dns_aaaa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BA9E1143287400B7C09B /* tnet_dns_aaaa.c */; }; + ECF4BAF51143287500B7C09B /* tnet_dns_aaaa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BA9F1143287400B7C09B /* tnet_dns_aaaa.h */; }; + ECF4BAF61143287500B7C09B /* tnet_dns_cname.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAA01143287400B7C09B /* tnet_dns_cname.c */; }; + ECF4BAF71143287500B7C09B /* tnet_dns_cname.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAA11143287400B7C09B /* tnet_dns_cname.h */; }; + ECF4BAF81143287500B7C09B /* tnet_dns_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAA21143287400B7C09B /* tnet_dns_message.c */; }; + ECF4BAF91143287500B7C09B /* tnet_dns_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAA31143287400B7C09B /* tnet_dns_message.h */; }; + ECF4BAFA1143287500B7C09B /* tnet_dns_mx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAA41143287400B7C09B /* tnet_dns_mx.c */; }; + ECF4BAFB1143287500B7C09B /* tnet_dns_mx.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAA51143287400B7C09B /* tnet_dns_mx.h */; }; + ECF4BAFC1143287500B7C09B /* tnet_dns_naptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAA61143287400B7C09B /* tnet_dns_naptr.c */; }; + ECF4BAFD1143287500B7C09B /* tnet_dns_naptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAA71143287400B7C09B /* tnet_dns_naptr.h */; }; + ECF4BAFE1143287500B7C09B /* tnet_dns_ns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAA81143287400B7C09B /* tnet_dns_ns.c */; }; + ECF4BAFF1143287500B7C09B /* tnet_dns_ns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAA91143287400B7C09B /* tnet_dns_ns.h */; }; + ECF4BB001143287500B7C09B /* tnet_dns_opt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAAA1143287400B7C09B /* tnet_dns_opt.c */; }; + ECF4BB011143287500B7C09B /* tnet_dns_opt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAAB1143287400B7C09B /* tnet_dns_opt.h */; }; + ECF4BB021143287500B7C09B /* tnet_dns_ptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAAC1143287400B7C09B /* tnet_dns_ptr.c */; }; + ECF4BB031143287500B7C09B /* tnet_dns_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAAD1143287400B7C09B /* tnet_dns_ptr.h */; }; + ECF4BB041143287500B7C09B /* tnet_dns_rr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAAE1143287400B7C09B /* tnet_dns_rr.c */; }; + ECF4BB051143287500B7C09B /* tnet_dns_rr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAAF1143287400B7C09B /* tnet_dns_rr.h */; }; + ECF4BB061143287500B7C09B /* tnet_dns_soa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAB01143287400B7C09B /* tnet_dns_soa.c */; }; + ECF4BB071143287500B7C09B /* tnet_dns_soa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAB11143287400B7C09B /* tnet_dns_soa.h */; }; + ECF4BB081143287500B7C09B /* tnet_dns_srv.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAB21143287400B7C09B /* tnet_dns_srv.c */; }; + ECF4BB091143287500B7C09B /* tnet_dns_srv.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAB31143287400B7C09B /* tnet_dns_srv.h */; }; + ECF4BB0A1143287500B7C09B /* tnet_dns_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAB41143287400B7C09B /* tnet_dns_txt.c */; }; + ECF4BB0B1143287500B7C09B /* tnet_dns_txt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAB51143287400B7C09B /* tnet_dns_txt.h */; }; + ECF4BB0C1143287500B7C09B /* tnet_ice.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAB71143287400B7C09B /* tnet_ice.c */; }; + ECF4BB0D1143287500B7C09B /* tnet_ice.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAB81143287400B7C09B /* tnet_ice.h */; }; + ECF4BB0F1143287500B7C09B /* tnet_stun.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BABC1143287400B7C09B /* tnet_stun.c */; }; + ECF4BB101143287500B7C09B /* tnet_stun.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BABD1143287400B7C09B /* tnet_stun.h */; }; + ECF4BB111143287500B7C09B /* tnet_stun_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BABE1143287400B7C09B /* tnet_stun_attribute.c */; }; + ECF4BB121143287500B7C09B /* tnet_stun_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BABF1143287400B7C09B /* tnet_stun_attribute.h */; }; + ECF4BB131143287500B7C09B /* tnet_stun_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAC01143287400B7C09B /* tnet_stun_message.c */; }; + ECF4BB141143287500B7C09B /* tnet_stun_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAC11143287400B7C09B /* tnet_stun_message.h */; }; + ECF4BB151143287500B7C09B /* tinyNET_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAC21143287400B7C09B /* tinyNET_config.h */; }; + ECF4BB161143287500B7C09B /* tnet_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAC41143287400B7C09B /* tnet_tls.c */; }; + ECF4BB171143287500B7C09B /* tnet_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAC51143287400B7C09B /* tnet_tls.h */; }; + ECF4BB181143287500B7C09B /* tnet.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAC61143287400B7C09B /* tnet.c */; }; + ECF4BB191143287500B7C09B /* tnet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAC71143287400B7C09B /* tnet.h */; }; + ECF4BB1A1143287500B7C09B /* tnet_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAC81143287400B7C09B /* tnet_auth.c */; }; + ECF4BB1B1143287500B7C09B /* tnet_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAC91143287400B7C09B /* tnet_auth.h */; }; + ECF4BB1C1143287500B7C09B /* tnet_hardwares.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BACA1143287400B7C09B /* tnet_hardwares.h */; }; + ECF4BB1D1143287500B7C09B /* tnet_nat.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BACB1143287400B7C09B /* tnet_nat.c */; }; + ECF4BB1E1143287500B7C09B /* tnet_nat.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BACC1143287400B7C09B /* tnet_nat.h */; }; + ECF4BB1F1143287500B7C09B /* tnet_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BACD1143287400B7C09B /* tnet_poll.c */; }; + ECF4BB201143287500B7C09B /* tnet_poll.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BACE1143287400B7C09B /* tnet_poll.h */; }; + ECF4BB211143287500B7C09B /* tnet_proto.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BACF1143287400B7C09B /* tnet_proto.h */; }; + ECF4BB221143287500B7C09B /* tnet_socket.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAD01143287400B7C09B /* tnet_socket.c */; }; + ECF4BB231143287500B7C09B /* tnet_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAD11143287400B7C09B /* tnet_socket.h */; }; + ECF4BB241143287500B7C09B /* tnet_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAD21143287400B7C09B /* tnet_transport.c */; }; + ECF4BB251143287500B7C09B /* tnet_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAD31143287400B7C09B /* tnet_transport.h */; }; + ECF4BB261143287500B7C09B /* tnet_transport_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAD41143287400B7C09B /* tnet_transport_poll.c */; }; + ECF4BB271143287500B7C09B /* tnet_transport_win32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAD51143287400B7C09B /* tnet_transport_win32.c */; }; + ECF4BB281143287500B7C09B /* tnet_types.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAD61143287400B7C09B /* tnet_types.h */; }; + ECF4BB291143287500B7C09B /* tnet_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BAD71143287400B7C09B /* tnet_utils.c */; }; + ECF4BB2A1143287500B7C09B /* tnet_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BAD81143287400B7C09B /* tnet_utils.h */; }; + ECF4BB2B1143287500B7C09B /* tnet_turn.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BADA1143287400B7C09B /* tnet_turn.c */; }; + ECF4BB2C1143287500B7C09B /* tnet_turn.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BADB1143287400B7C09B /* tnet_turn.h */; }; + ECF4BB2D1143287500B7C09B /* tnet_turn_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BADC1143287400B7C09B /* tnet_turn_attribute.c */; }; + ECF4BB2E1143287500B7C09B /* tnet_turn_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BADD1143287400B7C09B /* tnet_turn_attribute.h */; }; + ECF4BB2F1143287500B7C09B /* tnet_turn_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BADE1143287400B7C09B /* tnet_turn_message.c */; }; + ECF4BB301143287500B7C09B /* tnet_turn_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BADF1143287400B7C09B /* tnet_turn_message.h */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -193,84 +192,6 @@ EC9A8D361124B7C90046F5EC /* tsk_ppfcs32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_ppfcs32.h; path = ../../tinySAK/src/tsk_ppfcs32.h; sourceTree = SOURCE_ROOT; }; EC9A8D371124B7C90046F5EC /* tsk_uuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_uuid.c; path = ../../tinySAK/src/tsk_uuid.c; sourceTree = SOURCE_ROOT; }; EC9A8D381124B7C90046F5EC /* tsk_uuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_uuid.h; path = ../../tinySAK/src/tsk_uuid.h; sourceTree = SOURCE_ROOT; }; - EC9A8D441124B8160046F5EC /* tnet_dhcp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp.c; sourceTree = ""; }; - EC9A8D451124B8160046F5EC /* tnet_dhcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp.h; sourceTree = ""; }; - EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_message.c; sourceTree = ""; }; - EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_message.h; sourceTree = ""; }; - EC9A8D481124B8160046F5EC /* tnet_dhcp_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option.c; sourceTree = ""; }; - EC9A8D491124B8160046F5EC /* tnet_dhcp_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option.h; sourceTree = ""; }; - EC9A8D4A1124B8160046F5EC /* tnet_dhcp_option_sip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option_sip.c; sourceTree = ""; }; - EC9A8D4B1124B8160046F5EC /* tnet_dhcp_option_sip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option_sip.h; sourceTree = ""; }; - EC9A8D4D1124B8160046F5EC /* tnet_dhcp6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6.c; sourceTree = ""; }; - EC9A8D4E1124B8160046F5EC /* tnet_dhcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6.h; sourceTree = ""; }; - EC9A8D4F1124B8160046F5EC /* tnet_dhcp6_duid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_duid.c; sourceTree = ""; }; - EC9A8D501124B8160046F5EC /* tnet_dhcp6_duid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_duid.h; sourceTree = ""; }; - EC9A8D511124B8160046F5EC /* tnet_dhcp6_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_message.c; sourceTree = ""; }; - EC9A8D521124B8160046F5EC /* tnet_dhcp6_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_message.h; sourceTree = ""; }; - EC9A8D531124B8160046F5EC /* tnet_dhcp6_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_option.c; sourceTree = ""; }; - EC9A8D541124B8160046F5EC /* tnet_dhcp6_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_option.h; sourceTree = ""; }; - EC9A8D561124B8160046F5EC /* tnet_dns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns.c; sourceTree = ""; }; - EC9A8D571124B8160046F5EC /* tnet_dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns.h; sourceTree = ""; }; - EC9A8D581124B8160046F5EC /* tnet_dns_a.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_a.c; sourceTree = ""; }; - EC9A8D591124B8160046F5EC /* tnet_dns_a.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_a.h; sourceTree = ""; }; - EC9A8D5A1124B8160046F5EC /* tnet_dns_aaaa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_aaaa.c; sourceTree = ""; }; - EC9A8D5B1124B8160046F5EC /* tnet_dns_aaaa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_aaaa.h; sourceTree = ""; }; - EC9A8D5C1124B8160046F5EC /* tnet_dns_cname.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_cname.c; sourceTree = ""; }; - EC9A8D5D1124B8160046F5EC /* tnet_dns_cname.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_cname.h; sourceTree = ""; }; - EC9A8D5E1124B8160046F5EC /* tnet_dns_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_message.c; sourceTree = ""; }; - EC9A8D5F1124B8160046F5EC /* tnet_dns_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_message.h; sourceTree = ""; }; - EC9A8D601124B8160046F5EC /* tnet_dns_mx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_mx.c; sourceTree = ""; }; - EC9A8D611124B8160046F5EC /* tnet_dns_mx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_mx.h; sourceTree = ""; }; - EC9A8D621124B8160046F5EC /* tnet_dns_naptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_naptr.c; sourceTree = ""; }; - EC9A8D631124B8160046F5EC /* tnet_dns_naptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_naptr.h; sourceTree = ""; }; - EC9A8D641124B8160046F5EC /* tnet_dns_ns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ns.c; sourceTree = ""; }; - EC9A8D651124B8160046F5EC /* tnet_dns_ns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ns.h; sourceTree = ""; }; - EC9A8D661124B8160046F5EC /* tnet_dns_opt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_opt.c; sourceTree = ""; }; - EC9A8D671124B8160046F5EC /* tnet_dns_opt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_opt.h; sourceTree = ""; }; - EC9A8D681124B8160046F5EC /* tnet_dns_ptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ptr.c; sourceTree = ""; }; - EC9A8D691124B8160046F5EC /* tnet_dns_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ptr.h; sourceTree = ""; }; - EC9A8D6A1124B8160046F5EC /* tnet_dns_rr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_rr.c; sourceTree = ""; }; - EC9A8D6B1124B8160046F5EC /* tnet_dns_rr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_rr.h; sourceTree = ""; }; - EC9A8D6C1124B8160046F5EC /* tnet_dns_soa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_soa.c; sourceTree = ""; }; - EC9A8D6D1124B8160046F5EC /* tnet_dns_soa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_soa.h; sourceTree = ""; }; - EC9A8D6E1124B8160046F5EC /* tnet_dns_srv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_srv.c; sourceTree = ""; }; - EC9A8D6F1124B8160046F5EC /* tnet_dns_srv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_srv.h; sourceTree = ""; }; - EC9A8D701124B8160046F5EC /* tnet_dns_txt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_txt.c; sourceTree = ""; }; - EC9A8D711124B8160046F5EC /* tnet_dns_txt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_txt.h; sourceTree = ""; }; - EC9A8D731124B8160046F5EC /* tnet_ice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_ice.c; sourceTree = ""; }; - EC9A8D741124B8160046F5EC /* tnet_ice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_ice.h; sourceTree = ""; }; - EC9A8D781124B8160046F5EC /* tnet_stun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun.c; sourceTree = ""; }; - EC9A8D791124B8160046F5EC /* tnet_stun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun.h; sourceTree = ""; }; - EC9A8D7A1124B8160046F5EC /* tnet_stun_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_attribute.c; sourceTree = ""; }; - EC9A8D7B1124B8160046F5EC /* tnet_stun_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_attribute.h; sourceTree = ""; }; - EC9A8D7C1124B8160046F5EC /* tnet_stun_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_message.c; sourceTree = ""; }; - EC9A8D7D1124B8160046F5EC /* tnet_stun_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_message.h; sourceTree = ""; }; - EC9A8D7E1124B8160046F5EC /* tinyNET_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyNET_config.h; sourceTree = ""; }; - EC9A8D7F1124B8160046F5EC /* tnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet.c; sourceTree = ""; }; - EC9A8D801124B8160046F5EC /* tnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet.h; sourceTree = ""; }; - EC9A8D811124B8160046F5EC /* tnet_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_auth.c; sourceTree = ""; }; - EC9A8D821124B8160046F5EC /* tnet_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_auth.h; sourceTree = ""; }; - EC9A8D831124B8160046F5EC /* tnet_hardwares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_hardwares.h; sourceTree = ""; }; - EC9A8D841124B8160046F5EC /* tnet_nat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_nat.c; sourceTree = ""; }; - EC9A8D851124B8160046F5EC /* tnet_nat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_nat.h; sourceTree = ""; }; - EC9A8D861124B8160046F5EC /* tnet_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_poll.c; sourceTree = ""; }; - EC9A8D871124B8160046F5EC /* tnet_poll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_poll.h; sourceTree = ""; }; - EC9A8D881124B8160046F5EC /* tnet_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_proto.h; sourceTree = ""; }; - EC9A8D891124B8160046F5EC /* tnet_socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_socket.c; sourceTree = ""; }; - EC9A8D8A1124B8160046F5EC /* tnet_socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_socket.h; sourceTree = ""; }; - EC9A8D8B1124B8160046F5EC /* tnet_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport.c; sourceTree = ""; }; - EC9A8D8C1124B8160046F5EC /* tnet_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_transport.h; sourceTree = ""; }; - EC9A8D8D1124B8160046F5EC /* tnet_transport_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_poll.c; sourceTree = ""; }; - EC9A8D8E1124B8160046F5EC /* tnet_transport_win32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_win32.c; sourceTree = ""; }; - EC9A8D8F1124B8160046F5EC /* tnet_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_types.h; sourceTree = ""; }; - EC9A8D901124B8160046F5EC /* tnet_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_utils.c; sourceTree = ""; }; - EC9A8D911124B8160046F5EC /* tnet_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_utils.h; sourceTree = ""; }; - EC9A8D931124B8160046F5EC /* tnet_turn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn.c; sourceTree = ""; }; - EC9A8D941124B8160046F5EC /* tnet_turn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn.h; sourceTree = ""; }; - EC9A8D951124B8160046F5EC /* tnet_turn_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_attribute.c; sourceTree = ""; }; - EC9A8D961124B8160046F5EC /* tnet_turn_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_attribute.h; sourceTree = ""; }; - EC9A8D971124B8160046F5EC /* tnet_turn_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_message.c; sourceTree = ""; }; - EC9A8D981124B8160046F5EC /* tnet_turn_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_message.h; sourceTree = ""; }; ECE5B90610EF65EF00B7EDDD /* tinyNET_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tinyNET_config.h; path = ../../tinyNET/src/tinyNET_config.h; sourceTree = SOURCE_ROOT; }; ECE5B90810EF65EF00B7EDDD /* tnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tnet.h; path = ../../tinyNET/src/tnet.h; sourceTree = SOURCE_ROOT; }; ECE5B90A10EF65EF00B7EDDD /* tnet_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tnet_auth.h; path = ../../tinyNET/src/tnet_auth.h; sourceTree = SOURCE_ROOT; }; @@ -294,13 +215,10 @@ ECE5BA2010EF6D8500B7EDDD /* tsk_debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_debug.c; path = ../../tinySAK/src/tsk_debug.c; sourceTree = SOURCE_ROOT; }; ECE5BA2110EF6D8500B7EDDD /* tsk_debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_debug.h; path = ../../tinySAK/src/tsk_debug.h; sourceTree = SOURCE_ROOT; }; ECE5BA2210EF6D8500B7EDDD /* tsk_errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_errno.h; path = ../../tinySAK/src/tsk_errno.h; sourceTree = SOURCE_ROOT; }; - ECE5BA2310EF6D8500B7EDDD /* tsk_heap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_heap.c; path = ../../tinySAK/src/tsk_heap.c; sourceTree = SOURCE_ROOT; }; - ECE5BA2410EF6D8500B7EDDD /* tsk_heap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_heap.h; path = ../../tinySAK/src/tsk_heap.h; sourceTree = SOURCE_ROOT; }; ECE5BA2510EF6D8500B7EDDD /* tsk_hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_hmac.c; path = ../../tinySAK/src/tsk_hmac.c; sourceTree = SOURCE_ROOT; }; ECE5BA2610EF6D8500B7EDDD /* tsk_hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_hmac.h; path = ../../tinySAK/src/tsk_hmac.h; sourceTree = SOURCE_ROOT; }; ECE5BA2710EF6D8500B7EDDD /* tsk_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_list.c; path = ../../tinySAK/src/tsk_list.c; sourceTree = SOURCE_ROOT; }; ECE5BA2810EF6D8500B7EDDD /* tsk_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_list.h; path = ../../tinySAK/src/tsk_list.h; sourceTree = SOURCE_ROOT; }; - ECE5BA2910EF6D8500B7EDDD /* tsk_macros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_macros.h; path = ../../tinySAK/src/tsk_macros.h; sourceTree = SOURCE_ROOT; }; ECE5BA2A10EF6D8500B7EDDD /* tsk_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_md5.c; path = ../../tinySAK/src/tsk_md5.c; sourceTree = SOURCE_ROOT; }; ECE5BA2B10EF6D8500B7EDDD /* tsk_md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_md5.h; path = ../../tinySAK/src/tsk_md5.h; sourceTree = SOURCE_ROOT; }; ECE5BA2C10EF6D8500B7EDDD /* tsk_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_memory.c; path = ../../tinySAK/src/tsk_memory.c; sourceTree = SOURCE_ROOT; }; @@ -342,6 +260,87 @@ ECE5BAAC10EF6E4800B7EDDD /* test_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_auth.h; path = ../../tinyNET/test/test_auth.h; sourceTree = SOURCE_ROOT; }; ECE5BAAD10EF6E4800B7EDDD /* test_sockets.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_sockets.h; path = ../../tinyNET/test/test_sockets.h; sourceTree = SOURCE_ROOT; }; ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_transport.h; path = ../../tinyNET/test/test_transport.h; sourceTree = SOURCE_ROOT; }; + ECF4BA881143287400B7C09B /* tnet_dhcp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp.c; sourceTree = ""; }; + ECF4BA891143287400B7C09B /* tnet_dhcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp.h; sourceTree = ""; }; + ECF4BA8A1143287400B7C09B /* tnet_dhcp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_message.c; sourceTree = ""; }; + ECF4BA8B1143287400B7C09B /* tnet_dhcp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_message.h; sourceTree = ""; }; + ECF4BA8C1143287400B7C09B /* tnet_dhcp_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option.c; sourceTree = ""; }; + ECF4BA8D1143287400B7C09B /* tnet_dhcp_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option.h; sourceTree = ""; }; + ECF4BA8E1143287400B7C09B /* tnet_dhcp_option_sip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option_sip.c; sourceTree = ""; }; + ECF4BA8F1143287400B7C09B /* tnet_dhcp_option_sip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option_sip.h; sourceTree = ""; }; + ECF4BA911143287400B7C09B /* tnet_dhcp6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6.c; sourceTree = ""; }; + ECF4BA921143287400B7C09B /* tnet_dhcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6.h; sourceTree = ""; }; + ECF4BA931143287400B7C09B /* tnet_dhcp6_duid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_duid.c; sourceTree = ""; }; + ECF4BA941143287400B7C09B /* tnet_dhcp6_duid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_duid.h; sourceTree = ""; }; + ECF4BA951143287400B7C09B /* tnet_dhcp6_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_message.c; sourceTree = ""; }; + ECF4BA961143287400B7C09B /* tnet_dhcp6_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_message.h; sourceTree = ""; }; + ECF4BA971143287400B7C09B /* tnet_dhcp6_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_option.c; sourceTree = ""; }; + ECF4BA981143287400B7C09B /* tnet_dhcp6_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_option.h; sourceTree = ""; }; + ECF4BA9A1143287400B7C09B /* tnet_dns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns.c; sourceTree = ""; }; + ECF4BA9B1143287400B7C09B /* tnet_dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns.h; sourceTree = ""; }; + ECF4BA9C1143287400B7C09B /* tnet_dns_a.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_a.c; sourceTree = ""; }; + ECF4BA9D1143287400B7C09B /* tnet_dns_a.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_a.h; sourceTree = ""; }; + ECF4BA9E1143287400B7C09B /* tnet_dns_aaaa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_aaaa.c; sourceTree = ""; }; + ECF4BA9F1143287400B7C09B /* tnet_dns_aaaa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_aaaa.h; sourceTree = ""; }; + ECF4BAA01143287400B7C09B /* tnet_dns_cname.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_cname.c; sourceTree = ""; }; + ECF4BAA11143287400B7C09B /* tnet_dns_cname.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_cname.h; sourceTree = ""; }; + ECF4BAA21143287400B7C09B /* tnet_dns_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_message.c; sourceTree = ""; }; + ECF4BAA31143287400B7C09B /* tnet_dns_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_message.h; sourceTree = ""; }; + ECF4BAA41143287400B7C09B /* tnet_dns_mx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_mx.c; sourceTree = ""; }; + ECF4BAA51143287400B7C09B /* tnet_dns_mx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_mx.h; sourceTree = ""; }; + ECF4BAA61143287400B7C09B /* tnet_dns_naptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_naptr.c; sourceTree = ""; }; + ECF4BAA71143287400B7C09B /* tnet_dns_naptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_naptr.h; sourceTree = ""; }; + ECF4BAA81143287400B7C09B /* tnet_dns_ns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ns.c; sourceTree = ""; }; + ECF4BAA91143287400B7C09B /* tnet_dns_ns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ns.h; sourceTree = ""; }; + ECF4BAAA1143287400B7C09B /* tnet_dns_opt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_opt.c; sourceTree = ""; }; + ECF4BAAB1143287400B7C09B /* tnet_dns_opt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_opt.h; sourceTree = ""; }; + ECF4BAAC1143287400B7C09B /* tnet_dns_ptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ptr.c; sourceTree = ""; }; + ECF4BAAD1143287400B7C09B /* tnet_dns_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ptr.h; sourceTree = ""; }; + ECF4BAAE1143287400B7C09B /* tnet_dns_rr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_rr.c; sourceTree = ""; }; + ECF4BAAF1143287400B7C09B /* tnet_dns_rr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_rr.h; sourceTree = ""; }; + ECF4BAB01143287400B7C09B /* tnet_dns_soa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_soa.c; sourceTree = ""; }; + ECF4BAB11143287400B7C09B /* tnet_dns_soa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_soa.h; sourceTree = ""; }; + ECF4BAB21143287400B7C09B /* tnet_dns_srv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_srv.c; sourceTree = ""; }; + ECF4BAB31143287400B7C09B /* tnet_dns_srv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_srv.h; sourceTree = ""; }; + ECF4BAB41143287400B7C09B /* tnet_dns_txt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_txt.c; sourceTree = ""; }; + ECF4BAB51143287400B7C09B /* tnet_dns_txt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_txt.h; sourceTree = ""; }; + ECF4BAB71143287400B7C09B /* tnet_ice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_ice.c; sourceTree = ""; }; + ECF4BAB81143287400B7C09B /* tnet_ice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_ice.h; sourceTree = ""; }; + ECF4BAB91143287400B7C09B /* makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = makefile; sourceTree = ""; }; + ECF4BABC1143287400B7C09B /* tnet_stun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun.c; sourceTree = ""; }; + ECF4BABD1143287400B7C09B /* tnet_stun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun.h; sourceTree = ""; }; + ECF4BABE1143287400B7C09B /* tnet_stun_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_attribute.c; sourceTree = ""; }; + ECF4BABF1143287400B7C09B /* tnet_stun_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_attribute.h; sourceTree = ""; }; + ECF4BAC01143287400B7C09B /* tnet_stun_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_message.c; sourceTree = ""; }; + ECF4BAC11143287400B7C09B /* tnet_stun_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_message.h; sourceTree = ""; }; + ECF4BAC21143287400B7C09B /* tinyNET_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyNET_config.h; sourceTree = ""; }; + ECF4BAC41143287400B7C09B /* tnet_tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_tls.c; sourceTree = ""; }; + ECF4BAC51143287400B7C09B /* tnet_tls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_tls.h; sourceTree = ""; }; + ECF4BAC61143287400B7C09B /* tnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet.c; sourceTree = ""; }; + ECF4BAC71143287400B7C09B /* tnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet.h; sourceTree = ""; }; + ECF4BAC81143287400B7C09B /* tnet_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_auth.c; sourceTree = ""; }; + ECF4BAC91143287400B7C09B /* tnet_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_auth.h; sourceTree = ""; }; + ECF4BACA1143287400B7C09B /* tnet_hardwares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_hardwares.h; sourceTree = ""; }; + ECF4BACB1143287400B7C09B /* tnet_nat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_nat.c; sourceTree = ""; }; + ECF4BACC1143287400B7C09B /* tnet_nat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_nat.h; sourceTree = ""; }; + ECF4BACD1143287400B7C09B /* tnet_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_poll.c; sourceTree = ""; }; + ECF4BACE1143287400B7C09B /* tnet_poll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_poll.h; sourceTree = ""; }; + ECF4BACF1143287400B7C09B /* tnet_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_proto.h; sourceTree = ""; }; + ECF4BAD01143287400B7C09B /* tnet_socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_socket.c; sourceTree = ""; }; + ECF4BAD11143287400B7C09B /* tnet_socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_socket.h; sourceTree = ""; }; + ECF4BAD21143287400B7C09B /* tnet_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport.c; sourceTree = ""; }; + ECF4BAD31143287400B7C09B /* tnet_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_transport.h; sourceTree = ""; }; + ECF4BAD41143287400B7C09B /* tnet_transport_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_poll.c; sourceTree = ""; }; + ECF4BAD51143287400B7C09B /* tnet_transport_win32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_win32.c; sourceTree = ""; }; + ECF4BAD61143287400B7C09B /* tnet_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_types.h; sourceTree = ""; }; + ECF4BAD71143287400B7C09B /* tnet_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_utils.c; sourceTree = ""; }; + ECF4BAD81143287400B7C09B /* tnet_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_utils.h; sourceTree = ""; }; + ECF4BADA1143287400B7C09B /* tnet_turn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn.c; sourceTree = ""; }; + ECF4BADB1143287400B7C09B /* tnet_turn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn.h; sourceTree = ""; }; + ECF4BADC1143287400B7C09B /* tnet_turn_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_attribute.c; sourceTree = ""; }; + ECF4BADD1143287400B7C09B /* tnet_turn_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_attribute.h; sourceTree = ""; }; + ECF4BADE1143287400B7C09B /* tnet_turn_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_message.c; sourceTree = ""; }; + ECF4BADF1143287400B7C09B /* tnet_turn_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_message.h; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -375,7 +374,7 @@ 08FB7794FE84155DC02AAC07 /* tinyNET */ = { isa = PBXGroup; children = ( - EC9A8D421124B8160046F5EC /* src */, + ECF4BA861143287400B7C09B /* src */, ECE5BA9810EF6E0600B7EDDD /* test */, ECE5BA1410EF6D5500B7EDDD /* tinySAK */, ECE5B90310EF65C200B7EDDD /* include */, @@ -394,148 +393,6 @@ name = Products; sourceTree = ""; }; - EC9A8D421124B8160046F5EC /* src */ = { - isa = PBXGroup; - children = ( - EC9A8D431124B8160046F5EC /* dhcp */, - EC9A8D4C1124B8160046F5EC /* dhcp6 */, - EC9A8D551124B8160046F5EC /* dns */, - EC9A8D721124B8160046F5EC /* ice */, - EC9A8D761124B8160046F5EC /* parsers */, - EC9A8D771124B8160046F5EC /* stun */, - EC9A8D7E1124B8160046F5EC /* tinyNET_config.h */, - EC9A8D7F1124B8160046F5EC /* tnet.c */, - EC9A8D801124B8160046F5EC /* tnet.h */, - EC9A8D811124B8160046F5EC /* tnet_auth.c */, - EC9A8D821124B8160046F5EC /* tnet_auth.h */, - EC9A8D831124B8160046F5EC /* tnet_hardwares.h */, - EC9A8D841124B8160046F5EC /* tnet_nat.c */, - EC9A8D851124B8160046F5EC /* tnet_nat.h */, - EC9A8D861124B8160046F5EC /* tnet_poll.c */, - EC9A8D871124B8160046F5EC /* tnet_poll.h */, - EC9A8D881124B8160046F5EC /* tnet_proto.h */, - EC9A8D891124B8160046F5EC /* tnet_socket.c */, - EC9A8D8A1124B8160046F5EC /* tnet_socket.h */, - EC9A8D8B1124B8160046F5EC /* tnet_transport.c */, - EC9A8D8C1124B8160046F5EC /* tnet_transport.h */, - EC9A8D8D1124B8160046F5EC /* tnet_transport_poll.c */, - EC9A8D8E1124B8160046F5EC /* tnet_transport_win32.c */, - EC9A8D8F1124B8160046F5EC /* tnet_types.h */, - EC9A8D901124B8160046F5EC /* tnet_utils.c */, - EC9A8D911124B8160046F5EC /* tnet_utils.h */, - EC9A8D921124B8160046F5EC /* turn */, - ); - name = src; - path = ../../tinyNET/src; - sourceTree = SOURCE_ROOT; - }; - EC9A8D431124B8160046F5EC /* dhcp */ = { - isa = PBXGroup; - children = ( - EC9A8D441124B8160046F5EC /* tnet_dhcp.c */, - EC9A8D451124B8160046F5EC /* tnet_dhcp.h */, - EC9A8D461124B8160046F5EC /* tnet_dhcp_message.c */, - EC9A8D471124B8160046F5EC /* tnet_dhcp_message.h */, - EC9A8D481124B8160046F5EC /* tnet_dhcp_option.c */, - EC9A8D491124B8160046F5EC /* tnet_dhcp_option.h */, - EC9A8D4A1124B8160046F5EC /* tnet_dhcp_option_sip.c */, - EC9A8D4B1124B8160046F5EC /* tnet_dhcp_option_sip.h */, - ); - path = dhcp; - sourceTree = ""; - }; - EC9A8D4C1124B8160046F5EC /* dhcp6 */ = { - isa = PBXGroup; - children = ( - EC9A8D4D1124B8160046F5EC /* tnet_dhcp6.c */, - EC9A8D4E1124B8160046F5EC /* tnet_dhcp6.h */, - EC9A8D4F1124B8160046F5EC /* tnet_dhcp6_duid.c */, - EC9A8D501124B8160046F5EC /* tnet_dhcp6_duid.h */, - EC9A8D511124B8160046F5EC /* tnet_dhcp6_message.c */, - EC9A8D521124B8160046F5EC /* tnet_dhcp6_message.h */, - EC9A8D531124B8160046F5EC /* tnet_dhcp6_option.c */, - EC9A8D541124B8160046F5EC /* tnet_dhcp6_option.h */, - ); - path = dhcp6; - sourceTree = ""; - }; - EC9A8D551124B8160046F5EC /* dns */ = { - isa = PBXGroup; - children = ( - EC9A8D561124B8160046F5EC /* tnet_dns.c */, - EC9A8D571124B8160046F5EC /* tnet_dns.h */, - EC9A8D581124B8160046F5EC /* tnet_dns_a.c */, - EC9A8D591124B8160046F5EC /* tnet_dns_a.h */, - EC9A8D5A1124B8160046F5EC /* tnet_dns_aaaa.c */, - EC9A8D5B1124B8160046F5EC /* tnet_dns_aaaa.h */, - EC9A8D5C1124B8160046F5EC /* tnet_dns_cname.c */, - EC9A8D5D1124B8160046F5EC /* tnet_dns_cname.h */, - EC9A8D5E1124B8160046F5EC /* tnet_dns_message.c */, - EC9A8D5F1124B8160046F5EC /* tnet_dns_message.h */, - EC9A8D601124B8160046F5EC /* tnet_dns_mx.c */, - EC9A8D611124B8160046F5EC /* tnet_dns_mx.h */, - EC9A8D621124B8160046F5EC /* tnet_dns_naptr.c */, - EC9A8D631124B8160046F5EC /* tnet_dns_naptr.h */, - EC9A8D641124B8160046F5EC /* tnet_dns_ns.c */, - EC9A8D651124B8160046F5EC /* tnet_dns_ns.h */, - EC9A8D661124B8160046F5EC /* tnet_dns_opt.c */, - EC9A8D671124B8160046F5EC /* tnet_dns_opt.h */, - EC9A8D681124B8160046F5EC /* tnet_dns_ptr.c */, - EC9A8D691124B8160046F5EC /* tnet_dns_ptr.h */, - EC9A8D6A1124B8160046F5EC /* tnet_dns_rr.c */, - EC9A8D6B1124B8160046F5EC /* tnet_dns_rr.h */, - EC9A8D6C1124B8160046F5EC /* tnet_dns_soa.c */, - EC9A8D6D1124B8160046F5EC /* tnet_dns_soa.h */, - EC9A8D6E1124B8160046F5EC /* tnet_dns_srv.c */, - EC9A8D6F1124B8160046F5EC /* tnet_dns_srv.h */, - EC9A8D701124B8160046F5EC /* tnet_dns_txt.c */, - EC9A8D711124B8160046F5EC /* tnet_dns_txt.h */, - ); - path = dns; - sourceTree = ""; - }; - EC9A8D721124B8160046F5EC /* ice */ = { - isa = PBXGroup; - children = ( - EC9A8D731124B8160046F5EC /* tnet_ice.c */, - EC9A8D741124B8160046F5EC /* tnet_ice.h */, - ); - path = ice; - sourceTree = ""; - }; - EC9A8D761124B8160046F5EC /* parsers */ = { - isa = PBXGroup; - children = ( - ); - path = parsers; - sourceTree = ""; - }; - EC9A8D771124B8160046F5EC /* stun */ = { - isa = PBXGroup; - children = ( - EC9A8D781124B8160046F5EC /* tnet_stun.c */, - EC9A8D791124B8160046F5EC /* tnet_stun.h */, - EC9A8D7A1124B8160046F5EC /* tnet_stun_attribute.c */, - EC9A8D7B1124B8160046F5EC /* tnet_stun_attribute.h */, - EC9A8D7C1124B8160046F5EC /* tnet_stun_message.c */, - EC9A8D7D1124B8160046F5EC /* tnet_stun_message.h */, - ); - path = stun; - sourceTree = ""; - }; - EC9A8D921124B8160046F5EC /* turn */ = { - isa = PBXGroup; - children = ( - EC9A8D931124B8160046F5EC /* tnet_turn.c */, - EC9A8D941124B8160046F5EC /* tnet_turn.h */, - EC9A8D951124B8160046F5EC /* tnet_turn_attribute.c */, - EC9A8D961124B8160046F5EC /* tnet_turn_attribute.h */, - EC9A8D971124B8160046F5EC /* tnet_turn_message.c */, - EC9A8D981124B8160046F5EC /* tnet_turn_message.h */, - ); - path = turn; - sourceTree = ""; - }; ECE5B90310EF65C200B7EDDD /* include */ = { isa = PBXGroup; children = ( @@ -572,13 +429,10 @@ ECE5BA2010EF6D8500B7EDDD /* tsk_debug.c */, ECE5BA2110EF6D8500B7EDDD /* tsk_debug.h */, ECE5BA2210EF6D8500B7EDDD /* tsk_errno.h */, - ECE5BA2310EF6D8500B7EDDD /* tsk_heap.c */, - ECE5BA2410EF6D8500B7EDDD /* tsk_heap.h */, ECE5BA2510EF6D8500B7EDDD /* tsk_hmac.c */, ECE5BA2610EF6D8500B7EDDD /* tsk_hmac.h */, ECE5BA2710EF6D8500B7EDDD /* tsk_list.c */, ECE5BA2810EF6D8500B7EDDD /* tsk_list.h */, - ECE5BA2910EF6D8500B7EDDD /* tsk_macros.h */, ECE5BA2A10EF6D8500B7EDDD /* tsk_md5.c */, ECE5BA2B10EF6D8500B7EDDD /* tsk_md5.h */, ECE5BA2C10EF6D8500B7EDDD /* tsk_memory.c */, @@ -636,6 +490,159 @@ name = test; sourceTree = ""; }; + ECF4BA861143287400B7C09B /* src */ = { + isa = PBXGroup; + children = ( + ECF4BA871143287400B7C09B /* dhcp */, + ECF4BA901143287400B7C09B /* dhcp6 */, + ECF4BA991143287400B7C09B /* dns */, + ECF4BAB61143287400B7C09B /* ice */, + ECF4BAB91143287400B7C09B /* makefile */, + ECF4BABA1143287400B7C09B /* parsers */, + ECF4BABB1143287400B7C09B /* stun */, + ECF4BAC21143287400B7C09B /* tinyNET_config.h */, + ECF4BAC31143287400B7C09B /* tls */, + ECF4BAC61143287400B7C09B /* tnet.c */, + ECF4BAC71143287400B7C09B /* tnet.h */, + ECF4BAC81143287400B7C09B /* tnet_auth.c */, + ECF4BAC91143287400B7C09B /* tnet_auth.h */, + ECF4BACA1143287400B7C09B /* tnet_hardwares.h */, + ECF4BACB1143287400B7C09B /* tnet_nat.c */, + ECF4BACC1143287400B7C09B /* tnet_nat.h */, + ECF4BACD1143287400B7C09B /* tnet_poll.c */, + ECF4BACE1143287400B7C09B /* tnet_poll.h */, + ECF4BACF1143287400B7C09B /* tnet_proto.h */, + ECF4BAD01143287400B7C09B /* tnet_socket.c */, + ECF4BAD11143287400B7C09B /* tnet_socket.h */, + ECF4BAD21143287400B7C09B /* tnet_transport.c */, + ECF4BAD31143287400B7C09B /* tnet_transport.h */, + ECF4BAD41143287400B7C09B /* tnet_transport_poll.c */, + ECF4BAD51143287400B7C09B /* tnet_transport_win32.c */, + ECF4BAD61143287400B7C09B /* tnet_types.h */, + ECF4BAD71143287400B7C09B /* tnet_utils.c */, + ECF4BAD81143287400B7C09B /* tnet_utils.h */, + ECF4BAD91143287400B7C09B /* turn */, + ); + name = src; + path = ../../tinyNET/src; + sourceTree = SOURCE_ROOT; + }; + ECF4BA871143287400B7C09B /* dhcp */ = { + isa = PBXGroup; + children = ( + ECF4BA881143287400B7C09B /* tnet_dhcp.c */, + ECF4BA891143287400B7C09B /* tnet_dhcp.h */, + ECF4BA8A1143287400B7C09B /* tnet_dhcp_message.c */, + ECF4BA8B1143287400B7C09B /* tnet_dhcp_message.h */, + ECF4BA8C1143287400B7C09B /* tnet_dhcp_option.c */, + ECF4BA8D1143287400B7C09B /* tnet_dhcp_option.h */, + ECF4BA8E1143287400B7C09B /* tnet_dhcp_option_sip.c */, + ECF4BA8F1143287400B7C09B /* tnet_dhcp_option_sip.h */, + ); + path = dhcp; + sourceTree = ""; + }; + ECF4BA901143287400B7C09B /* dhcp6 */ = { + isa = PBXGroup; + children = ( + ECF4BA911143287400B7C09B /* tnet_dhcp6.c */, + ECF4BA921143287400B7C09B /* tnet_dhcp6.h */, + ECF4BA931143287400B7C09B /* tnet_dhcp6_duid.c */, + ECF4BA941143287400B7C09B /* tnet_dhcp6_duid.h */, + ECF4BA951143287400B7C09B /* tnet_dhcp6_message.c */, + ECF4BA961143287400B7C09B /* tnet_dhcp6_message.h */, + ECF4BA971143287400B7C09B /* tnet_dhcp6_option.c */, + ECF4BA981143287400B7C09B /* tnet_dhcp6_option.h */, + ); + path = dhcp6; + sourceTree = ""; + }; + ECF4BA991143287400B7C09B /* dns */ = { + isa = PBXGroup; + children = ( + ECF4BA9A1143287400B7C09B /* tnet_dns.c */, + ECF4BA9B1143287400B7C09B /* tnet_dns.h */, + ECF4BA9C1143287400B7C09B /* tnet_dns_a.c */, + ECF4BA9D1143287400B7C09B /* tnet_dns_a.h */, + ECF4BA9E1143287400B7C09B /* tnet_dns_aaaa.c */, + ECF4BA9F1143287400B7C09B /* tnet_dns_aaaa.h */, + ECF4BAA01143287400B7C09B /* tnet_dns_cname.c */, + ECF4BAA11143287400B7C09B /* tnet_dns_cname.h */, + ECF4BAA21143287400B7C09B /* tnet_dns_message.c */, + ECF4BAA31143287400B7C09B /* tnet_dns_message.h */, + ECF4BAA41143287400B7C09B /* tnet_dns_mx.c */, + ECF4BAA51143287400B7C09B /* tnet_dns_mx.h */, + ECF4BAA61143287400B7C09B /* tnet_dns_naptr.c */, + ECF4BAA71143287400B7C09B /* tnet_dns_naptr.h */, + ECF4BAA81143287400B7C09B /* tnet_dns_ns.c */, + ECF4BAA91143287400B7C09B /* tnet_dns_ns.h */, + ECF4BAAA1143287400B7C09B /* tnet_dns_opt.c */, + ECF4BAAB1143287400B7C09B /* tnet_dns_opt.h */, + ECF4BAAC1143287400B7C09B /* tnet_dns_ptr.c */, + ECF4BAAD1143287400B7C09B /* tnet_dns_ptr.h */, + ECF4BAAE1143287400B7C09B /* tnet_dns_rr.c */, + ECF4BAAF1143287400B7C09B /* tnet_dns_rr.h */, + ECF4BAB01143287400B7C09B /* tnet_dns_soa.c */, + ECF4BAB11143287400B7C09B /* tnet_dns_soa.h */, + ECF4BAB21143287400B7C09B /* tnet_dns_srv.c */, + ECF4BAB31143287400B7C09B /* tnet_dns_srv.h */, + ECF4BAB41143287400B7C09B /* tnet_dns_txt.c */, + ECF4BAB51143287400B7C09B /* tnet_dns_txt.h */, + ); + path = dns; + sourceTree = ""; + }; + ECF4BAB61143287400B7C09B /* ice */ = { + isa = PBXGroup; + children = ( + ECF4BAB71143287400B7C09B /* tnet_ice.c */, + ECF4BAB81143287400B7C09B /* tnet_ice.h */, + ); + path = ice; + sourceTree = ""; + }; + ECF4BABA1143287400B7C09B /* parsers */ = { + isa = PBXGroup; + children = ( + ); + path = parsers; + sourceTree = ""; + }; + ECF4BABB1143287400B7C09B /* stun */ = { + isa = PBXGroup; + children = ( + ECF4BABC1143287400B7C09B /* tnet_stun.c */, + ECF4BABD1143287400B7C09B /* tnet_stun.h */, + ECF4BABE1143287400B7C09B /* tnet_stun_attribute.c */, + ECF4BABF1143287400B7C09B /* tnet_stun_attribute.h */, + ECF4BAC01143287400B7C09B /* tnet_stun_message.c */, + ECF4BAC11143287400B7C09B /* tnet_stun_message.h */, + ); + path = stun; + sourceTree = ""; + }; + ECF4BAC31143287400B7C09B /* tls */ = { + isa = PBXGroup; + children = ( + ECF4BAC41143287400B7C09B /* tnet_tls.c */, + ECF4BAC51143287400B7C09B /* tnet_tls.h */, + ); + path = tls; + sourceTree = ""; + }; + ECF4BAD91143287400B7C09B /* turn */ = { + isa = PBXGroup; + children = ( + ECF4BADA1143287400B7C09B /* tnet_turn.c */, + ECF4BADB1143287400B7C09B /* tnet_turn.h */, + ECF4BADC1143287400B7C09B /* tnet_turn_attribute.c */, + ECF4BADD1143287400B7C09B /* tnet_turn_attribute.h */, + ECF4BADE1143287400B7C09B /* tnet_turn_message.c */, + ECF4BADF1143287400B7C09B /* tnet_turn_message.h */, + ); + path = turn; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -651,46 +658,47 @@ ECE5B92010EF65F000B7EDDD /* tnet_transport.h in Headers */, ECE5B92310EF65F000B7EDDD /* tnet_types.h in Headers */, ECE5B92510EF65F000B7EDDD /* tnet_utils.h in Headers */, - EC9A8D9A1124B8160046F5EC /* tnet_dhcp.h in Headers */, - EC9A8D9C1124B8160046F5EC /* tnet_dhcp_message.h in Headers */, - EC9A8D9E1124B8160046F5EC /* tnet_dhcp_option.h in Headers */, - EC9A8DA01124B8160046F5EC /* tnet_dhcp_option_sip.h in Headers */, - EC9A8DA21124B8160046F5EC /* tnet_dhcp6.h in Headers */, - EC9A8DA41124B8160046F5EC /* tnet_dhcp6_duid.h in Headers */, - EC9A8DA61124B8160046F5EC /* tnet_dhcp6_message.h in Headers */, - EC9A8DA81124B8160046F5EC /* tnet_dhcp6_option.h in Headers */, - EC9A8DAA1124B8160046F5EC /* tnet_dns.h in Headers */, - EC9A8DAC1124B8160046F5EC /* tnet_dns_a.h in Headers */, - EC9A8DAE1124B8160046F5EC /* tnet_dns_aaaa.h in Headers */, - EC9A8DB01124B8160046F5EC /* tnet_dns_cname.h in Headers */, - EC9A8DB21124B8160046F5EC /* tnet_dns_message.h in Headers */, - EC9A8DB41124B8160046F5EC /* tnet_dns_mx.h in Headers */, - EC9A8DB61124B8160046F5EC /* tnet_dns_naptr.h in Headers */, - EC9A8DB81124B8160046F5EC /* tnet_dns_ns.h in Headers */, - EC9A8DBA1124B8160046F5EC /* tnet_dns_opt.h in Headers */, - EC9A8DBC1124B8160046F5EC /* tnet_dns_ptr.h in Headers */, - EC9A8DBE1124B8160046F5EC /* tnet_dns_rr.h in Headers */, - EC9A8DC01124B8160046F5EC /* tnet_dns_soa.h in Headers */, - EC9A8DC21124B8160046F5EC /* tnet_dns_srv.h in Headers */, - EC9A8DC41124B8160046F5EC /* tnet_dns_txt.h in Headers */, - EC9A8DC61124B8160046F5EC /* tnet_ice.h in Headers */, - EC9A8DC91124B8160046F5EC /* tnet_stun.h in Headers */, - EC9A8DCB1124B8160046F5EC /* tnet_stun_attribute.h in Headers */, - EC9A8DCD1124B8160046F5EC /* tnet_stun_message.h in Headers */, - EC9A8DCE1124B8160046F5EC /* tinyNET_config.h in Headers */, - EC9A8DD01124B8160046F5EC /* tnet.h in Headers */, - EC9A8DD21124B8160046F5EC /* tnet_auth.h in Headers */, - EC9A8DD31124B8160046F5EC /* tnet_hardwares.h in Headers */, - EC9A8DD51124B8160046F5EC /* tnet_nat.h in Headers */, - EC9A8DD71124B8160046F5EC /* tnet_poll.h in Headers */, - EC9A8DD81124B8160046F5EC /* tnet_proto.h in Headers */, - EC9A8DDA1124B8160046F5EC /* tnet_socket.h in Headers */, - EC9A8DDC1124B8160046F5EC /* tnet_transport.h in Headers */, - EC9A8DDF1124B8160046F5EC /* tnet_types.h in Headers */, - EC9A8DE11124B8160046F5EC /* tnet_utils.h in Headers */, - EC9A8DE31124B8160046F5EC /* tnet_turn.h in Headers */, - EC9A8DE51124B8160046F5EC /* tnet_turn_attribute.h in Headers */, - EC9A8DE71124B8160046F5EC /* tnet_turn_message.h in Headers */, + ECF4BAE11143287500B7C09B /* tnet_dhcp.h in Headers */, + ECF4BAE31143287500B7C09B /* tnet_dhcp_message.h in Headers */, + ECF4BAE51143287500B7C09B /* tnet_dhcp_option.h in Headers */, + ECF4BAE71143287500B7C09B /* tnet_dhcp_option_sip.h in Headers */, + ECF4BAE91143287500B7C09B /* tnet_dhcp6.h in Headers */, + ECF4BAEB1143287500B7C09B /* tnet_dhcp6_duid.h in Headers */, + ECF4BAED1143287500B7C09B /* tnet_dhcp6_message.h in Headers */, + ECF4BAEF1143287500B7C09B /* tnet_dhcp6_option.h in Headers */, + ECF4BAF11143287500B7C09B /* tnet_dns.h in Headers */, + ECF4BAF31143287500B7C09B /* tnet_dns_a.h in Headers */, + ECF4BAF51143287500B7C09B /* tnet_dns_aaaa.h in Headers */, + ECF4BAF71143287500B7C09B /* tnet_dns_cname.h in Headers */, + ECF4BAF91143287500B7C09B /* tnet_dns_message.h in Headers */, + ECF4BAFB1143287500B7C09B /* tnet_dns_mx.h in Headers */, + ECF4BAFD1143287500B7C09B /* tnet_dns_naptr.h in Headers */, + ECF4BAFF1143287500B7C09B /* tnet_dns_ns.h in Headers */, + ECF4BB011143287500B7C09B /* tnet_dns_opt.h in Headers */, + ECF4BB031143287500B7C09B /* tnet_dns_ptr.h in Headers */, + ECF4BB051143287500B7C09B /* tnet_dns_rr.h in Headers */, + ECF4BB071143287500B7C09B /* tnet_dns_soa.h in Headers */, + ECF4BB091143287500B7C09B /* tnet_dns_srv.h in Headers */, + ECF4BB0B1143287500B7C09B /* tnet_dns_txt.h in Headers */, + ECF4BB0D1143287500B7C09B /* tnet_ice.h in Headers */, + ECF4BB101143287500B7C09B /* tnet_stun.h in Headers */, + ECF4BB121143287500B7C09B /* tnet_stun_attribute.h in Headers */, + ECF4BB141143287500B7C09B /* tnet_stun_message.h in Headers */, + ECF4BB151143287500B7C09B /* tinyNET_config.h in Headers */, + ECF4BB171143287500B7C09B /* tnet_tls.h in Headers */, + ECF4BB191143287500B7C09B /* tnet.h in Headers */, + ECF4BB1B1143287500B7C09B /* tnet_auth.h in Headers */, + ECF4BB1C1143287500B7C09B /* tnet_hardwares.h in Headers */, + ECF4BB1E1143287500B7C09B /* tnet_nat.h in Headers */, + ECF4BB201143287500B7C09B /* tnet_poll.h in Headers */, + ECF4BB211143287500B7C09B /* tnet_proto.h in Headers */, + ECF4BB231143287500B7C09B /* tnet_socket.h in Headers */, + ECF4BB251143287500B7C09B /* tnet_transport.h in Headers */, + ECF4BB281143287500B7C09B /* tnet_types.h in Headers */, + ECF4BB2A1143287500B7C09B /* tnet_utils.h in Headers */, + ECF4BB2C1143287500B7C09B /* tnet_turn.h in Headers */, + ECF4BB2E1143287500B7C09B /* tnet_turn_attribute.h in Headers */, + ECF4BB301143287500B7C09B /* tnet_turn_message.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -706,10 +714,8 @@ ECE5BA5410EF6D8500B7EDDD /* tsk_condwait.h in Headers */, ECE5BA5610EF6D8500B7EDDD /* tsk_debug.h in Headers */, ECE5BA5710EF6D8500B7EDDD /* tsk_errno.h in Headers */, - ECE5BA5910EF6D8500B7EDDD /* tsk_heap.h in Headers */, ECE5BA5B10EF6D8500B7EDDD /* tsk_hmac.h in Headers */, ECE5BA5D10EF6D8500B7EDDD /* tsk_list.h in Headers */, - ECE5BA5E10EF6D8500B7EDDD /* tsk_macros.h in Headers */, ECE5BA6010EF6D8500B7EDDD /* tsk_md5.h in Headers */, ECE5BA6210EF6D8500B7EDDD /* tsk_memory.h in Headers */, ECE5BA6410EF6D8500B7EDDD /* tsk_mutex.h in Headers */, @@ -811,44 +817,45 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - EC9A8D991124B8160046F5EC /* tnet_dhcp.c in Sources */, - EC9A8D9B1124B8160046F5EC /* tnet_dhcp_message.c in Sources */, - EC9A8D9D1124B8160046F5EC /* tnet_dhcp_option.c in Sources */, - EC9A8D9F1124B8160046F5EC /* tnet_dhcp_option_sip.c in Sources */, - EC9A8DA11124B8160046F5EC /* tnet_dhcp6.c in Sources */, - EC9A8DA31124B8160046F5EC /* tnet_dhcp6_duid.c in Sources */, - EC9A8DA51124B8160046F5EC /* tnet_dhcp6_message.c in Sources */, - EC9A8DA71124B8160046F5EC /* tnet_dhcp6_option.c in Sources */, - EC9A8DA91124B8160046F5EC /* tnet_dns.c in Sources */, - EC9A8DAB1124B8160046F5EC /* tnet_dns_a.c in Sources */, - EC9A8DAD1124B8160046F5EC /* tnet_dns_aaaa.c in Sources */, - EC9A8DAF1124B8160046F5EC /* tnet_dns_cname.c in Sources */, - EC9A8DB11124B8160046F5EC /* tnet_dns_message.c in Sources */, - EC9A8DB31124B8160046F5EC /* tnet_dns_mx.c in Sources */, - EC9A8DB51124B8160046F5EC /* tnet_dns_naptr.c in Sources */, - EC9A8DB71124B8160046F5EC /* tnet_dns_ns.c in Sources */, - EC9A8DB91124B8160046F5EC /* tnet_dns_opt.c in Sources */, - EC9A8DBB1124B8160046F5EC /* tnet_dns_ptr.c in Sources */, - EC9A8DBD1124B8160046F5EC /* tnet_dns_rr.c in Sources */, - EC9A8DBF1124B8160046F5EC /* tnet_dns_soa.c in Sources */, - EC9A8DC11124B8160046F5EC /* tnet_dns_srv.c in Sources */, - EC9A8DC31124B8160046F5EC /* tnet_dns_txt.c in Sources */, - EC9A8DC51124B8160046F5EC /* tnet_ice.c in Sources */, - EC9A8DC81124B8160046F5EC /* tnet_stun.c in Sources */, - EC9A8DCA1124B8160046F5EC /* tnet_stun_attribute.c in Sources */, - EC9A8DCC1124B8160046F5EC /* tnet_stun_message.c in Sources */, - EC9A8DCF1124B8160046F5EC /* tnet.c in Sources */, - EC9A8DD11124B8160046F5EC /* tnet_auth.c in Sources */, - EC9A8DD41124B8160046F5EC /* tnet_nat.c in Sources */, - EC9A8DD61124B8160046F5EC /* tnet_poll.c in Sources */, - EC9A8DD91124B8160046F5EC /* tnet_socket.c in Sources */, - EC9A8DDB1124B8160046F5EC /* tnet_transport.c in Sources */, - EC9A8DDD1124B8160046F5EC /* tnet_transport_poll.c in Sources */, - EC9A8DDE1124B8160046F5EC /* tnet_transport_win32.c in Sources */, - EC9A8DE01124B8160046F5EC /* tnet_utils.c in Sources */, - EC9A8DE21124B8160046F5EC /* tnet_turn.c in Sources */, - EC9A8DE41124B8160046F5EC /* tnet_turn_attribute.c in Sources */, - EC9A8DE61124B8160046F5EC /* tnet_turn_message.c in Sources */, + ECF4BAE01143287500B7C09B /* tnet_dhcp.c in Sources */, + ECF4BAE21143287500B7C09B /* tnet_dhcp_message.c in Sources */, + ECF4BAE41143287500B7C09B /* tnet_dhcp_option.c in Sources */, + ECF4BAE61143287500B7C09B /* tnet_dhcp_option_sip.c in Sources */, + ECF4BAE81143287500B7C09B /* tnet_dhcp6.c in Sources */, + ECF4BAEA1143287500B7C09B /* tnet_dhcp6_duid.c in Sources */, + ECF4BAEC1143287500B7C09B /* tnet_dhcp6_message.c in Sources */, + ECF4BAEE1143287500B7C09B /* tnet_dhcp6_option.c in Sources */, + ECF4BAF01143287500B7C09B /* tnet_dns.c in Sources */, + ECF4BAF21143287500B7C09B /* tnet_dns_a.c in Sources */, + ECF4BAF41143287500B7C09B /* tnet_dns_aaaa.c in Sources */, + ECF4BAF61143287500B7C09B /* tnet_dns_cname.c in Sources */, + ECF4BAF81143287500B7C09B /* tnet_dns_message.c in Sources */, + ECF4BAFA1143287500B7C09B /* tnet_dns_mx.c in Sources */, + ECF4BAFC1143287500B7C09B /* tnet_dns_naptr.c in Sources */, + ECF4BAFE1143287500B7C09B /* tnet_dns_ns.c in Sources */, + ECF4BB001143287500B7C09B /* tnet_dns_opt.c in Sources */, + ECF4BB021143287500B7C09B /* tnet_dns_ptr.c in Sources */, + ECF4BB041143287500B7C09B /* tnet_dns_rr.c in Sources */, + ECF4BB061143287500B7C09B /* tnet_dns_soa.c in Sources */, + ECF4BB081143287500B7C09B /* tnet_dns_srv.c in Sources */, + ECF4BB0A1143287500B7C09B /* tnet_dns_txt.c in Sources */, + ECF4BB0C1143287500B7C09B /* tnet_ice.c in Sources */, + ECF4BB0F1143287500B7C09B /* tnet_stun.c in Sources */, + ECF4BB111143287500B7C09B /* tnet_stun_attribute.c in Sources */, + ECF4BB131143287500B7C09B /* tnet_stun_message.c in Sources */, + ECF4BB161143287500B7C09B /* tnet_tls.c in Sources */, + ECF4BB181143287500B7C09B /* tnet.c in Sources */, + ECF4BB1A1143287500B7C09B /* tnet_auth.c in Sources */, + ECF4BB1D1143287500B7C09B /* tnet_nat.c in Sources */, + ECF4BB1F1143287500B7C09B /* tnet_poll.c in Sources */, + ECF4BB221143287500B7C09B /* tnet_socket.c in Sources */, + ECF4BB241143287500B7C09B /* tnet_transport.c in Sources */, + ECF4BB261143287500B7C09B /* tnet_transport_poll.c in Sources */, + ECF4BB271143287500B7C09B /* tnet_transport_win32.c in Sources */, + ECF4BB291143287500B7C09B /* tnet_utils.c in Sources */, + ECF4BB2B1143287500B7C09B /* tnet_turn.c in Sources */, + ECF4BB2D1143287500B7C09B /* tnet_turn_attribute.c in Sources */, + ECF4BB2F1143287500B7C09B /* tnet_turn_message.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -862,7 +869,6 @@ ECE5BA5110EF6D8500B7EDDD /* tsk_buffer.c in Sources */, ECE5BA5310EF6D8500B7EDDD /* tsk_condwait.c in Sources */, ECE5BA5510EF6D8500B7EDDD /* tsk_debug.c in Sources */, - ECE5BA5810EF6D8500B7EDDD /* tsk_heap.c in Sources */, ECE5BA5A10EF6D8500B7EDDD /* tsk_hmac.c in Sources */, ECE5BA5C10EF6D8500B7EDDD /* tsk_list.c in Sources */, ECE5BA5F10EF6D8500B7EDDD /* tsk_md5.c in Sources */, diff --git a/trunk/xcode/tinySAK/tinySAK.xcodeproj/diopmamadou.pbxuser b/trunk/xcode/tinySAK/tinySAK.xcodeproj/diopmamadou.pbxuser index 7d906075..ea259245 100644 --- a/trunk/xcode/tinySAK/tinySAK.xcodeproj/diopmamadou.pbxuser +++ b/trunk/xcode/tinySAK/tinySAK.xcodeproj/diopmamadou.pbxuser @@ -5,7 +5,7 @@ activeExecutable = EC6C55ED10EDE65C000E1B18 /* test */; activeTarget = EC6C55EB10EDE65C000E1B18 /* test */; addToTargets = ( - EC6C55EB10EDE65C000E1B18 /* test */, + D2AAC0620554660B00DB518D /* tinySAK */, ); breakpoints = ( EC6C562F10EDE941000E1B18 /* test.c:128 */, @@ -59,7 +59,7 @@ PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 779, + 1359, 20, 48, 43, @@ -121,7 +121,7 @@ PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 739, + 1319, 60, 20, 48, @@ -138,8 +138,8 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 284780978; - PBXWorkspaceStateSaveDate = 284780978; + PBXPerProjectTemplateStateSaveDate = 289623567; + PBXWorkspaceStateSaveDate = 289623567; }; perUserProjectItems = { ECED5FC910F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FC910F96ABE006B4DC9 /* PBXTextBookmark */; @@ -147,17 +147,17 @@ ECED5FCC10F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FCC10F96ABE006B4DC9 /* PBXTextBookmark */; ECED5FCD10F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FCD10F96ABE006B4DC9 /* PBXTextBookmark */; ECED5FCE10F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FCE10F96ABE006B4DC9 /* PBXTextBookmark */; - ECED5FCF10F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FCF10F96ABE006B4DC9 /* PBXTextBookmark */; ECED5FD010F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FD010F96ABE006B4DC9 /* PBXTextBookmark */; ECED5FD110F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FD110F96ABE006B4DC9 /* PBXTextBookmark */; ECED5FD210F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FD210F96ABE006B4DC9 /* PBXTextBookmark */; - ECED5FD410F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FD410F96ABE006B4DC9 /* PBXTextBookmark */; - ECED5FD510F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FD510F96ABE006B4DC9 /* PBXTextBookmark */; - ECED5FD710F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FD710F96ABE006B4DC9 /* PBXTextBookmark */; ECED5FD810F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FD810F96ABE006B4DC9 /* PBXTextBookmark */; ECED5FD910F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FD910F96ABE006B4DC9 /* PBXTextBookmark */; - ECED5FDA10F96ABE006B4DC9 /* PBXTextBookmark */ = ECED5FDA10F96ABE006B4DC9 /* PBXTextBookmark */; - ECED5FE810F96BA6006B4DC9 /* PBXTextBookmark */ = ECED5FE810F96BA6006B4DC9 /* PBXTextBookmark */; + ECF4BE7711434EAB00B7C09B /* PBXTextBookmark */ = ECF4BE7711434EAB00B7C09B /* PBXTextBookmark */; + ECF4BE7811434EAB00B7C09B /* PBXTextBookmark */ = ECF4BE7811434EAB00B7C09B /* PBXTextBookmark */; + ECF4BE7911434EAB00B7C09B /* PBXTextBookmark */ = ECF4BE7911434EAB00B7C09B /* PBXTextBookmark */; + ECF4BE7A11434EAB00B7C09B /* PBXTextBookmark */ = ECF4BE7A11434EAB00B7C09B /* PBXTextBookmark */; + ECF4BE7B11434EAB00B7C09B /* PBXTextBookmark */ = ECF4BE7B11434EAB00B7C09B /* PBXTextBookmark */; + ECF4BE7C11434EAB00B7C09B /* PBXTextBookmark */ = ECF4BE7C11434EAB00B7C09B /* PBXTextBookmark */; }; sourceControlManager = EC6C557810EDE5AA000E1B18 /* Source Control */; userBuildSettings = { @@ -297,50 +297,13 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - EC6C557A10EDE5EF000E1B18 /* tinySAK_config.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 1456}}"; - sepNavSelRange = "{2182, 0}"; - sepNavVisRange = "{1085, 876}"; - }; - }; - EC6C557B10EDE5EF000E1B18 /* tsk.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1651, 922}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1228}"; - sepNavWindowFrame = "{{15, 615}, {750, 558}}"; - }; - }; - EC6C557C10EDE5EF000E1B18 /* tsk.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1651, 854}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1183}"; - }; - }; - EC6C557D10EDE5EF000E1B18 /* tsk_base64.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 3388}}"; - sepNavSelRange = "{759, 0}"; - sepNavVisRange = "{0, 1036}"; - }; - }; - EC6C557E10EDE5EF000E1B18 /* tsk_base64.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 630}}"; - sepNavSelRange = "{657, 0}"; - sepNavVisRange = "{363, 1084}"; - }; - }; - EC6C558010EDE5EF000E1B18 /* tsk_binaryutils.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 2072}}"; - sepNavSelRange = "{2134, 53}"; - sepNavVisRange = "{1413, 1454}"; - }; - }; EC6C558110EDE5EF000E1B18 /* tsk_buffer.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsk_buffer.c; + path = /Users/diopmamadou/Documents/doubango/tinySAK/src/tsk_buffer.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {957, 2562}}"; sepNavSelRange = "{939, 0}"; @@ -348,188 +311,32 @@ sepNavWindowFrame = "{{15, 615}, {750, 558}}"; }; }; - EC6C558210EDE5EF000E1B18 /* tsk_buffer.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 938}}"; - sepNavSelRange = "{967, 0}"; - sepNavVisRange = "{761, 940}"; - }; - }; - EC6C558310EDE5EF000E1B18 /* tsk_condwait.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {899, 4592}}"; - sepNavSelRange = "{2246, 15}"; - sepNavVisRange = "{1820, 775}"; - }; - }; - EC6C558610EDE5EF000E1B18 /* tsk_debug.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1170, 1848}}"; - sepNavSelRange = "{2819, 0}"; - sepNavVisRange = "{1557, 1325}"; - }; - }; - EC6C558710EDE5EF000E1B18 /* tsk_errno.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 1260}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 983}"; - }; - }; - EC6C558810EDE5EF000E1B18 /* tsk_heap.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 1470}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1108}"; - }; - }; - EC6C558910EDE5EF000E1B18 /* tsk_heap.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 1036}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1113}"; - }; - }; - EC6C558A10EDE5EF000E1B18 /* tsk_hmac.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 3290}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1041}"; - }; - }; - EC6C558B10EDE5EF000E1B18 /* tsk_hmac.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 770}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1078}"; - }; - }; - EC6C558C10EDE5EF000E1B18 /* tsk_list.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 8764}}"; - sepNavSelRange = "{8703, 0}"; - sepNavVisRange = "{8314, 774}"; - }; - }; - EC6C558D10EDE5EF000E1B18 /* tsk_list.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1651, 1974}}"; - sepNavSelRange = "{4967, 11}"; - sepNavVisRange = "{2775, 2308}"; - }; - }; - EC6C559110EDE5EF000E1B18 /* tsk_memory.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1176, 2660}}"; - sepNavSelRange = "{6803, 47}"; - sepNavVisRange = "{5713, 1155}"; - }; - }; - EC6C559310EDE5EF000E1B18 /* tsk_mutex.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 2156}}"; - sepNavSelRange = "{2657, 0}"; - sepNavVisRange = "{2691, 788}"; - }; - }; - EC6C559410EDE5EF000E1B18 /* tsk_mutex.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 700}}"; - sepNavSelRange = "{1023, 33}"; - sepNavVisRange = "{585, 758}"; - }; - }; - EC6C559510EDE5EF000E1B18 /* tsk_object.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 2072}}"; - sepNavSelRange = "{1480, 0}"; - sepNavVisRange = "{1389, 620}"; - }; - }; - EC6C559610EDE5EF000E1B18 /* tsk_object.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 1148}}"; - sepNavSelRange = "{1893, 71}"; - sepNavVisRange = "{735, 743}"; - }; - }; - EC6C559710EDE5EF000E1B18 /* tsk_params.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 3500}}"; - sepNavSelRange = "{3757, 0}"; - sepNavVisRange = "{3906, 326}"; - }; - }; - EC6C559B10EDE5EF000E1B18 /* tsk_runnable.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 1848}}"; - sepNavSelRange = "{2260, 0}"; - sepNavVisRange = "{2010, 789}"; - }; - }; EC6C559C10EDE5EF000E1B18 /* tsk_runnable.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsk_runnable.h; + path = /Users/diopmamadou/Documents/doubango/tinySAK/src/tsk_runnable.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {957, 1540}}"; sepNavSelRange = "{2644, 0}"; sepNavVisRange = "{2464, 669}"; }; }; - EC6C559E10EDE5EF000E1B18 /* tsk_safeobj.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 1008}}"; - sepNavSelRange = "{1355, 0}"; - sepNavVisRange = "{762, 1009}"; - }; - }; EC6C559F10EDE5EF000E1B18 /* tsk_semaphore.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsk_semaphore.c; + path = /Users/diopmamadou/Documents/doubango/tinySAK/src/tsk_semaphore.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {899, 2800}}"; sepNavSelRange = "{2926, 50}"; sepNavVisRange = "{2514, 991}"; }; }; - EC6C55A010EDE5EF000E1B18 /* tsk_semaphore.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 658}}"; - sepNavSelRange = "{1008, 37}"; - sepNavVisRange = "{394, 982}"; - }; - }; - EC6C55A310EDE5EF000E1B18 /* tsk_string.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {899, 5922}}"; - sepNavSelRange = "{9479, 15}"; - sepNavVisRange = "{9036, 733}"; - }; - }; - EC6C55A410EDE5EF000E1B18 /* tsk_string.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 1246}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{40, 1055}"; - }; - }; - EC6C55A510EDE5EF000E1B18 /* tsk_thread.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 1260}}"; - sepNavSelRange = "{1220, 0}"; - sepNavVisRange = "{960, 941}"; - }; - }; - EC6C55A910EDE5EF000E1B18 /* tsk_timer.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 6006}}"; - sepNavSelRange = "{2918, 0}"; - sepNavVisRange = "{2562, 955}"; - }; - }; - EC6C55AA10EDE5EF000E1B18 /* tsk_timer.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 1022}}"; - sepNavSelRange = "{564, 0}"; - sepNavVisRange = "{214, 1115}"; - }; - }; EC6C55EB10EDE65C000E1B18 /* test */ = { activeExec = 0; executables = ( @@ -619,9 +426,9 @@ }; EC6C55FB10EDE6E1000E1B18 /* test_buffer.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1140, 644}}"; - sepNavSelRange = "{863, 0}"; - sepNavVisRange = "{469, 1029}"; + sepNavIntBoundsRect = "{{0, 0}, {1537, 644}}"; + sepNavSelRange = "{598, 0}"; + sepNavVisRange = "{0, 1442}"; }; }; EC6C55FC10EDE6E1000E1B18 /* test_condwait.h */ = { @@ -640,9 +447,9 @@ }; EC6C55FE10EDE6E1000E1B18 /* test_lists.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {957, 3794}}"; + sepNavIntBoundsRect = "{{0, 0}, {1537, 3710}}"; sepNavSelRange = "{2195, 0}"; - sepNavVisRange = "{1915, 824}"; + sepNavVisRange = "{1614, 1160}"; }; }; EC6C55FF10EDE6E1000E1B18 /* test_md5.h */ = { @@ -829,6 +636,7 @@ }; ECED5FCB10F96ABE006B4DC9 /* string.h */ = { isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; name = string.h; path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h; sourceTree = ""; @@ -863,13 +671,6 @@ vrLen = 490; vrLoc = 2543; }; - ECED5FCF10F96ABE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC6C55FE10EDE6E1000E1B18 /* test_lists.h */; - rLen = 0; - rLoc = 89; - rType = 1; - }; ECED5FD010F96ABE006B4DC9 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = EC6C559C10EDE5EF000E1B18 /* tsk_runnable.h */; @@ -902,46 +703,11 @@ }; ECED5FD310F96ABE006B4DC9 /* string.h */ = { isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; name = string.h; path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h; sourceTree = ""; }; - ECED5FD410F96ABE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC6C558110EDE5EF000E1B18 /* tsk_buffer.c */; - name = "tsk_buffer.c: 111"; - rLen = 6; - rLoc = 2357; - rType = 0; - vrLen = 486; - vrLoc = 2095; - }; - ECED5FD510F96ABE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED5FD610F96ABE006B4DC9 /* string.h */; - name = "string.h: 83"; - rLen = 44; - rLoc = 3369; - rType = 0; - vrLen = 690; - vrLoc = 2803; - }; - ECED5FD610F96ABE006B4DC9 /* string.h */ = { - isa = PBXFileReference; - name = string.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h; - sourceTree = ""; - }; - ECED5FD710F96ABE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC6C558110EDE5EF000E1B18 /* tsk_buffer.c */; - name = "tsk_buffer.c: 31"; - rLen = 0; - rLoc = 939; - rType = 0; - vrLen = 515; - vrLoc = 784; - }; ECED5FD810F96ABE006B4DC9 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = EC6C55F910EDE6E1000E1B18 /* test.c */; @@ -962,24 +728,71 @@ vrLen = 525; vrLoc = 868; }; - ECED5FDA10F96ABE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC6C55F910EDE6E1000E1B18 /* test.c */; - name = "test.c: 169"; - rLen = 0; - rLoc = 3360; - rType = 0; - vrLen = 490; - vrLoc = 2543; + ECF4BE2F11434E5400B7C09B /* tsk_timer.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1537, 6104}}"; + sepNavSelRange = "{3927, 0}"; + sepNavVisRange = "{3502, 868}"; + }; }; - ECED5FE810F96BA6006B4DC9 /* PBXTextBookmark */ = { + ECF4BE7711434EAB00B7C09B /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = EC6C55FE10EDE6E1000E1B18 /* test_lists.h */; name = "test_lists.h: 90"; rLen = 0; rLoc = 2195; rType = 0; - vrLen = 824; - vrLoc = 1915; + vrLen = 1160; + vrLoc = 1614; + }; + ECF4BE7811434EAB00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BE2F11434E5400B7C09B /* tsk_timer.c */; + name = "tsk_timer.c: 152"; + rLen = 0; + rLoc = 3927; + rType = 0; + vrLen = 872; + vrLoc = 3502; + }; + ECF4BE7911434EAB00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = EC6C55FB10EDE6E1000E1B18 /* test_buffer.h */; + name = "test_buffer.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1442; + vrLoc = 0; + }; + ECF4BE7A11434EAB00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = EC6C55FE10EDE6E1000E1B18 /* test_lists.h */; + name = "test_lists.h: 90"; + rLen = 0; + rLoc = 2195; + rType = 0; + vrLen = 1160; + vrLoc = 1614; + }; + ECF4BE7B11434EAB00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4BE2F11434E5400B7C09B /* tsk_timer.c */; + name = "tsk_timer.c: 152"; + rLen = 0; + rLoc = 3927; + rType = 0; + vrLen = 872; + vrLoc = 3502; + }; + ECF4BE7C11434EAB00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = EC6C55FB10EDE6E1000E1B18 /* test_buffer.h */; + name = "test_buffer.h: 15"; + rLen = 0; + rLoc = 598; + rType = 0; + vrLen = 1442; + vrLoc = 0; }; } diff --git a/trunk/xcode/tinySAK/tinySAK.xcodeproj/project.pbxproj b/trunk/xcode/tinySAK/tinySAK.xcodeproj/project.pbxproj index 913121b2..2716dffe 100644 --- a/trunk/xcode/tinySAK/tinySAK.xcodeproj/project.pbxproj +++ b/trunk/xcode/tinySAK/tinySAK.xcodeproj/project.pbxproj @@ -7,59 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - EC6C55AF10EDE5EF000E1B18 /* tinySAK_config.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C557A10EDE5EF000E1B18 /* tinySAK_config.h */; }; - EC6C55B010EDE5EF000E1B18 /* tsk.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C557B10EDE5EF000E1B18 /* tsk.c */; }; - EC6C55B110EDE5EF000E1B18 /* tsk.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C557C10EDE5EF000E1B18 /* tsk.h */; }; - EC6C55B210EDE5EF000E1B18 /* tsk_base64.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C557D10EDE5EF000E1B18 /* tsk_base64.c */; }; - EC6C55B310EDE5EF000E1B18 /* tsk_base64.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C557E10EDE5EF000E1B18 /* tsk_base64.h */; }; - EC6C55B410EDE5EF000E1B18 /* tsk_binaryutils.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C557F10EDE5EF000E1B18 /* tsk_binaryutils.c */; }; - EC6C55B510EDE5EF000E1B18 /* tsk_binaryutils.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C558010EDE5EF000E1B18 /* tsk_binaryutils.h */; }; - EC6C55B610EDE5EF000E1B18 /* tsk_buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C558110EDE5EF000E1B18 /* tsk_buffer.c */; }; - EC6C55B710EDE5EF000E1B18 /* tsk_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C558210EDE5EF000E1B18 /* tsk_buffer.h */; }; - EC6C55B810EDE5EF000E1B18 /* tsk_condwait.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C558310EDE5EF000E1B18 /* tsk_condwait.c */; }; - EC6C55B910EDE5EF000E1B18 /* tsk_condwait.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C558410EDE5EF000E1B18 /* tsk_condwait.h */; }; - EC6C55BA10EDE5EF000E1B18 /* tsk_debug.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C558510EDE5EF000E1B18 /* tsk_debug.c */; }; - EC6C55BB10EDE5EF000E1B18 /* tsk_debug.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C558610EDE5EF000E1B18 /* tsk_debug.h */; }; - EC6C55BC10EDE5EF000E1B18 /* tsk_errno.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C558710EDE5EF000E1B18 /* tsk_errno.h */; }; - EC6C55BD10EDE5EF000E1B18 /* tsk_heap.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C558810EDE5EF000E1B18 /* tsk_heap.c */; }; - EC6C55BE10EDE5EF000E1B18 /* tsk_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C558910EDE5EF000E1B18 /* tsk_heap.h */; }; - EC6C55BF10EDE5EF000E1B18 /* tsk_hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C558A10EDE5EF000E1B18 /* tsk_hmac.c */; }; - EC6C55C010EDE5EF000E1B18 /* tsk_hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C558B10EDE5EF000E1B18 /* tsk_hmac.h */; }; - EC6C55C110EDE5EF000E1B18 /* tsk_list.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C558C10EDE5EF000E1B18 /* tsk_list.c */; }; - EC6C55C210EDE5EF000E1B18 /* tsk_list.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C558D10EDE5EF000E1B18 /* tsk_list.h */; }; - EC6C55C310EDE5EF000E1B18 /* tsk_macros.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C558E10EDE5EF000E1B18 /* tsk_macros.h */; }; - EC6C55C410EDE5EF000E1B18 /* tsk_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C558F10EDE5EF000E1B18 /* tsk_md5.c */; }; - EC6C55C510EDE5EF000E1B18 /* tsk_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C559010EDE5EF000E1B18 /* tsk_md5.h */; }; - EC6C55C610EDE5EF000E1B18 /* tsk_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C559110EDE5EF000E1B18 /* tsk_memory.c */; }; - EC6C55C710EDE5EF000E1B18 /* tsk_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C559210EDE5EF000E1B18 /* tsk_memory.h */; }; - EC6C55C810EDE5EF000E1B18 /* tsk_mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C559310EDE5EF000E1B18 /* tsk_mutex.c */; }; - EC6C55C910EDE5EF000E1B18 /* tsk_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C559410EDE5EF000E1B18 /* tsk_mutex.h */; }; - EC6C55CA10EDE5EF000E1B18 /* tsk_object.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C559510EDE5EF000E1B18 /* tsk_object.c */; }; - EC6C55CB10EDE5EF000E1B18 /* tsk_object.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C559610EDE5EF000E1B18 /* tsk_object.h */; }; - EC6C55CC10EDE5EF000E1B18 /* tsk_params.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C559710EDE5EF000E1B18 /* tsk_params.c */; }; - EC6C55CD10EDE5EF000E1B18 /* tsk_params.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C559810EDE5EF000E1B18 /* tsk_params.h */; }; - EC6C55CE10EDE5EF000E1B18 /* tsk_ppfcs16.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C559910EDE5EF000E1B18 /* tsk_ppfcs16.c */; }; - EC6C55CF10EDE5EF000E1B18 /* tsk_ppfcs16.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C559A10EDE5EF000E1B18 /* tsk_ppfcs16.h */; }; - EC6C55D010EDE5EF000E1B18 /* tsk_runnable.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C559B10EDE5EF000E1B18 /* tsk_runnable.c */; }; - EC6C55D110EDE5EF000E1B18 /* tsk_runnable.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C559C10EDE5EF000E1B18 /* tsk_runnable.h */; }; - EC6C55D210EDE5EF000E1B18 /* tsk_safeobj.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C559D10EDE5EF000E1B18 /* tsk_safeobj.c */; }; - EC6C55D310EDE5EF000E1B18 /* tsk_safeobj.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C559E10EDE5EF000E1B18 /* tsk_safeobj.h */; }; - EC6C55D410EDE5EF000E1B18 /* tsk_semaphore.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C559F10EDE5EF000E1B18 /* tsk_semaphore.c */; }; - EC6C55D510EDE5EF000E1B18 /* tsk_semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C55A010EDE5EF000E1B18 /* tsk_semaphore.h */; }; - EC6C55D610EDE5EF000E1B18 /* tsk_sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C55A110EDE5EF000E1B18 /* tsk_sha1.c */; }; - EC6C55D710EDE5EF000E1B18 /* tsk_sha1.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C55A210EDE5EF000E1B18 /* tsk_sha1.h */; }; - EC6C55D810EDE5EF000E1B18 /* tsk_string.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C55A310EDE5EF000E1B18 /* tsk_string.c */; }; - EC6C55D910EDE5EF000E1B18 /* tsk_string.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C55A410EDE5EF000E1B18 /* tsk_string.h */; }; - EC6C55DA10EDE5EF000E1B18 /* tsk_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C55A510EDE5EF000E1B18 /* tsk_thread.c */; }; - EC6C55DB10EDE5EF000E1B18 /* tsk_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C55A610EDE5EF000E1B18 /* tsk_thread.h */; }; - EC6C55DC10EDE5EF000E1B18 /* tsk_time.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C55A710EDE5EF000E1B18 /* tsk_time.c */; }; - EC6C55DD10EDE5EF000E1B18 /* tsk_time.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C55A810EDE5EF000E1B18 /* tsk_time.h */; }; - EC6C55DE10EDE5EF000E1B18 /* tsk_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C55A910EDE5EF000E1B18 /* tsk_timer.c */; }; - EC6C55DF10EDE5EF000E1B18 /* tsk_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C55AA10EDE5EF000E1B18 /* tsk_timer.h */; }; - EC6C55E010EDE5EF000E1B18 /* tsk_url.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C55AB10EDE5EF000E1B18 /* tsk_url.c */; }; - EC6C55E110EDE5EF000E1B18 /* tsk_url.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C55AC10EDE5EF000E1B18 /* tsk_url.h */; }; - EC6C55E210EDE5EF000E1B18 /* tsk_xml.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C55AD10EDE5EF000E1B18 /* tsk_xml.c */; }; - EC6C55E310EDE5EF000E1B18 /* tsk_xml.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C55AE10EDE5EF000E1B18 /* tsk_xml.h */; }; EC6C55F210EDE669000E1B18 /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D2AAC0630554660B00DB518D /* libtinySAK.dylib */; }; EC6C560A10EDE6E1000E1B18 /* stdafx.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C55F610EDE6E1000E1B18 /* stdafx.c */; }; EC6C560B10EDE6E1000E1B18 /* test.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6C55F910EDE6E1000E1B18 /* test.c */; }; @@ -81,6 +28,64 @@ EC6C564710EDEA69000E1B18 /* test_strings.h in Sources */ = {isa = PBXBuildFile; fileRef = EC6C560710EDE6E1000E1B18 /* test_strings.h */; }; EC6C564810EDEA69000E1B18 /* test_timer.h in Sources */ = {isa = PBXBuildFile; fileRef = EC6C560810EDE6E1000E1B18 /* test_timer.h */; }; EC6C564910EDEA69000E1B18 /* test_url.h in Sources */ = {isa = PBXBuildFile; fileRef = EC6C560910EDE6E1000E1B18 /* test_url.h */; }; + ECF4BE3811434E5400B7C09B /* tinySAK_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BDFD11434E5400B7C09B /* tinySAK_config.h */; }; + ECF4BE3911434E5400B7C09B /* tsk.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BDFE11434E5400B7C09B /* tsk.c */; }; + ECF4BE3A11434E5400B7C09B /* tsk.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BDFF11434E5400B7C09B /* tsk.h */; }; + ECF4BE3B11434E5400B7C09B /* tsk_base64.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE0011434E5400B7C09B /* tsk_base64.c */; }; + ECF4BE3C11434E5400B7C09B /* tsk_base64.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE0111434E5400B7C09B /* tsk_base64.h */; }; + ECF4BE3D11434E5400B7C09B /* tsk_binaryutils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE0211434E5400B7C09B /* tsk_binaryutils.c */; }; + ECF4BE3E11434E5400B7C09B /* tsk_binaryutils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE0311434E5400B7C09B /* tsk_binaryutils.h */; }; + ECF4BE3F11434E5400B7C09B /* tsk_buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE0411434E5400B7C09B /* tsk_buffer.c */; }; + ECF4BE4011434E5400B7C09B /* tsk_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE0511434E5400B7C09B /* tsk_buffer.h */; }; + ECF4BE4111434E5400B7C09B /* tsk_condwait.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE0611434E5400B7C09B /* tsk_condwait.c */; }; + ECF4BE4211434E5400B7C09B /* tsk_condwait.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE0711434E5400B7C09B /* tsk_condwait.h */; }; + ECF4BE4311434E5400B7C09B /* tsk_debug.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE0811434E5400B7C09B /* tsk_debug.c */; }; + ECF4BE4411434E5400B7C09B /* tsk_debug.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE0911434E5400B7C09B /* tsk_debug.h */; }; + ECF4BE4511434E5400B7C09B /* tsk_errno.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE0A11434E5400B7C09B /* tsk_errno.h */; }; + ECF4BE4611434E5400B7C09B /* tsk_fsm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE0B11434E5400B7C09B /* tsk_fsm.c */; }; + ECF4BE4711434E5400B7C09B /* tsk_fsm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE0C11434E5400B7C09B /* tsk_fsm.h */; }; + ECF4BE4811434E5400B7C09B /* tsk_hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE0D11434E5400B7C09B /* tsk_hmac.c */; }; + ECF4BE4911434E5400B7C09B /* tsk_hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE0E11434E5400B7C09B /* tsk_hmac.h */; }; + ECF4BE4A11434E5400B7C09B /* tsk_list.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE0F11434E5400B7C09B /* tsk_list.c */; }; + ECF4BE4B11434E5400B7C09B /* tsk_list.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE1011434E5400B7C09B /* tsk_list.h */; }; + ECF4BE4C11434E5400B7C09B /* tsk_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE1111434E5400B7C09B /* tsk_md5.c */; }; + ECF4BE4D11434E5400B7C09B /* tsk_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE1211434E5400B7C09B /* tsk_md5.h */; }; + ECF4BE4E11434E5400B7C09B /* tsk_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE1311434E5400B7C09B /* tsk_memory.c */; }; + ECF4BE4F11434E5400B7C09B /* tsk_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE1411434E5400B7C09B /* tsk_memory.h */; }; + ECF4BE5011434E5400B7C09B /* tsk_mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE1511434E5400B7C09B /* tsk_mutex.c */; }; + ECF4BE5111434E5400B7C09B /* tsk_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE1611434E5400B7C09B /* tsk_mutex.h */; }; + ECF4BE5211434E5400B7C09B /* tsk_object.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE1711434E5400B7C09B /* tsk_object.c */; }; + ECF4BE5311434E5400B7C09B /* tsk_object.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE1811434E5400B7C09B /* tsk_object.h */; }; + ECF4BE5411434E5400B7C09B /* tsk_params.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE1911434E5400B7C09B /* tsk_params.c */; }; + ECF4BE5511434E5400B7C09B /* tsk_params.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE1A11434E5400B7C09B /* tsk_params.h */; }; + ECF4BE5611434E5400B7C09B /* tsk_ppfcs16.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE1B11434E5400B7C09B /* tsk_ppfcs16.c */; }; + ECF4BE5711434E5400B7C09B /* tsk_ppfcs16.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE1C11434E5400B7C09B /* tsk_ppfcs16.h */; }; + ECF4BE5811434E5400B7C09B /* tsk_ppfcs32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE1D11434E5400B7C09B /* tsk_ppfcs32.c */; }; + ECF4BE5911434E5400B7C09B /* tsk_ppfcs32.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE1E11434E5400B7C09B /* tsk_ppfcs32.h */; }; + ECF4BE5A11434E5400B7C09B /* tsk_ragel_state.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE1F11434E5400B7C09B /* tsk_ragel_state.c */; }; + ECF4BE5B11434E5400B7C09B /* tsk_ragel_state.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE2011434E5400B7C09B /* tsk_ragel_state.h */; }; + ECF4BE5C11434E5400B7C09B /* tsk_runnable.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE2111434E5400B7C09B /* tsk_runnable.c */; }; + ECF4BE5D11434E5400B7C09B /* tsk_runnable.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE2211434E5400B7C09B /* tsk_runnable.h */; }; + ECF4BE5E11434E5400B7C09B /* tsk_safeobj.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE2311434E5400B7C09B /* tsk_safeobj.c */; }; + ECF4BE5F11434E5400B7C09B /* tsk_safeobj.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE2411434E5400B7C09B /* tsk_safeobj.h */; }; + ECF4BE6011434E5400B7C09B /* tsk_semaphore.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE2511434E5400B7C09B /* tsk_semaphore.c */; }; + ECF4BE6111434E5400B7C09B /* tsk_semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE2611434E5400B7C09B /* tsk_semaphore.h */; }; + ECF4BE6211434E5400B7C09B /* tsk_sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE2711434E5400B7C09B /* tsk_sha1.c */; }; + ECF4BE6311434E5400B7C09B /* tsk_sha1.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE2811434E5400B7C09B /* tsk_sha1.h */; }; + ECF4BE6411434E5400B7C09B /* tsk_string.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE2911434E5400B7C09B /* tsk_string.c */; }; + ECF4BE6511434E5400B7C09B /* tsk_string.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE2A11434E5400B7C09B /* tsk_string.h */; }; + ECF4BE6611434E5400B7C09B /* tsk_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE2B11434E5400B7C09B /* tsk_thread.c */; }; + ECF4BE6711434E5400B7C09B /* tsk_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE2C11434E5400B7C09B /* tsk_thread.h */; }; + ECF4BE6811434E5400B7C09B /* tsk_time.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE2D11434E5400B7C09B /* tsk_time.c */; }; + ECF4BE6911434E5400B7C09B /* tsk_time.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE2E11434E5400B7C09B /* tsk_time.h */; }; + ECF4BE6A11434E5400B7C09B /* tsk_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE2F11434E5400B7C09B /* tsk_timer.c */; }; + ECF4BE6B11434E5400B7C09B /* tsk_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE3011434E5400B7C09B /* tsk_timer.h */; }; + ECF4BE6C11434E5400B7C09B /* tsk_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE3111434E5400B7C09B /* tsk_url.c */; }; + ECF4BE6D11434E5400B7C09B /* tsk_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE3211434E5400B7C09B /* tsk_url.h */; }; + ECF4BE6E11434E5400B7C09B /* tsk_uuid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE3311434E5400B7C09B /* tsk_uuid.c */; }; + ECF4BE6F11434E5400B7C09B /* tsk_uuid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE3411434E5400B7C09B /* tsk_uuid.h */; }; + ECF4BE7011434E5400B7C09B /* tsk_xml.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BE3511434E5400B7C09B /* tsk_xml.c */; }; + ECF4BE7111434E5400B7C09B /* tsk_xml.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BE3611434E5400B7C09B /* tsk_xml.h */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -95,59 +100,6 @@ /* Begin PBXFileReference section */ D2AAC0630554660B00DB518D /* libtinySAK.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinySAK.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; - EC6C557A10EDE5EF000E1B18 /* tinySAK_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tinySAK_config.h; path = ../../tinySAK/src/tinySAK_config.h; sourceTree = SOURCE_ROOT; }; - EC6C557B10EDE5EF000E1B18 /* tsk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk.c; path = ../../tinySAK/src/tsk.c; sourceTree = SOURCE_ROOT; }; - EC6C557C10EDE5EF000E1B18 /* tsk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk.h; path = ../../tinySAK/src/tsk.h; sourceTree = SOURCE_ROOT; }; - EC6C557D10EDE5EF000E1B18 /* tsk_base64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_base64.c; path = ../../tinySAK/src/tsk_base64.c; sourceTree = SOURCE_ROOT; }; - EC6C557E10EDE5EF000E1B18 /* tsk_base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_base64.h; path = ../../tinySAK/src/tsk_base64.h; sourceTree = SOURCE_ROOT; }; - EC6C557F10EDE5EF000E1B18 /* tsk_binaryutils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_binaryutils.c; path = ../../tinySAK/src/tsk_binaryutils.c; sourceTree = SOURCE_ROOT; }; - EC6C558010EDE5EF000E1B18 /* tsk_binaryutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_binaryutils.h; path = ../../tinySAK/src/tsk_binaryutils.h; sourceTree = SOURCE_ROOT; }; - EC6C558110EDE5EF000E1B18 /* tsk_buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_buffer.c; path = ../../tinySAK/src/tsk_buffer.c; sourceTree = SOURCE_ROOT; }; - EC6C558210EDE5EF000E1B18 /* tsk_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_buffer.h; path = ../../tinySAK/src/tsk_buffer.h; sourceTree = SOURCE_ROOT; }; - EC6C558310EDE5EF000E1B18 /* tsk_condwait.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_condwait.c; path = ../../tinySAK/src/tsk_condwait.c; sourceTree = SOURCE_ROOT; }; - EC6C558410EDE5EF000E1B18 /* tsk_condwait.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_condwait.h; path = ../../tinySAK/src/tsk_condwait.h; sourceTree = SOURCE_ROOT; }; - EC6C558510EDE5EF000E1B18 /* tsk_debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_debug.c; path = ../../tinySAK/src/tsk_debug.c; sourceTree = SOURCE_ROOT; }; - EC6C558610EDE5EF000E1B18 /* tsk_debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_debug.h; path = ../../tinySAK/src/tsk_debug.h; sourceTree = SOURCE_ROOT; }; - EC6C558710EDE5EF000E1B18 /* tsk_errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_errno.h; path = ../../tinySAK/src/tsk_errno.h; sourceTree = SOURCE_ROOT; }; - EC6C558810EDE5EF000E1B18 /* tsk_heap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_heap.c; path = ../../tinySAK/src/tsk_heap.c; sourceTree = SOURCE_ROOT; }; - EC6C558910EDE5EF000E1B18 /* tsk_heap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_heap.h; path = ../../tinySAK/src/tsk_heap.h; sourceTree = SOURCE_ROOT; }; - EC6C558A10EDE5EF000E1B18 /* tsk_hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_hmac.c; path = ../../tinySAK/src/tsk_hmac.c; sourceTree = SOURCE_ROOT; }; - EC6C558B10EDE5EF000E1B18 /* tsk_hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_hmac.h; path = ../../tinySAK/src/tsk_hmac.h; sourceTree = SOURCE_ROOT; }; - EC6C558C10EDE5EF000E1B18 /* tsk_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_list.c; path = ../../tinySAK/src/tsk_list.c; sourceTree = SOURCE_ROOT; }; - EC6C558D10EDE5EF000E1B18 /* tsk_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_list.h; path = ../../tinySAK/src/tsk_list.h; sourceTree = SOURCE_ROOT; }; - EC6C558E10EDE5EF000E1B18 /* tsk_macros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_macros.h; path = ../../tinySAK/src/tsk_macros.h; sourceTree = SOURCE_ROOT; }; - EC6C558F10EDE5EF000E1B18 /* tsk_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_md5.c; path = ../../tinySAK/src/tsk_md5.c; sourceTree = SOURCE_ROOT; }; - EC6C559010EDE5EF000E1B18 /* tsk_md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_md5.h; path = ../../tinySAK/src/tsk_md5.h; sourceTree = SOURCE_ROOT; }; - EC6C559110EDE5EF000E1B18 /* tsk_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_memory.c; path = ../../tinySAK/src/tsk_memory.c; sourceTree = SOURCE_ROOT; }; - EC6C559210EDE5EF000E1B18 /* tsk_memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_memory.h; path = ../../tinySAK/src/tsk_memory.h; sourceTree = SOURCE_ROOT; }; - EC6C559310EDE5EF000E1B18 /* tsk_mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_mutex.c; path = ../../tinySAK/src/tsk_mutex.c; sourceTree = SOURCE_ROOT; }; - EC6C559410EDE5EF000E1B18 /* tsk_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_mutex.h; path = ../../tinySAK/src/tsk_mutex.h; sourceTree = SOURCE_ROOT; }; - EC6C559510EDE5EF000E1B18 /* tsk_object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_object.c; path = ../../tinySAK/src/tsk_object.c; sourceTree = SOURCE_ROOT; }; - EC6C559610EDE5EF000E1B18 /* tsk_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_object.h; path = ../../tinySAK/src/tsk_object.h; sourceTree = SOURCE_ROOT; }; - EC6C559710EDE5EF000E1B18 /* tsk_params.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_params.c; path = ../../tinySAK/src/tsk_params.c; sourceTree = SOURCE_ROOT; }; - EC6C559810EDE5EF000E1B18 /* tsk_params.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_params.h; path = ../../tinySAK/src/tsk_params.h; sourceTree = SOURCE_ROOT; }; - EC6C559910EDE5EF000E1B18 /* tsk_ppfcs16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_ppfcs16.c; path = ../../tinySAK/src/tsk_ppfcs16.c; sourceTree = SOURCE_ROOT; }; - EC6C559A10EDE5EF000E1B18 /* tsk_ppfcs16.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_ppfcs16.h; path = ../../tinySAK/src/tsk_ppfcs16.h; sourceTree = SOURCE_ROOT; }; - EC6C559B10EDE5EF000E1B18 /* tsk_runnable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_runnable.c; path = ../../tinySAK/src/tsk_runnable.c; sourceTree = SOURCE_ROOT; }; - EC6C559C10EDE5EF000E1B18 /* tsk_runnable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_runnable.h; path = ../../tinySAK/src/tsk_runnable.h; sourceTree = SOURCE_ROOT; }; - EC6C559D10EDE5EF000E1B18 /* tsk_safeobj.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_safeobj.c; path = ../../tinySAK/src/tsk_safeobj.c; sourceTree = SOURCE_ROOT; }; - EC6C559E10EDE5EF000E1B18 /* tsk_safeobj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_safeobj.h; path = ../../tinySAK/src/tsk_safeobj.h; sourceTree = SOURCE_ROOT; }; - EC6C559F10EDE5EF000E1B18 /* tsk_semaphore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_semaphore.c; path = ../../tinySAK/src/tsk_semaphore.c; sourceTree = SOURCE_ROOT; }; - EC6C55A010EDE5EF000E1B18 /* tsk_semaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_semaphore.h; path = ../../tinySAK/src/tsk_semaphore.h; sourceTree = SOURCE_ROOT; }; - EC6C55A110EDE5EF000E1B18 /* tsk_sha1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_sha1.c; path = ../../tinySAK/src/tsk_sha1.c; sourceTree = SOURCE_ROOT; }; - EC6C55A210EDE5EF000E1B18 /* tsk_sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_sha1.h; path = ../../tinySAK/src/tsk_sha1.h; sourceTree = SOURCE_ROOT; }; - EC6C55A310EDE5EF000E1B18 /* tsk_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_string.c; path = ../../tinySAK/src/tsk_string.c; sourceTree = SOURCE_ROOT; }; - EC6C55A410EDE5EF000E1B18 /* tsk_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_string.h; path = ../../tinySAK/src/tsk_string.h; sourceTree = SOURCE_ROOT; }; - EC6C55A510EDE5EF000E1B18 /* tsk_thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_thread.c; path = ../../tinySAK/src/tsk_thread.c; sourceTree = SOURCE_ROOT; }; - EC6C55A610EDE5EF000E1B18 /* tsk_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_thread.h; path = ../../tinySAK/src/tsk_thread.h; sourceTree = SOURCE_ROOT; }; - EC6C55A710EDE5EF000E1B18 /* tsk_time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_time.c; path = ../../tinySAK/src/tsk_time.c; sourceTree = SOURCE_ROOT; }; - EC6C55A810EDE5EF000E1B18 /* tsk_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_time.h; path = ../../tinySAK/src/tsk_time.h; sourceTree = SOURCE_ROOT; }; - EC6C55A910EDE5EF000E1B18 /* tsk_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_timer.c; path = ../../tinySAK/src/tsk_timer.c; sourceTree = SOURCE_ROOT; }; - EC6C55AA10EDE5EF000E1B18 /* tsk_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_timer.h; path = ../../tinySAK/src/tsk_timer.h; sourceTree = SOURCE_ROOT; }; - EC6C55AB10EDE5EF000E1B18 /* tsk_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_url.c; path = ../../tinySAK/src/tsk_url.c; sourceTree = SOURCE_ROOT; }; - EC6C55AC10EDE5EF000E1B18 /* tsk_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_url.h; path = ../../tinySAK/src/tsk_url.h; sourceTree = SOURCE_ROOT; }; - EC6C55AD10EDE5EF000E1B18 /* tsk_xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_xml.c; path = ../../tinySAK/src/tsk_xml.c; sourceTree = SOURCE_ROOT; }; - EC6C55AE10EDE5EF000E1B18 /* tsk_xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_xml.h; path = ../../tinySAK/src/tsk_xml.h; sourceTree = SOURCE_ROOT; }; EC6C55EC10EDE65C000E1B18 /* test */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = test; sourceTree = BUILT_PRODUCTS_DIR; }; EC6C55F610EDE6E1000E1B18 /* stdafx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = stdafx.c; path = ../../tinySAK/test/stdafx.c; sourceTree = SOURCE_ROOT; }; EC6C55F710EDE6E1000E1B18 /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stdafx.h; path = ../../tinySAK/test/stdafx.h; sourceTree = SOURCE_ROOT; }; @@ -169,6 +121,64 @@ EC6C560710EDE6E1000E1B18 /* test_strings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_strings.h; path = ../../tinySAK/test/test_strings.h; sourceTree = SOURCE_ROOT; }; EC6C560810EDE6E1000E1B18 /* test_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_timer.h; path = ../../tinySAK/test/test_timer.h; sourceTree = SOURCE_ROOT; }; EC6C560910EDE6E1000E1B18 /* test_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_url.h; path = ../../tinySAK/test/test_url.h; sourceTree = SOURCE_ROOT; }; + ECF4BDFD11434E5400B7C09B /* tinySAK_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinySAK_config.h; sourceTree = ""; }; + ECF4BDFE11434E5400B7C09B /* tsk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk.c; sourceTree = ""; }; + ECF4BDFF11434E5400B7C09B /* tsk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk.h; sourceTree = ""; }; + ECF4BE0011434E5400B7C09B /* tsk_base64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_base64.c; sourceTree = ""; }; + ECF4BE0111434E5400B7C09B /* tsk_base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_base64.h; sourceTree = ""; }; + ECF4BE0211434E5400B7C09B /* tsk_binaryutils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_binaryutils.c; sourceTree = ""; }; + ECF4BE0311434E5400B7C09B /* tsk_binaryutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_binaryutils.h; sourceTree = ""; }; + ECF4BE0411434E5400B7C09B /* tsk_buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_buffer.c; sourceTree = ""; }; + ECF4BE0511434E5400B7C09B /* tsk_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_buffer.h; sourceTree = ""; }; + ECF4BE0611434E5400B7C09B /* tsk_condwait.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_condwait.c; sourceTree = ""; }; + ECF4BE0711434E5400B7C09B /* tsk_condwait.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_condwait.h; sourceTree = ""; }; + ECF4BE0811434E5400B7C09B /* tsk_debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_debug.c; sourceTree = ""; }; + ECF4BE0911434E5400B7C09B /* tsk_debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_debug.h; sourceTree = ""; }; + ECF4BE0A11434E5400B7C09B /* tsk_errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_errno.h; sourceTree = ""; }; + ECF4BE0B11434E5400B7C09B /* tsk_fsm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_fsm.c; sourceTree = ""; }; + ECF4BE0C11434E5400B7C09B /* tsk_fsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_fsm.h; sourceTree = ""; }; + ECF4BE0D11434E5400B7C09B /* tsk_hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_hmac.c; sourceTree = ""; }; + ECF4BE0E11434E5400B7C09B /* tsk_hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_hmac.h; sourceTree = ""; }; + ECF4BE0F11434E5400B7C09B /* tsk_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_list.c; sourceTree = ""; }; + ECF4BE1011434E5400B7C09B /* tsk_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_list.h; sourceTree = ""; }; + ECF4BE1111434E5400B7C09B /* tsk_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_md5.c; sourceTree = ""; }; + ECF4BE1211434E5400B7C09B /* tsk_md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_md5.h; sourceTree = ""; }; + ECF4BE1311434E5400B7C09B /* tsk_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_memory.c; sourceTree = ""; }; + ECF4BE1411434E5400B7C09B /* tsk_memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_memory.h; sourceTree = ""; }; + ECF4BE1511434E5400B7C09B /* tsk_mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_mutex.c; sourceTree = ""; }; + ECF4BE1611434E5400B7C09B /* tsk_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_mutex.h; sourceTree = ""; }; + ECF4BE1711434E5400B7C09B /* tsk_object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_object.c; sourceTree = ""; }; + ECF4BE1811434E5400B7C09B /* tsk_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_object.h; sourceTree = ""; }; + ECF4BE1911434E5400B7C09B /* tsk_params.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_params.c; sourceTree = ""; }; + ECF4BE1A11434E5400B7C09B /* tsk_params.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_params.h; sourceTree = ""; }; + ECF4BE1B11434E5400B7C09B /* tsk_ppfcs16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ppfcs16.c; sourceTree = ""; }; + ECF4BE1C11434E5400B7C09B /* tsk_ppfcs16.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ppfcs16.h; sourceTree = ""; }; + ECF4BE1D11434E5400B7C09B /* tsk_ppfcs32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ppfcs32.c; sourceTree = ""; }; + ECF4BE1E11434E5400B7C09B /* tsk_ppfcs32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ppfcs32.h; sourceTree = ""; }; + ECF4BE1F11434E5400B7C09B /* tsk_ragel_state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ragel_state.c; sourceTree = ""; }; + ECF4BE2011434E5400B7C09B /* tsk_ragel_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ragel_state.h; sourceTree = ""; }; + ECF4BE2111434E5400B7C09B /* tsk_runnable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_runnable.c; sourceTree = ""; }; + ECF4BE2211434E5400B7C09B /* tsk_runnable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_runnable.h; sourceTree = ""; }; + ECF4BE2311434E5400B7C09B /* tsk_safeobj.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_safeobj.c; sourceTree = ""; }; + ECF4BE2411434E5400B7C09B /* tsk_safeobj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_safeobj.h; sourceTree = ""; }; + ECF4BE2511434E5400B7C09B /* tsk_semaphore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_semaphore.c; sourceTree = ""; }; + ECF4BE2611434E5400B7C09B /* tsk_semaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_semaphore.h; sourceTree = ""; }; + ECF4BE2711434E5400B7C09B /* tsk_sha1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_sha1.c; sourceTree = ""; }; + ECF4BE2811434E5400B7C09B /* tsk_sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_sha1.h; sourceTree = ""; }; + ECF4BE2911434E5400B7C09B /* tsk_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_string.c; sourceTree = ""; }; + ECF4BE2A11434E5400B7C09B /* tsk_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_string.h; sourceTree = ""; }; + ECF4BE2B11434E5400B7C09B /* tsk_thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_thread.c; sourceTree = ""; }; + ECF4BE2C11434E5400B7C09B /* tsk_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_thread.h; sourceTree = ""; }; + ECF4BE2D11434E5400B7C09B /* tsk_time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_time.c; sourceTree = ""; }; + ECF4BE2E11434E5400B7C09B /* tsk_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_time.h; sourceTree = ""; }; + ECF4BE2F11434E5400B7C09B /* tsk_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_timer.c; sourceTree = ""; }; + ECF4BE3011434E5400B7C09B /* tsk_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_timer.h; sourceTree = ""; }; + ECF4BE3111434E5400B7C09B /* tsk_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_url.c; sourceTree = ""; }; + ECF4BE3211434E5400B7C09B /* tsk_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_url.h; sourceTree = ""; }; + ECF4BE3311434E5400B7C09B /* tsk_uuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_uuid.c; sourceTree = ""; }; + ECF4BE3411434E5400B7C09B /* tsk_uuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_uuid.h; sourceTree = ""; }; + ECF4BE3511434E5400B7C09B /* tsk_xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_xml.c; sourceTree = ""; }; + ECF4BE3611434E5400B7C09B /* tsk_xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_xml.h; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -193,46 +203,13 @@ 08FB7794FE84155DC02AAC07 /* tinySAK */ = { isa = PBXGroup; children = ( + ECF4BDFB11434E5400B7C09B /* src */, EC6C560C10EDE6E9000E1B18 /* test */, - EC6C557710EDE5AA000E1B18 /* include */, - 08FB7795FE84155DC02AAC07 /* source */, 1AB674ADFE9D54B511CA2CBB /* Products */, ); name = tinySAK; sourceTree = ""; }; - 08FB7795FE84155DC02AAC07 /* source */ = { - isa = PBXGroup; - children = ( - EC6C559310EDE5EF000E1B18 /* tsk_mutex.c */, - EC6C55A310EDE5EF000E1B18 /* tsk_string.c */, - EC6C55A510EDE5EF000E1B18 /* tsk_thread.c */, - EC6C55A710EDE5EF000E1B18 /* tsk_time.c */, - EC6C55A910EDE5EF000E1B18 /* tsk_timer.c */, - EC6C55AB10EDE5EF000E1B18 /* tsk_url.c */, - EC6C55AD10EDE5EF000E1B18 /* tsk_xml.c */, - EC6C558310EDE5EF000E1B18 /* tsk_condwait.c */, - EC6C558510EDE5EF000E1B18 /* tsk_debug.c */, - EC6C558810EDE5EF000E1B18 /* tsk_heap.c */, - EC6C558A10EDE5EF000E1B18 /* tsk_hmac.c */, - EC6C558C10EDE5EF000E1B18 /* tsk_list.c */, - EC6C558F10EDE5EF000E1B18 /* tsk_md5.c */, - EC6C559110EDE5EF000E1B18 /* tsk_memory.c */, - EC6C559510EDE5EF000E1B18 /* tsk_object.c */, - EC6C559710EDE5EF000E1B18 /* tsk_params.c */, - EC6C559910EDE5EF000E1B18 /* tsk_ppfcs16.c */, - EC6C559B10EDE5EF000E1B18 /* tsk_runnable.c */, - EC6C559D10EDE5EF000E1B18 /* tsk_safeobj.c */, - EC6C559F10EDE5EF000E1B18 /* tsk_semaphore.c */, - EC6C55A110EDE5EF000E1B18 /* tsk_sha1.c */, - EC6C557B10EDE5EF000E1B18 /* tsk.c */, - EC6C557D10EDE5EF000E1B18 /* tsk_base64.c */, - EC6C557F10EDE5EF000E1B18 /* tsk_binaryutils.c */, - EC6C558110EDE5EF000E1B18 /* tsk_buffer.c */, - ); - name = source; - sourceTree = ""; - }; 1AB674ADFE9D54B511CA2CBB /* Products */ = { isa = PBXGroup; children = ( @@ -242,41 +219,6 @@ name = Products; sourceTree = ""; }; - EC6C557710EDE5AA000E1B18 /* include */ = { - isa = PBXGroup; - children = ( - EC6C557A10EDE5EF000E1B18 /* tinySAK_config.h */, - EC6C557C10EDE5EF000E1B18 /* tsk.h */, - EC6C557E10EDE5EF000E1B18 /* tsk_base64.h */, - EC6C558010EDE5EF000E1B18 /* tsk_binaryutils.h */, - EC6C558210EDE5EF000E1B18 /* tsk_buffer.h */, - EC6C558410EDE5EF000E1B18 /* tsk_condwait.h */, - EC6C558610EDE5EF000E1B18 /* tsk_debug.h */, - EC6C558710EDE5EF000E1B18 /* tsk_errno.h */, - EC6C558910EDE5EF000E1B18 /* tsk_heap.h */, - EC6C558B10EDE5EF000E1B18 /* tsk_hmac.h */, - EC6C558D10EDE5EF000E1B18 /* tsk_list.h */, - EC6C558E10EDE5EF000E1B18 /* tsk_macros.h */, - EC6C559010EDE5EF000E1B18 /* tsk_md5.h */, - EC6C559210EDE5EF000E1B18 /* tsk_memory.h */, - EC6C559410EDE5EF000E1B18 /* tsk_mutex.h */, - EC6C559610EDE5EF000E1B18 /* tsk_object.h */, - EC6C559810EDE5EF000E1B18 /* tsk_params.h */, - EC6C559A10EDE5EF000E1B18 /* tsk_ppfcs16.h */, - EC6C559C10EDE5EF000E1B18 /* tsk_runnable.h */, - EC6C559E10EDE5EF000E1B18 /* tsk_safeobj.h */, - EC6C55A010EDE5EF000E1B18 /* tsk_semaphore.h */, - EC6C55A210EDE5EF000E1B18 /* tsk_sha1.h */, - EC6C55A410EDE5EF000E1B18 /* tsk_string.h */, - EC6C55A610EDE5EF000E1B18 /* tsk_thread.h */, - EC6C55A810EDE5EF000E1B18 /* tsk_time.h */, - EC6C55AA10EDE5EF000E1B18 /* tsk_timer.h */, - EC6C55AC10EDE5EF000E1B18 /* tsk_url.h */, - EC6C55AE10EDE5EF000E1B18 /* tsk_xml.h */, - ); - name = include; - sourceTree = ""; - }; EC6C560C10EDE6E9000E1B18 /* test */ = { isa = PBXGroup; children = ( @@ -304,6 +246,72 @@ name = test; sourceTree = ""; }; + ECF4BDFB11434E5400B7C09B /* src */ = { + isa = PBXGroup; + children = ( + ECF4BDFD11434E5400B7C09B /* tinySAK_config.h */, + ECF4BDFE11434E5400B7C09B /* tsk.c */, + ECF4BDFF11434E5400B7C09B /* tsk.h */, + ECF4BE0011434E5400B7C09B /* tsk_base64.c */, + ECF4BE0111434E5400B7C09B /* tsk_base64.h */, + ECF4BE0211434E5400B7C09B /* tsk_binaryutils.c */, + ECF4BE0311434E5400B7C09B /* tsk_binaryutils.h */, + ECF4BE0411434E5400B7C09B /* tsk_buffer.c */, + ECF4BE0511434E5400B7C09B /* tsk_buffer.h */, + ECF4BE0611434E5400B7C09B /* tsk_condwait.c */, + ECF4BE0711434E5400B7C09B /* tsk_condwait.h */, + ECF4BE0811434E5400B7C09B /* tsk_debug.c */, + ECF4BE0911434E5400B7C09B /* tsk_debug.h */, + ECF4BE0A11434E5400B7C09B /* tsk_errno.h */, + ECF4BE0B11434E5400B7C09B /* tsk_fsm.c */, + ECF4BE0C11434E5400B7C09B /* tsk_fsm.h */, + ECF4BE0D11434E5400B7C09B /* tsk_hmac.c */, + ECF4BE0E11434E5400B7C09B /* tsk_hmac.h */, + ECF4BE0F11434E5400B7C09B /* tsk_list.c */, + ECF4BE1011434E5400B7C09B /* tsk_list.h */, + ECF4BE1111434E5400B7C09B /* tsk_md5.c */, + ECF4BE1211434E5400B7C09B /* tsk_md5.h */, + ECF4BE1311434E5400B7C09B /* tsk_memory.c */, + ECF4BE1411434E5400B7C09B /* tsk_memory.h */, + ECF4BE1511434E5400B7C09B /* tsk_mutex.c */, + ECF4BE1611434E5400B7C09B /* tsk_mutex.h */, + ECF4BE1711434E5400B7C09B /* tsk_object.c */, + ECF4BE1811434E5400B7C09B /* tsk_object.h */, + ECF4BE1911434E5400B7C09B /* tsk_params.c */, + ECF4BE1A11434E5400B7C09B /* tsk_params.h */, + ECF4BE1B11434E5400B7C09B /* tsk_ppfcs16.c */, + ECF4BE1C11434E5400B7C09B /* tsk_ppfcs16.h */, + ECF4BE1D11434E5400B7C09B /* tsk_ppfcs32.c */, + ECF4BE1E11434E5400B7C09B /* tsk_ppfcs32.h */, + ECF4BE1F11434E5400B7C09B /* tsk_ragel_state.c */, + ECF4BE2011434E5400B7C09B /* tsk_ragel_state.h */, + ECF4BE2111434E5400B7C09B /* tsk_runnable.c */, + ECF4BE2211434E5400B7C09B /* tsk_runnable.h */, + ECF4BE2311434E5400B7C09B /* tsk_safeobj.c */, + ECF4BE2411434E5400B7C09B /* tsk_safeobj.h */, + ECF4BE2511434E5400B7C09B /* tsk_semaphore.c */, + ECF4BE2611434E5400B7C09B /* tsk_semaphore.h */, + ECF4BE2711434E5400B7C09B /* tsk_sha1.c */, + ECF4BE2811434E5400B7C09B /* tsk_sha1.h */, + ECF4BE2911434E5400B7C09B /* tsk_string.c */, + ECF4BE2A11434E5400B7C09B /* tsk_string.h */, + ECF4BE2B11434E5400B7C09B /* tsk_thread.c */, + ECF4BE2C11434E5400B7C09B /* tsk_thread.h */, + ECF4BE2D11434E5400B7C09B /* tsk_time.c */, + ECF4BE2E11434E5400B7C09B /* tsk_time.h */, + ECF4BE2F11434E5400B7C09B /* tsk_timer.c */, + ECF4BE3011434E5400B7C09B /* tsk_timer.h */, + ECF4BE3111434E5400B7C09B /* tsk_url.c */, + ECF4BE3211434E5400B7C09B /* tsk_url.h */, + ECF4BE3311434E5400B7C09B /* tsk_uuid.c */, + ECF4BE3411434E5400B7C09B /* tsk_uuid.h */, + ECF4BE3511434E5400B7C09B /* tsk_xml.c */, + ECF4BE3611434E5400B7C09B /* tsk_xml.h */, + ); + name = src; + path = ../../tinySAK/src; + sourceTree = SOURCE_ROOT; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -311,34 +319,36 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - EC6C55AF10EDE5EF000E1B18 /* tinySAK_config.h in Headers */, - EC6C55B110EDE5EF000E1B18 /* tsk.h in Headers */, - EC6C55B310EDE5EF000E1B18 /* tsk_base64.h in Headers */, - EC6C55B510EDE5EF000E1B18 /* tsk_binaryutils.h in Headers */, - EC6C55B710EDE5EF000E1B18 /* tsk_buffer.h in Headers */, - EC6C55B910EDE5EF000E1B18 /* tsk_condwait.h in Headers */, - EC6C55BB10EDE5EF000E1B18 /* tsk_debug.h in Headers */, - EC6C55BC10EDE5EF000E1B18 /* tsk_errno.h in Headers */, - EC6C55BE10EDE5EF000E1B18 /* tsk_heap.h in Headers */, - EC6C55C010EDE5EF000E1B18 /* tsk_hmac.h in Headers */, - EC6C55C210EDE5EF000E1B18 /* tsk_list.h in Headers */, - EC6C55C310EDE5EF000E1B18 /* tsk_macros.h in Headers */, - EC6C55C510EDE5EF000E1B18 /* tsk_md5.h in Headers */, - EC6C55C710EDE5EF000E1B18 /* tsk_memory.h in Headers */, - EC6C55C910EDE5EF000E1B18 /* tsk_mutex.h in Headers */, - EC6C55CB10EDE5EF000E1B18 /* tsk_object.h in Headers */, - EC6C55CD10EDE5EF000E1B18 /* tsk_params.h in Headers */, - EC6C55CF10EDE5EF000E1B18 /* tsk_ppfcs16.h in Headers */, - EC6C55D110EDE5EF000E1B18 /* tsk_runnable.h in Headers */, - EC6C55D310EDE5EF000E1B18 /* tsk_safeobj.h in Headers */, - EC6C55D510EDE5EF000E1B18 /* tsk_semaphore.h in Headers */, - EC6C55D710EDE5EF000E1B18 /* tsk_sha1.h in Headers */, - EC6C55D910EDE5EF000E1B18 /* tsk_string.h in Headers */, - EC6C55DB10EDE5EF000E1B18 /* tsk_thread.h in Headers */, - EC6C55DD10EDE5EF000E1B18 /* tsk_time.h in Headers */, - EC6C55DF10EDE5EF000E1B18 /* tsk_timer.h in Headers */, - EC6C55E110EDE5EF000E1B18 /* tsk_url.h in Headers */, - EC6C55E310EDE5EF000E1B18 /* tsk_xml.h in Headers */, + ECF4BE3811434E5400B7C09B /* tinySAK_config.h in Headers */, + ECF4BE3A11434E5400B7C09B /* tsk.h in Headers */, + ECF4BE3C11434E5400B7C09B /* tsk_base64.h in Headers */, + ECF4BE3E11434E5400B7C09B /* tsk_binaryutils.h in Headers */, + ECF4BE4011434E5400B7C09B /* tsk_buffer.h in Headers */, + ECF4BE4211434E5400B7C09B /* tsk_condwait.h in Headers */, + ECF4BE4411434E5400B7C09B /* tsk_debug.h in Headers */, + ECF4BE4511434E5400B7C09B /* tsk_errno.h in Headers */, + ECF4BE4711434E5400B7C09B /* tsk_fsm.h in Headers */, + ECF4BE4911434E5400B7C09B /* tsk_hmac.h in Headers */, + ECF4BE4B11434E5400B7C09B /* tsk_list.h in Headers */, + ECF4BE4D11434E5400B7C09B /* tsk_md5.h in Headers */, + ECF4BE4F11434E5400B7C09B /* tsk_memory.h in Headers */, + ECF4BE5111434E5400B7C09B /* tsk_mutex.h in Headers */, + ECF4BE5311434E5400B7C09B /* tsk_object.h in Headers */, + ECF4BE5511434E5400B7C09B /* tsk_params.h in Headers */, + ECF4BE5711434E5400B7C09B /* tsk_ppfcs16.h in Headers */, + ECF4BE5911434E5400B7C09B /* tsk_ppfcs32.h in Headers */, + ECF4BE5B11434E5400B7C09B /* tsk_ragel_state.h in Headers */, + ECF4BE5D11434E5400B7C09B /* tsk_runnable.h in Headers */, + ECF4BE5F11434E5400B7C09B /* tsk_safeobj.h in Headers */, + ECF4BE6111434E5400B7C09B /* tsk_semaphore.h in Headers */, + ECF4BE6311434E5400B7C09B /* tsk_sha1.h in Headers */, + ECF4BE6511434E5400B7C09B /* tsk_string.h in Headers */, + ECF4BE6711434E5400B7C09B /* tsk_thread.h in Headers */, + ECF4BE6911434E5400B7C09B /* tsk_time.h in Headers */, + ECF4BE6B11434E5400B7C09B /* tsk_timer.h in Headers */, + ECF4BE6D11434E5400B7C09B /* tsk_url.h in Headers */, + ECF4BE6F11434E5400B7C09B /* tsk_uuid.h in Headers */, + ECF4BE7111434E5400B7C09B /* tsk_xml.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -402,31 +412,34 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - EC6C55B010EDE5EF000E1B18 /* tsk.c in Sources */, - EC6C55B210EDE5EF000E1B18 /* tsk_base64.c in Sources */, - EC6C55B410EDE5EF000E1B18 /* tsk_binaryutils.c in Sources */, - EC6C55B610EDE5EF000E1B18 /* tsk_buffer.c in Sources */, - EC6C55B810EDE5EF000E1B18 /* tsk_condwait.c in Sources */, - EC6C55BA10EDE5EF000E1B18 /* tsk_debug.c in Sources */, - EC6C55BD10EDE5EF000E1B18 /* tsk_heap.c in Sources */, - EC6C55BF10EDE5EF000E1B18 /* tsk_hmac.c in Sources */, - EC6C55C110EDE5EF000E1B18 /* tsk_list.c in Sources */, - EC6C55C410EDE5EF000E1B18 /* tsk_md5.c in Sources */, - EC6C55C610EDE5EF000E1B18 /* tsk_memory.c in Sources */, - EC6C55C810EDE5EF000E1B18 /* tsk_mutex.c in Sources */, - EC6C55CA10EDE5EF000E1B18 /* tsk_object.c in Sources */, - EC6C55CC10EDE5EF000E1B18 /* tsk_params.c in Sources */, - EC6C55CE10EDE5EF000E1B18 /* tsk_ppfcs16.c in Sources */, - EC6C55D010EDE5EF000E1B18 /* tsk_runnable.c in Sources */, - EC6C55D210EDE5EF000E1B18 /* tsk_safeobj.c in Sources */, - EC6C55D410EDE5EF000E1B18 /* tsk_semaphore.c in Sources */, - EC6C55D610EDE5EF000E1B18 /* tsk_sha1.c in Sources */, - EC6C55D810EDE5EF000E1B18 /* tsk_string.c in Sources */, - EC6C55DA10EDE5EF000E1B18 /* tsk_thread.c in Sources */, - EC6C55DC10EDE5EF000E1B18 /* tsk_time.c in Sources */, - EC6C55DE10EDE5EF000E1B18 /* tsk_timer.c in Sources */, - EC6C55E010EDE5EF000E1B18 /* tsk_url.c in Sources */, - EC6C55E210EDE5EF000E1B18 /* tsk_xml.c in Sources */, + ECF4BE3911434E5400B7C09B /* tsk.c in Sources */, + ECF4BE3B11434E5400B7C09B /* tsk_base64.c in Sources */, + ECF4BE3D11434E5400B7C09B /* tsk_binaryutils.c in Sources */, + ECF4BE3F11434E5400B7C09B /* tsk_buffer.c in Sources */, + ECF4BE4111434E5400B7C09B /* tsk_condwait.c in Sources */, + ECF4BE4311434E5400B7C09B /* tsk_debug.c in Sources */, + ECF4BE4611434E5400B7C09B /* tsk_fsm.c in Sources */, + ECF4BE4811434E5400B7C09B /* tsk_hmac.c in Sources */, + ECF4BE4A11434E5400B7C09B /* tsk_list.c in Sources */, + ECF4BE4C11434E5400B7C09B /* tsk_md5.c in Sources */, + ECF4BE4E11434E5400B7C09B /* tsk_memory.c in Sources */, + ECF4BE5011434E5400B7C09B /* tsk_mutex.c in Sources */, + ECF4BE5211434E5400B7C09B /* tsk_object.c in Sources */, + ECF4BE5411434E5400B7C09B /* tsk_params.c in Sources */, + ECF4BE5611434E5400B7C09B /* tsk_ppfcs16.c in Sources */, + ECF4BE5811434E5400B7C09B /* tsk_ppfcs32.c in Sources */, + ECF4BE5A11434E5400B7C09B /* tsk_ragel_state.c in Sources */, + ECF4BE5C11434E5400B7C09B /* tsk_runnable.c in Sources */, + ECF4BE5E11434E5400B7C09B /* tsk_safeobj.c in Sources */, + ECF4BE6011434E5400B7C09B /* tsk_semaphore.c in Sources */, + ECF4BE6211434E5400B7C09B /* tsk_sha1.c in Sources */, + ECF4BE6411434E5400B7C09B /* tsk_string.c in Sources */, + ECF4BE6611434E5400B7C09B /* tsk_thread.c in Sources */, + ECF4BE6811434E5400B7C09B /* tsk_time.c in Sources */, + ECF4BE6A11434E5400B7C09B /* tsk_timer.c in Sources */, + ECF4BE6C11434E5400B7C09B /* tsk_url.c in Sources */, + ECF4BE6E11434E5400B7C09B /* tsk_uuid.c in Sources */, + ECF4BE7011434E5400B7C09B /* tsk_xml.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.pbxuser b/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.pbxuser index 64ca613b..1d226ab5 100644 --- a/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.pbxuser +++ b/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.pbxuser @@ -3,8 +3,9 @@ 08FB7793FE84155DC02AAC07 /* Project object */ = { activeBuildConfigurationName = Debug; activeExecutable = ECED6AFF10F9A93A006B4DC9 /* test */; - activeTarget = ECF46DC011347F8100390CBE /* tinyIPSec */; + activeTarget = ECED6AFD10F9A93A006B4DC9 /* test */; addToTargets = ( + ECED686310F997F2006B4DC9 /* tinyNET */, ); breakpoints = ( ECED6B1F10F9AAA9006B4DC9 /* test_stack.h:40 */, @@ -58,7 +59,7 @@ PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Built_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 910, + 1322, 20, 48, 43, @@ -104,7 +105,7 @@ PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, - 870, + 1282, 60, 20, 48, @@ -121,248 +122,73 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 288648111; - PBXWorkspaceStateSaveDate = 288648111; + PBXPerProjectTemplateStateSaveDate = 289623732; + PBXWorkspaceStateSaveDate = 289623732; }; perUserProjectItems = { - 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 */; + ECF46D7B11347A2A00390CBE = ECF46D7B11347A2A00390CBE /* PBXTextBookmark */; + ECF46D7C11347A2A00390CBE = ECF46D7C11347A2A00390CBE /* PBXTextBookmark */; + ECF46D7D11347A2A00390CBE = ECF46D7D11347A2A00390CBE /* PBXTextBookmark */; + ECF46D7E11347A2A00390CBE = ECF46D7E11347A2A00390CBE /* PBXTextBookmark */; + ECF46D7F11347A2A00390CBE = ECF46D7F11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8011347A2A00390CBE = ECF46D8011347A2A00390CBE /* PBXTextBookmark */; + ECF46D8111347A2A00390CBE = ECF46D8111347A2A00390CBE /* PBXTextBookmark */; + ECF46D8411347A2A00390CBE = ECF46D8411347A2A00390CBE /* PBXTextBookmark */; + ECF46D8511347A2A00390CBE = ECF46D8511347A2A00390CBE /* PBXTextBookmark */; + ECF46D8611347A2A00390CBE = ECF46D8611347A2A00390CBE /* PBXTextBookmark */; + ECF46D8711347A2A00390CBE = ECF46D8711347A2A00390CBE /* PBXTextBookmark */; + ECF46D8811347A2A00390CBE = ECF46D8811347A2A00390CBE /* PBXTextBookmark */; + ECF46D8911347A2A00390CBE = ECF46D8911347A2A00390CBE /* PBXTextBookmark */; + ECF46D8A11347A2A00390CBE = ECF46D8A11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8B11347A2A00390CBE = ECF46D8B11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8C11347A2A00390CBE = ECF46D8C11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8D11347A2A00390CBE = ECF46D8D11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8E11347A2A00390CBE = ECF46D8E11347A2A00390CBE /* PBXTextBookmark */; + ECF46D8F11347A2A00390CBE = ECF46D8F11347A2A00390CBE /* PBXTextBookmark */; + ECF46D9011347A2A00390CBE = ECF46D9011347A2A00390CBE /* PBXTextBookmark */; + ECF46D9111347A2A00390CBE = ECF46D9111347A2A00390CBE /* PBXTextBookmark */; + ECF46D9211347A2A00390CBE = ECF46D9211347A2A00390CBE /* PBXTextBookmark */; + ECF46D9311347A2A00390CBE = ECF46D9311347A2A00390CBE /* PBXTextBookmark */; + ECF46D9F11347C1200390CBE = ECF46D9F11347C1200390CBE /* PBXTextBookmark */; + ECF46DA011347C1200390CBE = ECF46DA011347C1200390CBE /* PBXTextBookmark */; + ECF46DA111347C1200390CBE = ECF46DA111347C1200390CBE /* PBXTextBookmark */; + ECF46DA211347C1200390CBE = ECF46DA211347C1200390CBE /* PBXTextBookmark */; + ECF46DA311347C1200390CBE = ECF46DA311347C1200390CBE /* PBXTextBookmark */; + ECF46DA411347C1200390CBE = ECF46DA411347C1200390CBE /* PBXTextBookmark */; + ECF46DA611347C1200390CBE = ECF46DA611347C1200390CBE /* PBXTextBookmark */; + ECF46DA711347C1200390CBE = ECF46DA711347C1200390CBE /* PBXTextBookmark */; + ECF46DA811347C1200390CBE = ECF46DA811347C1200390CBE /* PBXTextBookmark */; + ECF46DA911347C1200390CBE = ECF46DA911347C1200390CBE /* PBXTextBookmark */; + ECF46DAA11347C1200390CBE = ECF46DAA11347C1200390CBE /* PBXTextBookmark */; + ECF46DAB11347C1200390CBE = ECF46DAB11347C1200390CBE /* PBXTextBookmark */; + ECF46DAC11347C1200390CBE = ECF46DAC11347C1200390CBE /* PBXTextBookmark */; + ECF46DAD11347C1200390CBE = ECF46DAD11347C1200390CBE /* PBXTextBookmark */; + ECF46DD511347FCD00390CBE = ECF46DD511347FCD00390CBE /* PBXTextBookmark */; + ECF46DD611347FCD00390CBE = ECF46DD611347FCD00390CBE /* PBXTextBookmark */; + ECF46DD711347FCD00390CBE = ECF46DD711347FCD00390CBE /* PBXTextBookmark */; + ECF46DDA1134802500390CBE = ECF46DDA1134802500390CBE /* PBXTextBookmark */; + ECF4C90A114350D100B7C09B /* PBXTextBookmark */ = ECF4C90A114350D100B7C09B /* PBXTextBookmark */; + ECF4C90B114350D100B7C09B /* PBXTextBookmark */ = ECF4C90B114350D100B7C09B /* PBXTextBookmark */; + ECF4C90C114350D100B7C09B /* PBXTextBookmark */ = ECF4C90C114350D100B7C09B /* PBXTextBookmark */; + ECF4C90D114350D100B7C09B /* PBXTextBookmark */ = ECF4C90D114350D100B7C09B /* PBXTextBookmark */; + ECF4C90E114350D100B7C09B /* PBXTextBookmark */ = ECF4C90E114350D100B7C09B /* PBXTextBookmark */; + ECF4C90F114350D100B7C09B /* PBXTextBookmark */ = ECF4C90F114350D100B7C09B /* PBXTextBookmark */; + ECF4C910114350D100B7C09B /* PBXTextBookmark */ = ECF4C910114350D100B7C09B /* PBXTextBookmark */; + ECF4C911114350D100B7C09B /* PBXTextBookmark */ = ECF4C911114350D100B7C09B /* PBXTextBookmark */; + ECF4C912114350D100B7C09B /* PBXTextBookmark */ = ECF4C912114350D100B7C09B /* PBXTextBookmark */; + ECF4C913114350D100B7C09B /* PBXTextBookmark */ = ECF4C913114350D100B7C09B /* PBXTextBookmark */; + ECF4C914114350D100B7C09B /* PBXTextBookmark */ = ECF4C914114350D100B7C09B /* PBXTextBookmark */; + ECF4C915114350D100B7C09B /* PBXTextBookmark */ = ECF4C915114350D100B7C09B /* PBXTextBookmark */; + ECF4C916114350D100B7C09B /* PBXTextBookmark */ = ECF4C916114350D100B7C09B /* PBXTextBookmark */; + ECF4C917114350D100B7C09B /* PBXTextBookmark */ = ECF4C917114350D100B7C09B /* PBXTextBookmark */; + ECF4C918114350D100B7C09B /* PBXTextBookmark */ = ECF4C918114350D100B7C09B /* PBXTextBookmark */; + ECF4C919114350D100B7C09B /* PBXTextBookmark */ = ECF4C919114350D100B7C09B /* PBXTextBookmark */; + ECF4C91A114350D100B7C09B /* PBXTextBookmark */ = ECF4C91A114350D100B7C09B /* PBXTextBookmark */; + ECF4C91B114350D100B7C09B /* PBXTextBookmark */ = ECF4C91B114350D100B7C09B /* PBXTextBookmark */; + ECF4C91C114350D100B7C09B /* PBXTextBookmark */ = ECF4C91C114350D100B7C09B /* PBXTextBookmark */; + ECF4C921114350EA00B7C09B /* PBXTextBookmark */ = ECF4C921114350EA00B7C09B /* PBXTextBookmark */; + ECF4C922114350F100B7C09B /* PBXTextBookmark */ = ECF4C922114350F100B7C09B /* PBXTextBookmark */; + ECF4C92A1143512B00B7C09B /* PBXTextBookmark */ = ECF4C92A1143512B00B7C09B /* PBXTextBookmark */; }; sourceControlManager = ECED644410F99551006B4DC9 /* Source Control */; userBuildSettings = { @@ -371,403 +197,6 @@ D2AAC0620554660B00DB518D /* tinySIP */ = { activeExec = 0; }; - EC02B10A10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED67FE10F996F6006B4DC9 /* tsk_hmac.c */; - name = "tsk_hmac.c: 65"; - rLen = 19; - rLoc = 1814; - rType = 0; - vrLen = 522; - vrLoc = 1437; - }; - EC02B10B10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687110F99811006B4DC9 /* tnet_socket.h */; - name = "tnet_socket.h: 34"; - rLen = 10; - rLoc = 1015; - rType = 0; - vrLen = 1002; - vrLoc = 406; - }; - EC02B10C10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687610F99811006B4DC9 /* tnet_types.h */; - name = "tnet_types.h: 47"; - rLen = 0; - rLoc = 1239; - rType = 0; - vrLen = 573; - vrLoc = 881; - }; - EC02B10D10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC02B10E10FA4E8C0055FBF1 /* unistd.h */; - name = "unistd.h: 422"; - rLen = 41; - rLoc = 14661; - rType = 0; - vrLen = 944; - vrLoc = 14122; - }; - EC02B10E10FA4E8C0055FBF1 /* unistd.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = unistd.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/unistd.h; - sourceTree = ""; - }; - EC02B10F10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6AEB10F9A66E006B4DC9 /* thttp_auth.c */; - name = "thttp_auth.c: 66"; - rLen = 0; - rLoc = 2053; - rType = 0; - vrLen = 786; - vrLoc = 1565; - }; - EC02B11010FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC02B11110FA4E8C0055FBF1 /* string.h */; - name = "string.h: 98"; - rLen = 30; - rLoc = 4003; - rType = 0; - vrLen = 1267; - vrLoc = 3413; - }; - EC02B11110FA4E8C0055FBF1 /* string.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - 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; - fRef = ECED67F110F996F6006B4DC9 /* tsk_base64.c */; - name = "tsk_base64.c: 154"; - rLen = 82; - rLoc = 6181; - rType = 0; - vrLen = 1499; - vrLoc = 5629; - }; - EC02B11510FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC02B11610FA4E8C0055FBF1 /* thttp_auth.h */; - name = "thttp_auth.h: 57"; - rLen = 145; - rLoc = 2011; - rType = 0; - vrLen = 1233; - vrLoc = 1060; - }; - EC02B11610FA4E8C0055FBF1 /* thttp_auth.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = thttp_auth.h; - path = /Users/diopmamadou/Documents/doubango/tinyHTTP/include/tinyHTTP/auth/thttp_auth.h; - sourceTree = ""; - }; - EC02B11710FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68E110F9A303006B4DC9 /* tsip_challenge.c */; - name = "tsip_challenge.c: 252"; - rLen = 15; - rLoc = 6642; - rType = 0; - vrLen = 483; - vrLoc = 6193; - }; - EC02B11910FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED69ED10F9A343006B4DC9 /* tsip_dialog.h */; - name = "tsip_dialog.h: 38"; - rLen = 35; - rLoc = 1130; - rType = 0; - vrLen = 819; - vrLoc = 755; - }; - EC02B11B10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED69FF10F9A343006B4DC9 /* tsip_header_Call_ID.h */; - name = "tsip_header_Call_ID.h: 34"; - rLen = 42; - rLoc = 1036; - rType = 0; - vrLen = 1000; - vrLoc = 728; - }; - EC02B11C10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED69F410F9A343006B4DC9 /* tsip_header.h */; - name = "tsip_header.h: 171"; - rLen = 78; - rLoc = 4574; - rType = 0; - vrLen = 1415; - vrLoc = 4119; - }; - EC02B11D10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED690210F9A303006B4DC9 /* tsip_header_CSeq.c */; - name = "tsip_header_CSeq.c: 200"; - rLen = 18; - rLoc = 4153; - rType = 0; - vrLen = 591; - vrLoc = 3838; - }; - EC02B11E10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A5610F9A343006B4DC9 /* tsip_ragel_state.h */; - name = "tsip_ragel_state.h: 36"; - rLen = 0; - rLoc = 1083; - rType = 0; - vrLen = 607; - vrLoc = 755; - }; - EC02B11F10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED694910F9A303006B4DC9 /* tsip_header_Via.c */; - name = "tsip_header_Via.c: 1060"; - rLen = 39; - rLoc = 20752; - rType = 0; - vrLen = 611; - vrLoc = 20470; - }; - EC02B12010FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68EF10F9A303006B4DC9 /* tsip_header.c */; - name = "tsip_header.c: 177"; - rLen = 0; - rLoc = 7122; - rType = 0; - vrLen = 530; - vrLoc = 6882; - }; - EC02B12110FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68F610F9A303006B4DC9 /* tsip_header_Allow.c */; - name = "tsip_header_Allow.c: 83"; - rLen = 24; - rLoc = 1985; - rType = 0; - vrLen = 621; - vrLoc = 1733; - }; - EC02B12310FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A5F10F9A343006B4DC9 /* tsip_transac.h */; - name = "tsip_transac.h: 124"; - rLen = 40; - rLoc = 3497; - rType = 0; - vrLen = 497; - vrLoc = 3087; - }; - EC02B12610FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED67FE10F996F6006B4DC9 /* tsk_hmac.c */; - name = "tsk_hmac.c: 65"; - rLen = 19; - rLoc = 1814; - rType = 0; - vrLen = 522; - vrLoc = 1437; - }; - EC02B12710FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687710F99811006B4DC9 /* tnet_utils.c */; - name = "tnet_utils.c: 194"; - rLen = 11; - rLoc = 4908; - rType = 0; - vrLen = 1024; - vrLoc = 4551; - }; - EC02B12810FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC02B12910FA4E8C0055FBF1 /* unistd.h */; - name = "unistd.h: 451"; - rLen = 34; - rLoc = 15616; - rType = 0; - vrLen = 1021; - vrLoc = 15112; - }; - EC02B12910FA4E8C0055FBF1 /* unistd.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = unistd.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/unistd.h; - sourceTree = ""; - }; - EC02B12B10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687110F99811006B4DC9 /* tnet_socket.h */; - name = "tnet_socket.h: 34"; - rLen = 10; - rLoc = 1015; - rType = 0; - vrLen = 1002; - vrLoc = 406; - }; - EC02B12C10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687610F99811006B4DC9 /* tnet_types.h */; - name = "tnet_types.h: 47"; - rLen = 0; - rLoc = 1239; - rType = 0; - vrLen = 573; - vrLoc = 881; - }; - EC02B13010FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6AEB10F9A66E006B4DC9 /* thttp_auth.c */; - name = "thttp_auth.c: 66"; - rLen = 17; - rLoc = 2028; - rType = 0; - vrLen = 871; - vrLoc = 1444; - }; - EC02B13110FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED67F110F996F6006B4DC9 /* tsk_base64.c */; - name = "tsk_base64.c: 75"; - rLen = 82; - rLoc = 3029; - rType = 0; - vrLen = 1483; - vrLoc = 2467; - }; - EC02B13610FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC02B13710FA4E8C0055FBF1 /* string.h */; - name = "string.h: 98"; - rLen = 30; - rLoc = 4003; - rType = 0; - vrLen = 1267; - vrLoc = 3413; - }; - EC02B13710FA4E8C0055FBF1 /* string.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = string.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h; - sourceTree = ""; - }; - EC02B13D10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED69FF10F9A343006B4DC9 /* tsip_header_Call_ID.h */; - name = "tsip_header_Call_ID.h: 34"; - rLen = 42; - rLoc = 1036; - rType = 0; - vrLen = 1000; - vrLoc = 728; - }; - EC02B13F10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68EF10F9A303006B4DC9 /* tsip_header.c */; - name = "tsip_header.c: 145"; - rLen = 0; - rLoc = 6574; - rType = 0; - vrLen = 509; - vrLoc = 6398; - }; - EC02B14610FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC02B14710FA4E8C0055FBF1 /* thttp_auth.h */; - name = "thttp_auth.h: 57"; - rLen = 145; - rLoc = 2011; - rType = 0; - vrLen = 1233; - vrLoc = 1060; - }; - EC02B14710FA4E8C0055FBF1 /* thttp_auth.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = thttp_auth.h; - path = /Users/diopmamadou/Documents/doubango/tinyHTTP/include/tinyHTTP/auth/thttp_auth.h; - sourceTree = ""; - }; - EC02B14910FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68E510F9A303006B4DC9 /* tsip_dialog.c */; - name = "tsip_dialog.c: 30"; - rLen = 42; - rLoc = 961; - rType = 0; - vrLen = 961; - vrLoc = 535; - }; - EC02B14A10FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED69ED10F9A343006B4DC9 /* tsip_dialog.h */; - name = "tsip_dialog.h: 38"; - rLen = 35; - rLoc = 1130; - rType = 0; - vrLen = 819; - vrLoc = 755; - }; - EC02B15010FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68F610F9A303006B4DC9 /* tsip_header_Allow.c */; - name = "tsip_header_Allow.c: 91"; - rLen = 69; - rLoc = 2223; - rType = 0; - vrLen = 676; - vrLoc = 2075; - }; - EC02B15110FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED690210F9A303006B4DC9 /* tsip_header_CSeq.c */; - name = "tsip_header_CSeq.c: 200"; - rLen = 18; - rLoc = 4153; - rType = 0; - vrLen = 591; - vrLoc = 3838; - }; - EC02B15210FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A5610F9A343006B4DC9 /* tsip_ragel_state.h */; - name = "tsip_ragel_state.h: 36"; - rLen = 0; - rLoc = 1083; - rType = 0; - vrLen = 607; - vrLoc = 755; - }; - EC02B15310FA4E8C0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED694910F9A303006B4DC9 /* tsip_header_Via.c */; - name = "tsip_header_Via.c: 1060"; - rLen = 39; - rLoc = 20752; - rType = 0; - vrLen = 611; - vrLoc = 20470; - }; EC02B15C10FA4EF20055FBF1 /* tsip_transac_nict_sm.c:387 */ = { isa = PBXFileBreakpoint; actions = ( @@ -785,16 +214,6 @@ modificationTime = 284940129.0086629; state = 2; }; - EC02B15E10FA4EFA0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687710F99811006B4DC9 /* tnet_utils.c */; - name = "tnet_utils.c: 52"; - rLen = 0; - rLoc = 1324; - rType = 0; - vrLen = 509; - vrLoc = 1032; - }; EC02B16A10FA4F690055FBF1 /* tsip_dialog.c:265 */ = { isa = PBXFileBreakpoint; actions = ( @@ -829,36 +248,6 @@ modificationTime = 284940129.008777; state = 2; }; - EC02B17310FA4FF50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED680710F996F6006B4DC9 /* tsk_mutex.c */; - name = "tsk_mutex.c: 96"; - rLen = 0; - rLoc = 2326; - rType = 0; - vrLen = 330; - vrLoc = 2135; - }; - EC02B17E10FA4FF50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED695910F9A303006B4DC9 /* tsip_dialog_register_sm.c */; - name = "tsip_dialog_register_sm.c: 492"; - rLen = 0; - rLoc = 20973; - rType = 0; - vrLen = 665; - vrLoc = 16397; - }; - EC02B18310FA4FF50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED680710F996F6006B4DC9 /* tsk_mutex.c */; - name = "tsk_mutex.c: 96"; - rLen = 0; - rLoc = 2326; - rType = 0; - vrLen = 330; - vrLoc = 2135; - }; EC02B23610FA51AA0055FBF1 /* tsip_transac_layer.c:43 */ = { isa = PBXFileBreakpoint; actions = ( @@ -876,46 +265,6 @@ modificationTime = 284940129.0088331; state = 2; }; - EC02B23710FA51B70055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68E510F9A303006B4DC9 /* tsip_dialog.c */; - name = "tsip_dialog.c: 265"; - rLen = 0; - rLoc = 9182; - rType = 0; - vrLen = 1599; - vrLoc = 8405; - }; - EC02B23810FA51B70055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED696210F9A303006B4DC9 /* tsip_transac_layer.c */; - name = "tsip_transac_layer.c: 42"; - rLen = 0; - rLoc = 1318; - rType = 0; - vrLen = 1409; - vrLoc = 585; - }; - EC02B24D10FA51E70055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED65D810F99666006B4DC9 /* tsip.c */; - name = "tsip.c: 589"; - rLen = 0; - rLoc = 11759; - rType = 0; - vrLen = 931; - vrLoc = 11249; - }; - EC02B26010FA532E0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED681D10F996F6006B4DC9 /* tsk_timer.c */; - name = "tsk_timer.c: 282"; - rLen = 0; - rLoc = 6940; - rType = 0; - vrLen = 555; - vrLoc = 6705; - }; EC02B26D10FA53790055FBF1 /* tsip_dialog_register.client.c:144 */ = { isa = PBXFileBreakpoint; actions = ( @@ -933,26 +282,6 @@ modificationTime = 284940129.008891; state = 2; }; - EC02B26F10FA537D0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68EB10F9A303006B4DC9 /* tsip_dialog_register.server.c */; - name = "tsip_dialog_register.server.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 2; - vrLoc = 0; - }; - EC02B27210FA537D0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68EB10F9A303006B4DC9 /* tsip_dialog_register.server.c */; - name = "tsip_dialog_register.server.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 2; - vrLoc = 0; - }; EC02B27510FA539D0055FBF1 /* test_stack.h:72 */ = { isa = PBXFileBreakpoint; actions = ( @@ -970,86 +299,6 @@ modificationTime = 284940129.008949; state = 2; }; - EC02B28210FA54470055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B1610F9A971006B4DC9 /* test_transac.h */; - name = "test_transac.h: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 973; - vrLoc = 0; - }; - EC02B28510FA54470055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B1610F9A971006B4DC9 /* test_transac.h */; - name = "test_transac.h: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 973; - vrLoc = 0; - }; - EC02B29310FA55620055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED681910F996F6006B4DC9 /* tsk_thread.c */; - name = "tsk_thread.c: 52"; - rLen = 0; - rLoc = 1305; - rType = 0; - vrLen = 435; - vrLoc = 960; - }; - EC02B29610FA55620055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED681910F996F6006B4DC9 /* tsk_thread.c */; - name = "tsk_thread.c: 52"; - rLen = 0; - rLoc = 1305; - rType = 0; - vrLen = 435; - vrLoc = 960; - }; - EC02B29C10FA55820055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED696610F9A303006B4DC9 /* tsip_transport.c */; - name = "tsip_transport.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 1662; - vrLoc = 402; - }; - EC02B29F10FA55820055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED696610F9A303006B4DC9 /* tsip_transport.c */; - name = "tsip_transport.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 1662; - vrLoc = 402; - }; - EC02B2BA10FA569B0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED680910F996F6006B4DC9 /* tsk_object.c */; - name = "tsk_object.c: 107"; - rLen = 52; - rLoc = 2314; - rType = 0; - vrLen = 374; - vrLoc = 2777; - }; - EC02B2C010FA56AF0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED680910F996F6006B4DC9 /* tsk_object.c */; - name = "tsk_object.c: 143"; - rLen = 0; - rLoc = 2955; - rType = 0; - vrLen = 776; - vrLoc = 2499; - }; EC02B2C510FA56B80055FBF1 /* tsip_transport_layer.c:55 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1100,160 +349,6 @@ modificationTime = 284940129.0091239; state = 2; }; - EC02B2D210FA570D0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68E810F9A303006B4DC9 /* tsip_dialog_layer.c */; - name = "tsip_dialog_layer.c: 67"; - rLen = 140; - rLoc = 2070; - rType = 0; - vrLen = 1420; - vrLoc = 1142; - }; - EC02B2F710FA59110055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68E810F9A303006B4DC9 /* tsip_dialog_layer.c */; - name = "tsip_dialog_layer.c: 120"; - rLen = 0; - rLoc = 3347; - rType = 0; - vrLen = 1319; - vrLoc = 2611; - }; - EC02B31410FA5A940055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED694E10F9A303006B4DC9 /* tsip_parser_message.c */; - name = "tsip_parser_message.c: 136"; - rLen = 0; - rLoc = 3737; - rType = 0; - vrLen = 424; - vrLoc = 2770; - }; - EC02B32810FA5D210055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED681710F996F6006B4DC9 /* tsk_string.c */; - name = "tsk_string.c: 128"; - rLen = 0; - rLoc = 3781; - rType = 0; - vrLen = 715; - vrLoc = 3472; - }; - EC02B32910FA5D210055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED695F10F9A303006B4DC9 /* tsip_transac.c */; - name = "tsip_transac.c: 50"; - rLen = 0; - rLoc = 1674; - rType = 0; - vrLen = 654; - vrLoc = 1233; - }; - EC02B32A10FA5D210055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A0710F9A343006B4DC9 /* tsip_header_CSeq.h */; - name = "tsip_header_CSeq.h: 68"; - rLen = 16; - rLoc = 2217; - rType = 0; - vrLen = 947; - vrLoc = 993; - }; - EC02B32E10FA5D210055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A6310F9A343006B4DC9 /* tsip_transac_nict.h */; - name = "tsip_transac_nict.h: 42"; - rLen = 249; - rLoc = 1234; - rType = 0; - vrLen = 843; - vrLoc = 870; - }; - EC02B33010FA5D210055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC02B33110FA5D210055FBF1 /* stdint.h */; - name = "stdint.h: 30"; - rLen = 38; - rLoc = 498; - rType = 0; - vrLen = 471; - vrLoc = 278; - }; - EC02B33110FA5D210055FBF1 /* stdint.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = stdint.h; - path = "/Developer/SDKs/MacOSX10.5.sdk/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h"; - sourceTree = ""; - }; - EC02B33410FA5D210055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED681710F996F6006B4DC9 /* tsk_string.c */; - name = "tsk_string.c: 128"; - rLen = 0; - rLoc = 3781; - rType = 0; - vrLen = 715; - vrLoc = 3473; - }; - EC02B33510FA5D210055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED695F10F9A303006B4DC9 /* tsip_transac.c */; - name = "tsip_transac.c: 52"; - rLen = 0; - rLoc = 1710; - rType = 0; - vrLen = 654; - vrLoc = 1233; - }; - EC02B34610FA5D210055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A6310F9A343006B4DC9 /* tsip_transac_nict.h */; - name = "tsip_transac_nict.h: 42"; - rLen = 249; - rLoc = 1234; - rType = 0; - vrLen = 843; - vrLoc = 870; - }; - EC02B34B10FA5D210055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A0710F9A343006B4DC9 /* tsip_header_CSeq.h */; - name = "tsip_header_CSeq.h: 68"; - rLen = 16; - rLoc = 2217; - rType = 0; - vrLen = 947; - vrLoc = 993; - }; - EC02B35310FA5D210055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC02B35410FA5D210055FBF1 /* stdint.h */; - name = "stdint.h: 30"; - rLen = 38; - rLoc = 498; - rType = 0; - vrLen = 471; - vrLoc = 278; - }; - EC02B35410FA5D210055FBF1 /* stdint.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = stdint.h; - path = "/Developer/SDKs/MacOSX10.5.sdk/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h"; - sourceTree = ""; - }; - EC02B3A410FA626E0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED681D10F996F6006B4DC9 /* tsk_timer.c */; - name = "tsk_timer.c: 157"; - rLen = 0; - rLoc = 4134; - rType = 0; - vrLen = 1343; - vrLoc = 2091; - }; EC02B3B310FA63290055FBF1 /* tsip_dialog_register.client.c:242 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1271,16 +366,6 @@ modificationTime = 284940129.009185; state = 2; }; - EC02B3B410FA632B0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B1510F9A971006B4DC9 /* test_stack.h */; - name = "test_stack.h: 70"; - rLen = 0; - rLoc = 2154; - rType = 0; - vrLen = 1380; - vrLoc = 912; - }; EC02B3C410FA63700055FBF1 /* tsip_dialog_register.client.c:79 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1298,43 +383,6 @@ modificationTime = 284940129.009245; state = 2; }; - EC02B3C810FA64040055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED695C10F9A303006B4DC9 /* tsip_transac_nict_sm.c */; - name = "tsip_transac_nict_sm.c: 387"; - rLen = 0; - rLoc = 15749; - rType = 0; - vrLen = 1647; - vrLoc = 14727; - }; - EC02B3D210FA64040055FBF1 /* tsip_dialog_register.sm */ = { - isa = PBXFileReference; - lastKnownFileType = text; - name = tsip_dialog_register.sm; - path = /Users/diopmamadou/Documents/doubango/tinySIP/smc/tsip_dialog_register.sm; - sourceTree = ""; - }; - EC02B3D610FA64430055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC02B3D210FA64040055FBF1 /* tsip_dialog_register.sm */; - name = "tsip_dialog_register.sm: 86"; - rLen = 0; - rLoc = 1831; - rType = 0; - vrLen = 371; - vrLoc = 1640; - }; - EC02B3D910FA645F0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = EC02B3D210FA64040055FBF1 /* tsip_dialog_register.sm */; - name = "tsip_dialog_register.sm: 86"; - rLen = 0; - rLoc = 1831; - rType = 0; - vrLen = 845; - vrLoc = 1482; - }; EC02B3F010FA64D50055FBF1 /* tsip_dialog_register.client.c:447 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1352,26 +400,6 @@ modificationTime = 284940129.009311; state = 2; }; - EC02B3F810FA65230055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED695910F9A303006B4DC9 /* tsip_dialog_register_sm.c */; - name = "tsip_dialog_register_sm.c: 336"; - rLen = 0; - rLoc = 15459; - rType = 0; - vrLen = 2045; - vrLoc = 14330; - }; - EC02B42110FA66EB0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68EA10F9A303006B4DC9 /* tsip_dialog_register.client.c */; - name = "tsip_dialog_register.client.c: 77"; - rLen = 0; - rLoc = 2558; - rType = 0; - vrLen = 1649; - vrLoc = 1743; - }; EC02B42B10FA67310055FBF1 /* tnet_transport_poll.c:488 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1389,16 +417,6 @@ modificationTime = 284940129.0093709; state = 2; }; - EC02B42F10FA673D0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED696710F9A303006B4DC9 /* tsip_transport_layer.c */; - name = "tsip_transport_layer.c: 55"; - rLen = 0; - rLoc = 1636; - rType = 0; - vrLen = 1715; - vrLoc = 934; - }; EC02B43910FA68FC0055FBF1 /* tnet_transport_poll.c:489 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1416,46 +434,6 @@ modificationTime = 284940129.009432; state = 2; }; - EC02B43D10FA69BE0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED681010F996F6006B4DC9 /* tsk_runnable.h */; - name = "tsk_runnable.h: 80"; - rLen = 23; - rLoc = 2501; - rType = 0; - vrLen = 429; - vrLoc = 2345; - }; - EC02B43F10FA69BE0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED680010F996F6006B4DC9 /* tsk_list.c */; - name = "tsk_list.c: 351"; - rLen = 59; - rLoc = 8239; - rType = 0; - vrLen = 286; - vrLoc = 8298; - }; - EC02B44510FA69BE0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED681010F996F6006B4DC9 /* tsk_runnable.h */; - name = "tsk_runnable.h: 80"; - rLen = 23; - rLoc = 2501; - rType = 0; - vrLen = 429; - vrLoc = 2345; - }; - EC02B44610FA69BE0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED680010F996F6006B4DC9 /* tsk_list.c */; - name = "tsk_list.c: 351"; - rLen = 59; - rLoc = 8239; - rType = 0; - vrLen = 329; - vrLoc = 8239; - }; EC02B45410FA6A560055FBF1 /* tsk_buffer.c:83 */ = { isa = PBXFileBreakpoint; actions = ( @@ -1487,7 +465,7 @@ ignoreCount = 0; lineNumber = 85; location = libtinySAK.dylib; - modificationTime = 284940129.0095561; + modificationTime = 284940129.0095562; state = 2; }; EC02B45A10FA6D7B0055FBF1 /* malloc_error_break */ = { @@ -1501,7 +479,7 @@ hitCount = 0; ignoreCount = 0; location = libSystem.B.dylib; - modificationTime = 284940129.0099959; + modificationTime = 284940129.0099958; state = 2; symbolName = malloc_error_break; }; @@ -1568,294 +546,6 @@ state = 2; symbolName = realloc; }; - EC02B47610FA6FC50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED65DC10F99666006B4DC9 /* tsip_uri.c */; - name = "tsip_uri.c: 50"; - rLen = 0; - rLoc = 1294; - rType = 0; - vrLen = 416; - vrLoc = 1810; - }; - EC02B47710FA6FC50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68FC10F9A303006B4DC9 /* tsip_header_Contact.c */; - name = "tsip_header_Contact.c: 65"; - rLen = 0; - rLoc = 1645; - rType = 0; - vrLen = 424; - vrLoc = 1328; - }; - EC02B47C10FA6FC50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED67F510F996F6006B4DC9 /* tsk_buffer.c */; - name = "tsk_buffer.c: 84"; - rLen = 0; - rLoc = 1832; - rType = 0; - vrLen = 369; - vrLoc = 1681; - }; - EC02B47D10FA6FC50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED680510F996F6006B4DC9 /* tsk_memory.c */; - name = "tsk_memory.c: 139"; - rLen = 0; - rLoc = 5187; - rType = 0; - vrLen = 784; - vrLoc = 4836; - }; - EC02B48610FA6FC50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED680510F996F6006B4DC9 /* tsk_memory.c */; - name = "tsk_memory.c: 139"; - rLen = 0; - rLoc = 5187; - rType = 0; - vrLen = 784; - vrLoc = 4836; - }; - EC02B48710FA6FC50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED67F510F996F6006B4DC9 /* tsk_buffer.c */; - name = "tsk_buffer.c: 84"; - rLen = 0; - rLoc = 1832; - rType = 0; - vrLen = 341; - vrLoc = 1778; - }; - EC02B48A10FA6FC50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED65DC10F99666006B4DC9 /* tsip_uri.c */; - name = "tsip_uri.c: 87"; - rLen = 0; - rLoc = 2066; - rType = 0; - vrLen = 418; - vrLoc = 1824; - }; - EC02B48D10FA6FC50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68FC10F9A303006B4DC9 /* tsip_header_Contact.c */; - name = "tsip_header_Contact.c: 65"; - rLen = 0; - rLoc = 1645; - rType = 0; - vrLen = 424; - vrLoc = 1328; - }; - EC02B49E10FA6FC50055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687010F99811006B4DC9 /* tnet_socket.c */; - name = "tnet_socket.c: 168"; - rLen = 0; - rLoc = 4517; - rType = 0; - vrLen = 884; - vrLoc = 4239; - }; - EC02B4A710FA6FFC0055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687010F99811006B4DC9 /* tnet_socket.c */; - name = "tnet_socket.c: 177"; - rLen = 0; - rLoc = 4770; - rType = 0; - vrLen = 915; - vrLoc = 5476; - }; - EC02B4CD10FA71110055FBF1 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687410F99811006B4DC9 /* tnet_transport_poll.c */; - name = "tnet_transport_poll.c: 450"; - rLen = 0; - rLoc = 10880; - rType = 0; - vrLen = 1180; - vrLoc = 9479; - }; - ECE8D4C010FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED694E10F9A303006B4DC9 /* tsip_parser_message.c */; - name = "tsip_parser_message.c: 123"; - rLen = 0; - rLoc = 3457; - rType = 0; - vrLen = 1066; - vrLoc = 3290; - }; - ECE8D4C110FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED65D910F99666006B4DC9 /* tsip_message.c */; - name = "tsip_message.c: 252"; - rLen = 6; - rLoc = 6259; - rType = 0; - vrLen = 1004; - vrLoc = 5434; - }; - ECE8D4C210FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A6710F9A343006B4DC9 /* tsip_transport_layer.h */; - name = "tsip_transport_layer.h: 35"; - rLen = 48; - rLoc = 1042; - rType = 0; - vrLen = 1537; - vrLoc = 0; - }; - ECE8D4C310FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED685A10F997BF006B4DC9 /* tinysip_config.h */; - name = "tinysip_config.h: 71"; - rLen = 7; - rLoc = 1866; - rType = 0; - vrLen = 1133; - vrLoc = 883; - }; - ECE8D4C410FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED654010F99647006B4DC9 /* tsip_message.h */; - name = "tsip_message.h: 171"; - rLen = 0; - rLoc = 6663; - rType = 0; - vrLen = 1858; - vrLoc = 5710; - }; - ECE8D4C510FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - comments = "warning: assignment from incompatible pointer type"; - fRef = ECED696310F9A303006B4DC9 /* tsip_transac_nict.c */; - rLen = 1; - rLoc = 204; - rType = 1; - }; - ECE8D4C610FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED694E10F9A303006B4DC9 /* tsip_parser_message.c */; - name = "tsip_parser_message.c: 123"; - rLen = 0; - rLoc = 3457; - rType = 0; - vrLen = 1066; - vrLoc = 3290; - }; - ECE8D4C710FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED65D910F99666006B4DC9 /* tsip_message.c */; - name = "tsip_message.c: 252"; - rLen = 6; - rLoc = 6259; - rType = 0; - vrLen = 1290; - vrLoc = 5687; - }; - ECE8D4C810FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED654010F99647006B4DC9 /* tsip_message.h */; - name = "tsip_message.h: 175"; - rLen = 13; - rLoc = 6706; - rType = 0; - vrLen = 1931; - vrLoc = 5710; - }; - ECE8D4C910FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED65D910F99666006B4DC9 /* tsip_message.c */; - name = "tsip_message.c: 391"; - rLen = 6; - rLoc = 10316; - rType = 0; - vrLen = 926; - vrLoc = 9706; - }; - ECE8D4CA10FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED654010F99647006B4DC9 /* tsip_message.h */; - name = "tsip_message.h: 185"; - rLen = 0; - rLoc = 7387; - rType = 0; - vrLen = 1913; - vrLoc = 5710; - }; - ECE8D4CB10FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED65D910F99666006B4DC9 /* tsip_message.c */; - name = "tsip_message.c: 252"; - rLen = 6; - rLoc = 6259; - rType = 0; - vrLen = 1004; - vrLoc = 5434; - }; - ECE8D4CC10FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED654010F99647006B4DC9 /* tsip_message.h */; - name = "tsip_message.h: 179"; - rLen = 0; - rLoc = 7120; - rType = 0; - vrLen = 1919; - vrLoc = 5710; - }; - ECE8D4CD10FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A6710F9A343006B4DC9 /* tsip_transport_layer.h */; - name = "tsip_transport_layer.h: 35"; - rLen = 48; - rLoc = 1042; - rType = 0; - vrLen = 1537; - vrLoc = 0; - }; - ECE8D4CE10FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED654010F99647006B4DC9 /* tsip_message.h */; - name = "tsip_message.h: 192"; - rLen = 0; - rLoc = 7398; - rType = 0; - vrLen = 1798; - vrLoc = 5710; - }; - ECE8D4CF10FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED685A10F997BF006B4DC9 /* tinysip_config.h */; - name = "tinysip_config.h: 71"; - rLen = 7; - rLoc = 1866; - rType = 0; - vrLen = 1133; - vrLoc = 883; - }; - ECE8D4D010FBD76500B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED654010F99647006B4DC9 /* tsip_message.h */; - name = "tsip_message.h: 171"; - rLen = 0; - rLoc = 6663; - rType = 0; - vrLen = 1858; - vrLoc = 5710; - }; - ECE8D4D210FBD7D400B2464F /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED696310F9A303006B4DC9 /* tsip_transac_nict.c */; - name = "tsip_transac_nict.c: 189"; - rLen = 0; - rLoc = 5969; - rType = 0; - vrLen = 1328; - vrLoc = 5710; - }; ECED644410F99551006B4DC9 /* Source Control */ = { isa = PBXSourceControlManager; fallbackIsa = XCSourceControlManager; @@ -1867,19 +557,6 @@ isa = PBXCodeSenseManager; 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}"; - sepNavVisRange = "{5710, 1858}"; - }; - }; ECED65D810F99666006B4DC9 /* tsip.c */ = { isa = PBXFileReference; fileEncoding = 4; @@ -1887,240 +564,26 @@ name = tsip.c; path = /Users/diopmamadou/Documents/doubango/tinySIP/source/tsip.c; sourceTree = ""; - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1295, 8540}}"; - sepNavSelRange = "{11759, 0}"; - sepNavVisRange = "{11249, 931}"; - }; - }; - 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}"; - sepNavVisRange = "{5557, 1043}"; - }; - }; - 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}"; - sepNavVisRange = "{1810, 416}"; - }; }; ECED65E510F99689006B4DC9 /* tinySAK */ = { activeExec = 0; }; - ECED67F110F996F6006B4DC9 /* tsk_base64.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1206, 3108}}"; - sepNavSelRange = "{6181, 82}"; - sepNavVisRange = "{5629, 1499}"; - }; - }; ECED67F510F996F6006B4DC9 /* tsk_buffer.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsk_buffer.c; + path = /Users/diopmamadou/Documents/doubango/tinySAK/src/tsk_buffer.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1607, 2380}}"; sepNavSelRange = "{1832, 0}"; sepNavVisRange = "{1681, 369}"; }; }; - ECED67FA10F996F6006B4DC9 /* tsk_debug.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1206, 1260}}"; - sepNavSelRange = "{1415, 31}"; - sepNavVisRange = "{1086, 1172}"; - }; - }; - ECED67FD10F996F6006B4DC9 /* tsk_heap.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1126, 994}}"; - sepNavSelRange = "{1795, 80}"; - sepNavVisRange = "{1349, 960}"; - }; - }; - ECED67FE10F996F6006B4DC9 /* tsk_hmac.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1206, 3514}}"; - sepNavSelRange = "{1814, 19}"; - sepNavVisRange = "{1437, 563}"; - }; - }; - ECED680010F996F6006B4DC9 /* tsk_list.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1607, 8988}}"; - sepNavSelRange = "{10796, 0}"; - sepNavVisRange = "{10570, 523}"; - }; - }; - ECED680510F996F6006B4DC9 /* tsk_memory.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1607, 2296}}"; - sepNavSelRange = "{5187, 0}"; - sepNavVisRange = "{4836, 784}"; - }; - }; - ECED680710F996F6006B4DC9 /* tsk_mutex.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1607, 2170}}"; - sepNavSelRange = "{1185, 27}"; - sepNavVisRange = "{1531, 373}"; - }; - }; - ECED680910F996F6006B4DC9 /* tsk_object.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1607, 2240}}"; - sepNavSelRange = "{2955, 0}"; - sepNavVisRange = "{2774, 281}"; - }; - }; - ECED680A10F996F6006B4DC9 /* tsk_object.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1126, 1148}}"; - sepNavSelRange = "{2187, 73}"; - sepNavVisRange = "{1478, 966}"; - }; - }; - ECED681010F996F6006B4DC9 /* tsk_runnable.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1607, 1456}}"; - sepNavSelRange = "{2501, 23}"; - sepNavVisRange = "{2345, 429}"; - }; - }; - ECED681710F996F6006B4DC9 /* tsk_string.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1607, 5152}}"; - sepNavSelRange = "{3781, 0}"; - sepNavVisRange = "{3472, 715}"; - }; - }; - ECED681910F996F6006B4DC9 /* tsk_thread.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1607, 1274}}"; - sepNavSelRange = "{1305, 0}"; - sepNavVisRange = "{960, 435}"; - }; - }; - ECED681D10F996F6006B4DC9 /* tsk_timer.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1500, 5824}}"; - sepNavSelRange = "{3527, 0}"; - sepNavVisRange = "{3318, 842}"; - }; - }; - ECED681E10F996F6006B4DC9 /* tsk_timer.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1126, 910}}"; - sepNavSelRange = "{1696, 74}"; - sepNavVisRange = "{1152, 1134}"; - }; - }; - 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}, {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}"; - sepNavVisRange = "{958, 229}"; - }; - }; ECED686310F997F2006B4DC9 /* tinyNET */ = { 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}"; - sepNavVisRange = "{0, 469}"; - }; - }; - 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}"; - sepNavVisRange = "{0, 469}"; - }; - }; - 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}"; - sepNavVisRange = "{4077, 782}"; - }; - }; - 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}"; - sepNavVisRange = "{406, 1002}"; - }; - }; - 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}"; - sepNavVisRange = "{4634, 507}"; - }; - }; ECED687410F99811006B4DC9 /* tnet_transport_poll.c */ = { isa = PBXFileReference; fileEncoding = 4; @@ -2128,80 +591,10 @@ 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}"; - sepNavVisRange = "{9479, 1180}"; - }; - }; - 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}"; - sepNavVisRange = "{2149, 484}"; - }; - }; - 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}"; - sepNavVisRange = "{881, 573}"; - }; - }; - 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}"; - sepNavVisRange = "{2709, 682}"; - }; }; ECED689C10F998E4006B4DC9 /* tinyHTTP */ = { 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}"; - sepNavVisRange = "{6222, 491}"; - }; - }; - 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}"; - sepNavVisRange = "{1949, 1035}"; - }; - }; ECED68E510F9A303006B4DC9 /* tsip_dialog.c */ = { isa = PBXFileReference; fileEncoding = 4; @@ -2209,11 +602,6 @@ 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}"; - sepNavVisRange = "{8833, 875}"; - }; }; ECED68E810F9A303006B4DC9 /* tsip_dialog_layer.c */ = { isa = PBXFileReference; @@ -2222,11 +610,6 @@ 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}"; - sepNavVisRange = "{2611, 1319}"; - }; }; ECED68EA10F9A303006B4DC9 /* tsip_dialog_register.client.c */ = { isa = PBXFileReference; @@ -2235,141 +618,6 @@ 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}"; - sepNavVisRange = "{12481, 468}"; - }; - }; - 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}"; - sepNavVisRange = "{0, 2}"; - }; - }; - 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}"; - sepNavVisRange = "{6907, 387}"; - }; - }; - 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}"; - sepNavVisRange = "{1733, 554}"; - }; - }; - 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}"; - sepNavVisRange = "{1328, 424}"; - }; - }; - 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}"; - sepNavVisRange = "{1861, 644}"; - }; - }; - 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}"; - sepNavVisRange = "{3838, 658}"; - }; - }; - 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}"; - sepNavVisRange = "{2074, 690}"; - }; - }; - 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}"; - sepNavVisRange = "{20470, 611}"; - }; - }; - 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}"; - sepNavVisRange = "{3293, 1076}"; - }; - }; - 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}"; - sepNavVisRange = "{15014, 823}"; - }; }; ECED695C10F9A303006B4DC9 /* tsip_transac_nict_sm.c */ = { isa = PBXFileReference; @@ -2378,24 +626,6 @@ 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}"; - sepNavVisRange = "{14727, 1647}"; - }; - }; - 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}"; - sepNavVisRange = "{1233, 654}"; - }; }; ECED696210F9A303006B4DC9 /* tsip_transac_layer.c */ = { isa = PBXFileReference; @@ -2404,37 +634,6 @@ 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}"; - sepNavVisRange = "{1388, 661}"; - }; - }; - 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}"; - sepNavVisRange = "{5710, 1445}"; - }; - }; - 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}"; - sepNavVisRange = "{4129, 824}"; - }; }; ECED696710F9A303006B4DC9 /* tsip_transport_layer.c */ = { isa = PBXFileReference; @@ -2443,154 +642,6 @@ 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}"; - sepNavVisRange = "{7669, 500}"; - }; - }; - 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}"; - sepNavVisRange = "{755, 819}"; - }; - }; - 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}"; - sepNavVisRange = "{4119, 1415}"; - }; - }; - 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}"; - sepNavVisRange = "{728, 1000}"; - }; - }; - 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}"; - sepNavVisRange = "{993, 947}"; - }; - }; - 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}"; - sepNavVisRange = "{755, 607}"; - }; - }; - 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}"; - sepNavVisRange = "{304, 1046}"; - }; - }; - 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}"; - sepNavVisRange = "{3087, 497}"; - }; - }; - 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}"; - sepNavVisRange = "{870, 843}"; - }; - }; - 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}"; - sepNavVisRange = "{755, 931}"; - }; - }; - 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}"; - sepNavVisRange = "{0, 1537}"; - }; - }; - 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}"; - sepNavVisRange = "{1565, 786}"; - }; }; ECED6AFD10F9A93A006B4DC9 /* test */ = { activeExec = 0; @@ -2635,16 +686,16 @@ }; ECED6B1310F9A971006B4DC9 /* test.c */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1607, 1218}}"; - sepNavSelRange = "{1877, 0}"; - sepNavVisRange = "{1514, 388}"; + sepNavIntBoundsRect = "{{0, 0}, {1500, 1232}}"; + sepNavSelRange = "{1373, 0}"; + sepNavVisRange = "{1084, 860}"; }; }; ECED6B1510F9A971006B4DC9 /* test_stack.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1295, 1120}}"; - sepNavSelRange = "{2154, 0}"; - sepNavVisRange = "{912, 1380}"; + sepNavIntBoundsRect = "{{0, 0}, {2238, 5446}}"; + sepNavSelRange = "{6837, 0}"; + sepNavVisRange = "{6457, 2434}"; }; }; ECED6B1610F9A971006B4DC9 /* test_transac.h */ = { @@ -2670,469 +721,6 @@ modificationTime = 284940129.008299; state = 2; }; - ECED6B2310F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED685B10F997BF006B4DC9 /* tsip.h */; - name = "tsip.h: 38"; - rLen = 26; - rLoc = 1112; - rType = 0; - vrLen = 229; - vrLoc = 958; - }; - ECED6B2410F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED686910F99811006B4DC9 /* tinyNET_config.h */; - name = "tinyNET_config.h: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 469; - vrLoc = 0; - }; - ECED6B2510F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED686A10F99811006B4DC9 /* tnet.c */; - name = "tnet.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 469; - vrLoc = 0; - }; - ECED6B2810F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED680A10F996F6006B4DC9 /* tsk_object.h */; - name = "tsk_object.h: 74"; - rLen = 73; - rLoc = 2187; - rType = 0; - vrLen = 966; - vrLoc = 1478; - }; - ECED6B2910F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED681E10F996F6006B4DC9 /* tsk_timer.h */; - name = "tsk_timer.h: 51"; - rLen = 74; - rLoc = 1696; - rType = 0; - vrLen = 1134; - vrLoc = 1152; - }; - ECED6B2A10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED67FD10F996F6006B4DC9 /* tsk_heap.h */; - name = "tsk_heap.h: 60"; - rLen = 80; - rLoc = 1795; - rType = 0; - vrLen = 960; - vrLoc = 1349; - }; - ECED6B2B10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B2C10F9AAB1006B4DC9 /* stdio.h */; - name = "stdio.h: 346"; - rLen = 103; - rLoc = 13080; - rType = 0; - vrLen = 1143; - vrLoc = 12518; - }; - ECED6B2C10F9AAB1006B4DC9 /* stdio.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = stdio.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h; - sourceTree = ""; - }; - ECED6B2D10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B2E10F9AAB1006B4DC9 /* tsip_challenge.h */; - name = "tsip_challenge.h: 40"; - rLen = 39; - rLoc = 1163; - rType = 0; - vrLen = 879; - vrLoc = 986; - }; - ECED6B2E10F9AAB1006B4DC9 /* tsip_challenge.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = tsip_challenge.h; - path = /Users/diopmamadou/Documents/doubango/xcode/tinySIP/../../../doubango/tinySIP/include/tinysip/authentication/tsip_challenge.h; - sourceTree = ""; - }; - ECED6B3310F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A5C10F9A343006B4DC9 /* tsip_transac_nict_sm.h */; - name = "tsip_transac_nict_sm.h: 31"; - rLen = 0; - rLoc = 877; - rType = 0; - vrLen = 1046; - vrLoc = 304; - }; - ECED6B3610F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A6410F9A343006B4DC9 /* tsip_transac_nist.h */; - name = "tsip_transac_nist.h: 35"; - rLen = 48; - rLoc = 1080; - rType = 0; - vrLen = 931; - vrLoc = 755; - }; - ECED6B3710F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B3810F9AAB1006B4DC9 /* tsip_transac_nict.sm */; - name = "tsip_transac_nict.sm: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 775; - vrLoc = 473; - }; - ECED6B3810F9AAB1006B4DC9 /* tsip_transac_nict.sm */ = { - isa = PBXFileReference; - lastKnownFileType = text; - name = tsip_transac_nict.sm; - path = /Users/diopmamadou/Documents/doubango/tinySIP/smc/tsip_transac_nict.sm; - sourceTree = ""; - }; - ECED6B3910F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68E310F9A303006B4DC9 /* tsip_rijndael.c */; - name = "tsip_rijndael.c: 61"; - rLen = 0; - rLoc = 2464; - rType = 0; - vrLen = 1035; - vrLoc = 1949; - }; - ECED6B3A10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687510F99811006B4DC9 /* tnet_transport_win32.c */; - name = "tnet_transport_win32.c: 85"; - rLen = 429; - rLoc = 2143; - rType = 0; - vrLen = 484; - vrLoc = 2149; - }; - ECED6B3C10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B1310F9A971006B4DC9 /* test.c */; - name = "test.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 984; - vrLoc = 0; - }; - ECED6B3D10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B3E10F9AAB1006B4DC9 /* stdafx.h */; - name = "stdafx.h: 30"; - rLen = 117; - rLoc = 873; - rType = 0; - vrLen = 971; - vrLoc = 154; - }; - ECED6B3E10F9AAB1006B4DC9 /* stdafx.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = stdafx.h; - path = /Users/diopmamadou/Documents/doubango/tinySAK/test/stdafx.h; - sourceTree = ""; - }; - ECED6B3F10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B1110F9A971006B4DC9 /* stdafx.h */; - name = "stdafx.h: 34"; - rLen = 0; - rLoc = 1006; - rType = 0; - vrLen = 919; - vrLoc = 91; - }; - ECED6B4310F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED65D810F99666006B4DC9 /* tsip.c */; - name = "tsip.c: 30"; - rLen = 18; - rLoc = 929; - rType = 0; - vrLen = 154; - vrLoc = 824; - }; - ECED6B4410F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED685A10F997BF006B4DC9 /* tinysip_config.h */; - name = "tinysip_config.h: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 469; - vrLoc = 0; - }; - ECED6B4510F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED685B10F997BF006B4DC9 /* tsip.h */; - name = "tsip.h: 38"; - rLen = 26; - rLoc = 1112; - rType = 0; - vrLen = 229; - vrLoc = 958; - }; - ECED6B4610F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED686910F99811006B4DC9 /* tinyNET_config.h */; - name = "tinyNET_config.h: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 469; - vrLoc = 0; - }; - ECED6B4710F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED686A10F99811006B4DC9 /* tnet.c */; - name = "tnet.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 469; - vrLoc = 0; - }; - ECED6B4810F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B4910F9AAB1006B4DC9 /* tsip_challenge.h */; - name = "tsip_challenge.h: 69"; - rLen = 3; - rLoc = 2010; - rType = 0; - vrLen = 601; - vrLoc = 1204; - }; - ECED6B4910F9AAB1006B4DC9 /* tsip_challenge.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = tsip_challenge.h; - path = /Users/diopmamadou/Documents/doubango/xcode/tinySIP/../../../doubango/tinySIP/include/tinysip/authentication/tsip_challenge.h; - sourceTree = ""; - }; - ECED6B4A10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B4B10F9AAB1006B4DC9 /* tsip_transac.h */; - name = "tsip_transac.h: 39"; - rLen = 42; - rLoc = 1144; - rType = 0; - vrLen = 245; - vrLoc = 994; - }; - ECED6B4B10F9AAB1006B4DC9 /* tsip_transac.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = tsip_transac.h; - path = /Users/diopmamadou/Documents/doubango/xcode/tinySIP/../../../doubango/tinySIP/include/tinysip/transactions/tsip_transac.h; - sourceTree = ""; - }; - ECED6B4C10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED65D910F99666006B4DC9 /* tsip_message.c */; - name = "tsip_message.c: 505"; - rLen = 40; - rLoc = 14035; - rType = 0; - vrLen = 343; - vrLoc = 1036; - }; - ECED6B4D10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED654010F99647006B4DC9 /* tsip_message.h */; - name = "tsip_message.h: 171"; - rLen = 0; - rLoc = 7095; - rType = 0; - vrLen = 984; - vrLoc = 6206; - }; - ECED6B4E10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED680A10F996F6006B4DC9 /* tsk_object.h */; - name = "tsk_object.h: 74"; - rLen = 73; - rLoc = 2187; - rType = 0; - vrLen = 966; - vrLoc = 1478; - }; - ECED6B4F10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED67FD10F996F6006B4DC9 /* tsk_heap.h */; - name = "tsk_heap.h: 35"; - rLen = 26; - rLoc = 1087; - rType = 0; - vrLen = 673; - vrLoc = 671; - }; - ECED6B5010F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED681E10F996F6006B4DC9 /* tsk_timer.h */; - name = "tsk_timer.h: 51"; - rLen = 74; - rLoc = 1696; - rType = 0; - vrLen = 1134; - vrLoc = 1152; - }; - ECED6B5210F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B5310F9AAB1006B4DC9 /* stdio.h */; - name = "stdio.h: 346"; - rLen = 103; - rLoc = 13080; - rType = 0; - vrLen = 1143; - vrLoc = 12518; - }; - ECED6B5310F9AAB1006B4DC9 /* stdio.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = stdio.h; - path = /Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h; - sourceTree = ""; - }; - ECED6B6610F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68E110F9A303006B4DC9 /* tsip_challenge.c */; - name = "tsip_challenge.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 888; - vrLoc = 0; - }; - ECED6B6710F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A5C10F9A343006B4DC9 /* tsip_transac_nict_sm.h */; - name = "tsip_transac_nict_sm.h: 31"; - rLen = 0; - rLoc = 877; - rType = 0; - vrLen = 1046; - vrLoc = 304; - }; - ECED6B6810F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68EA10F9A303006B4DC9 /* tsip_dialog_register.client.c */; - name = "tsip_dialog_register.client.c: 73"; - rLen = 20; - rLoc = 2396; - rType = 0; - vrLen = 781; - vrLoc = 2045; - }; - ECED6B6C10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6A6410F9A343006B4DC9 /* tsip_transac_nist.h */; - name = "tsip_transac_nist.h: 35"; - rLen = 48; - rLoc = 1080; - rType = 0; - vrLen = 931; - vrLoc = 755; - }; - ECED6B6D10F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B6E10F9AAB1006B4DC9 /* tsip_transac_nict.sm */; - name = "tsip_transac_nict.sm: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 401; - vrLoc = 1941; - }; - ECED6B6E10F9AAB1006B4DC9 /* tsip_transac_nict.sm */ = { - isa = PBXFileReference; - lastKnownFileType = text; - name = tsip_transac_nict.sm; - path = /Users/diopmamadou/Documents/doubango/tinySIP/smc/tsip_transac_nict.sm; - sourceTree = ""; - }; - ECED6B7110F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED68E310F9A303006B4DC9 /* tsip_rijndael.c */; - name = "tsip_rijndael.c: 61"; - rLen = 0; - rLoc = 2464; - rType = 0; - vrLen = 1035; - vrLoc = 1949; - }; - ECED6B7210F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687510F99811006B4DC9 /* tnet_transport_win32.c */; - name = "tnet_transport_win32.c: 85"; - rLen = 429; - rLoc = 2143; - rType = 0; - vrLen = 484; - vrLoc = 2149; - }; - ECED6B7310F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687410F99811006B4DC9 /* tnet_transport_poll.c */; - name = "tnet_transport_poll.c: 261"; - rLen = 0; - rLoc = 6694; - rType = 0; - vrLen = 566; - vrLoc = 5505; - }; - ECED6B7410F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B1110F9A971006B4DC9 /* stdafx.h */; - name = "stdafx.h: 31"; - rLen = 2; - rLoc = 1006; - rType = 0; - vrLen = 813; - vrLoc = 222; - }; - ECED6B7510F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B1310F9A971006B4DC9 /* test.c */; - name = "test.c: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 984; - vrLoc = 0; - }; - ECED6B7710F9AAB1006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B7810F9AAB1006B4DC9 /* stdafx.h */; - name = "stdafx.h: 30"; - rLen = 117; - rLoc = 873; - rType = 0; - vrLen = 971; - vrLoc = 154; - }; - ECED6B7810F9AAB1006B4DC9 /* stdafx.h */ = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - name = stdafx.h; - path = /Users/diopmamadou/Documents/doubango/tinySAK/test/stdafx.h; - sourceTree = ""; - }; ECED6B8810F9AB0B006B4DC9 /* test_stack.h:31 */ = { isa = PBXFileBreakpoint; actions = ( @@ -3166,76 +754,6 @@ modificationTime = 284940129.008495; state = 2; }; - ECED6B8E10F9AB24006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED6B1510F9A971006B4DC9 /* test_stack.h */; - name = "test_stack.h: 47"; - rLen = 0; - rLoc = 1536; - rType = 0; - vrLen = 1010; - vrLoc = 755; - }; - ECED6B9B10F9ABC2006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687210F99811006B4DC9 /* tnet_transport.c */; - name = "tnet_transport.c: 193"; - rLen = 0; - rLoc = 4029; - rType = 0; - vrLen = 333; - vrLoc = 3881; - }; - ECED6B9D10F9ABC2006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED696710F9A303006B4DC9 /* tsip_transport_layer.c */; - name = "tsip_transport_layer.c: 67"; - rLen = 0; - rLoc = 2282; - rType = 0; - vrLen = 754; - vrLoc = 1530; - }; - ECED6B9E10F9ABC2006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED696210F9A303006B4DC9 /* tsip_transac_layer.c */; - name = "tsip_transac_layer.c: 243"; - rLen = 0; - rLoc = 7012; - rType = 0; - vrLen = 351; - vrLoc = 7142; - }; - ECED6B9F10F9ABC2006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED696310F9A303006B4DC9 /* tsip_transac_nict.c */; - name = "tsip_transac_nict.c: 101"; - rLen = 0; - rLoc = 4371; - rType = 0; - vrLen = 464; - vrLoc = 4425; - }; - ECED6BA010F9ABC2006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED695C10F9A303006B4DC9 /* tsip_transac_nict_sm.c */; - name = "tsip_transac_nict_sm.c: 385"; - rLen = 0; - rLoc = 15694; - rType = 0; - vrLen = 529; - vrLoc = 15370; - }; - ECED6BA410F9ABC2006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED687210F99811006B4DC9 /* tnet_transport.c */; - name = "tnet_transport.c: 193"; - rLen = 0; - rLoc = 4029; - rType = 0; - vrLen = 333; - vrLoc = 3881; - }; ECED6BA810F9ACB3006B4DC9 /* tsip.c:117 */ = { isa = PBXFileBreakpoint; actions = ( @@ -3270,107 +788,13 @@ modificationTime = 284940129.008607; state = 2; }; - ECED6BAC10F9ACCE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED67FA10F996F6006B4DC9 /* tsk_debug.h */; - name = "tsk_debug.h: 51"; - rLen = 31; - rLoc = 1415; - rType = 0; - vrLen = 1172; - vrLoc = 1086; - }; - ECED6BAE10F9ACCE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED690010F9A303006B4DC9 /* tsip_header_Content_Length.c */; - name = "tsip_header_Content_Length.c: 74"; - rLen = 73; - rLoc = 2181; - rType = 0; - vrLen = 762; - vrLoc = 1864; - }; - ECED6BB010F9ACCE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED691210F9A303006B4DC9 /* tsip_header_P_Access_Network_Info.c */; - name = "tsip_header_P_Access_Network_Info.c: 79"; - rLen = 24; - rLoc = 2399; - rType = 0; - vrLen = 829; - vrLoc = 2038; - }; - ECED6BB410F9ACCE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED67FA10F996F6006B4DC9 /* tsk_debug.h */; - name = "tsk_debug.h: 51"; - rLen = 31; - rLoc = 1415; - rType = 0; - vrLen = 1172; - vrLoc = 1086; - }; - ECED6BB510F9ACCE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED69F410F9A343006B4DC9 /* tsip_header.h */; - name = "tsip_header.h: 171"; - rLen = 78; - rLoc = 4574; - rType = 0; - vrLen = 1410; - vrLoc = 4096; - }; - ECED6BB710F9ACCE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED690010F9A303006B4DC9 /* tsip_header_Content_Length.c */; - name = "tsip_header_Content_Length.c: 74"; - rLen = 73; - rLoc = 2181; - rType = 0; - vrLen = 762; - vrLoc = 1864; - }; - ECED6BB910F9ACCE006B4DC9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = ECED691210F9A303006B4DC9 /* tsip_header_P_Access_Network_Info.c */; - name = "tsip_header_P_Access_Network_Info.c: 79"; - rLen = 24; - rLoc = 2399; - rType = 0; - 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 */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tnet_transport.h; + path = /Users/diopmamadou/Documents/doubango/tinyNET/src/tnet_transport.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1500, 1134}}"; sepNavSelRange = "{2385, 86}"; @@ -3378,6 +802,12 @@ }; }; ECF4697111346C6A00390CBE /* 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}, {1500, 7658}}"; sepNavSelRange = "{3093, 0}"; @@ -3385,284 +815,25 @@ }; }; ECF4697211346C6A00390CBE /* 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}, {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 */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_transport.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/transports/tsip_transport.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1500, 1526}}"; sepNavSelRange = "{4326, 28}"; @@ -3670,6 +841,12 @@ }; }; ECF46B251134755E00390CBE /* tsip_transport_ipsec.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = tsip_transport_ipsec.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/include/tinysip/transports/tsip_transport_ipsec.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1500, 742}}"; sepNavSelRange = "{1141, 0}"; @@ -3677,6 +854,12 @@ }; }; ECF46B2D1134755E00390CBE /* 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}, {1500, 3822}}"; sepNavSelRange = "{1387, 0}"; @@ -3684,6 +867,12 @@ }; }; ECF46C151134755E00390CBE /* tsip_transport_ipsec.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = tsip_transport_ipsec.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/src/transports/tsip_transport_ipsec.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1500, 5586}}"; sepNavSelRange = "{10799, 28}"; @@ -3691,6 +880,12 @@ }; }; ECF46C201134755E00390CBE /* stdafx.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = stdafx.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/test/test/stdafx.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1500, 717}}"; sepNavSelRange = "{0, 0}"; @@ -3698,6 +893,12 @@ }; }; ECF46C231134755E00390CBE /* test.c */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.c; + name = test.c; + path = /Users/diopmamadou/Documents/doubango/tinySIP/test/test/test.c; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1500, 1232}}"; sepNavSelRange = "{795, 0}"; @@ -3705,34 +906,54 @@ }; }; ECF46C261134755E00390CBE /* test_stack.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = test_stack.h; + path = /Users/diopmamadou/Documents/doubango/tinySIP/test/test/test_stack.h; + sourceTree = ""; uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1088, 3052}}"; + sepNavIntBoundsRect = "{{0, 0}, {1447, 3066}}"; sepNavSelRange = "{6203, 0}"; - sepNavVisRange = "{5705, 1003}"; + sepNavVisRange = "{5869, 650}"; }; }; ECF46D42113476BD00390CBE /* tinyipsec_config.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1088, 1190}}"; + sepNavIntBoundsRect = "{{0, 0}, {1500, 1148}}"; sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1035}"; + sepNavVisRange = "{0, 1548}"; }; }; ECF46D45113476BD00390CBE /* tipsec_common.c */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1500, 1400}}"; - sepNavSelRange = "{2021, 0}"; - sepNavVisRange = "{1833, 571}"; + sepNavIntBoundsRect = "{{0, 0}, {1500, 1358}}"; + sepNavSelRange = "{949, 0}"; + sepNavVisRange = "{726, 1278}"; }; }; ECF46D46113476BD00390CBE /* tipsec_common.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1500, 3262}}"; - sepNavSelRange = "{6424, 137}"; - sepNavVisRange = "{5664, 1014}"; + sepNavIntBoundsRect = "{{0, 0}, {1500, 4298}}"; + sepNavSelRange = "{7651, 16}"; + sepNavVisRange = "{6641, 1544}"; sepNavWindowFrame = "{{61, 573}, {750, 558}}"; }; }; + ECF46D47113476BD00390CBE /* tipsec_racoon.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 1484}}"; + sepNavSelRange = "{943, 0}"; + sepNavVisRange = "{732, 1477}"; + }; + }; + ECF46D48113476BD00390CBE /* tipsec_racoon.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 716}}"; + sepNavSelRange = "{746, 0}"; + sepNavVisRange = "{0, 1197}"; + }; + }; ECF46D49113476BD00390CBE /* tipsec_vista.c */ = { uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1500, 9926}}"; @@ -3789,7 +1010,7 @@ fRef = ECF46D45113476BD00390CBE /* tipsec_common.c */; name = "tipsec_common.c: 73"; rLen = 0; - rLoc = 2021; + rLoc = 2181; rType = 0; vrLen = 571; vrLoc = 1833; @@ -3824,26 +1045,6 @@ 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 */; @@ -3899,7 +1100,7 @@ fRef = ECF46D45113476BD00390CBE /* tipsec_common.c */; name = "tipsec_common.c: 69"; rLen = 0; - rLoc = 1992; + rLoc = 2152; rType = 0; vrLen = 714; vrLoc = 1728; @@ -3929,7 +1130,7 @@ fRef = ECF46D45113476BD00390CBE /* tipsec_common.c */; name = "tipsec_common.c: 73"; rLen = 0; - rLoc = 2021; + rLoc = 2181; rType = 0; vrLen = 571; vrLoc = 1833; @@ -4004,16 +1205,6 @@ 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 */; @@ -4074,16 +1265,6 @@ 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 */; @@ -4164,86 +1345,6 @@ 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; }; @@ -4277,7 +1378,7 @@ vrLen = 1003; vrLoc = 5705; }; - ECF46DD811347FCD00390CBE /* PBXTextBookmark */ = { + ECF46DDA1134802500390CBE /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = ECF46D42113476BD00390CBE /* tinyipsec_config.h */; name = "tinyipsec_config.h: 1"; @@ -4287,4 +1388,238 @@ vrLen = 1035; vrLoc = 0; }; + ECF4C28911434F9300B7C09B /* tinySAK_config.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 1428}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 1496}"; + }; + }; + ECF4C2BB11434F9300B7C09B /* tsk_timer.c */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1500, 5894}}"; + sepNavSelRange = "{3788, 1}"; + sepNavVisRange = "{3382, 1133}"; + }; + }; + ECF4C90A114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D42113476BD00390CBE /* tinyipsec_config.h */; + name = "tinyipsec_config.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1548; + vrLoc = 0; + }; + ECF4C90B114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4C28911434F9300B7C09B /* tinySAK_config.h */; + name = "tinySAK_config.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1496; + vrLoc = 0; + }; + ECF4C90C114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4C2BB11434F9300B7C09B /* tsk_timer.c */; + name = "tsk_timer.c: 143"; + rLen = 1; + rLoc = 3788; + rType = 0; + vrLen = 1133; + vrLoc = 3382; + }; + ECF4C90D114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D47113476BD00390CBE /* tipsec_racoon.c */; + name = "tipsec_racoon.c: 32"; + rLen = 0; + rLoc = 943; + rType = 0; + vrLen = 1477; + vrLoc = 732; + }; + ECF4C90E114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D48113476BD00390CBE /* tipsec_racoon.h */; + name = "tipsec_racoon.h: 20"; + rLen = 0; + rLoc = 746; + rType = 0; + vrLen = 1197; + vrLoc = 0; + }; + ECF4C90F114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D46113476BD00390CBE /* tipsec_common.h */; + name = "tipsec_common.h: 281"; + rLen = 16; + rLoc = 7651; + rType = 0; + vrLen = 1544; + vrLoc = 6641; + }; + ECF4C910114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D45113476BD00390CBE /* tipsec_common.c */; + name = "tipsec_common.c: 32"; + rLen = 0; + rLoc = 949; + rType = 0; + vrLen = 1278; + vrLoc = 726; + }; + ECF4C911114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECED6B1310F9A971006B4DC9 /* test.c */; + name = "test.c: 49"; + rLen = 0; + rLoc = 1373; + rType = 0; + vrLen = 860; + vrLoc = 1084; + }; + ECF4C912114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECED6B1510F9A971006B4DC9 /* test_stack.h */; + name = "test_stack.h: 243"; + rLen = 0; + rLoc = 6203; + rType = 0; + vrLen = 1934; + vrLoc = 5452; + }; + ECF4C913114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D42113476BD00390CBE /* tinyipsec_config.h */; + name = "tinyipsec_config.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1548; + vrLoc = 0; + }; + ECF4C914114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4C28911434F9300B7C09B /* tinySAK_config.h */; + name = "tinySAK_config.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1496; + vrLoc = 0; + }; + ECF4C915114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF4C2BB11434F9300B7C09B /* tsk_timer.c */; + name = "tsk_timer.c: 143"; + rLen = 1; + rLoc = 3788; + rType = 0; + vrLen = 1133; + vrLoc = 3382; + }; + ECF4C916114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D47113476BD00390CBE /* tipsec_racoon.c */; + name = "tipsec_racoon.c: 32"; + rLen = 0; + rLoc = 943; + rType = 0; + vrLen = 1477; + vrLoc = 732; + }; + ECF4C917114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D46113476BD00390CBE /* tipsec_common.h */; + name = "tipsec_common.h: 228"; + rLen = 137; + rLoc = 6424; + rType = 0; + vrLen = 1382; + vrLoc = 5480; + }; + ECF4C918114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D48113476BD00390CBE /* tipsec_racoon.h */; + name = "tipsec_racoon.h: 20"; + rLen = 0; + rLoc = 746; + rType = 0; + vrLen = 1197; + vrLoc = 0; + }; + ECF4C919114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D46113476BD00390CBE /* tipsec_common.h */; + name = "tipsec_common.h: 281"; + rLen = 16; + rLoc = 7651; + rType = 0; + vrLen = 1544; + vrLoc = 6641; + }; + ECF4C91A114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECF46D45113476BD00390CBE /* tipsec_common.c */; + name = "tipsec_common.c: 32"; + rLen = 0; + rLoc = 949; + rType = 0; + vrLen = 1278; + vrLoc = 726; + }; + ECF4C91B114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECED6B1310F9A971006B4DC9 /* test.c */; + name = "test.c: 49"; + rLen = 0; + rLoc = 1373; + rType = 0; + vrLen = 860; + vrLoc = 1084; + }; + ECF4C91C114350D100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECED6B1510F9A971006B4DC9 /* test_stack.h */; + name = "test_stack.h: 233"; + rLen = 0; + rLoc = 5734; + rType = 0; + vrLen = 2437; + vrLoc = 6457; + }; + ECF4C921114350EA00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECED6B1510F9A971006B4DC9 /* test_stack.h */; + name = "test_stack.h: 257"; + rLen = 0; + rLoc = 6837; + rType = 0; + vrLen = 2434; + vrLoc = 6457; + }; + ECF4C922114350F100B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECED6B1510F9A971006B4DC9 /* test_stack.h */; + name = "test_stack.h: 257"; + rLen = 0; + rLoc = 6837; + rType = 0; + vrLen = 2434; + vrLoc = 6457; + }; + ECF4C92A1143512B00B7C09B /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = ECED6B1510F9A971006B4DC9 /* test_stack.h */; + name = "test_stack.h: 257"; + rLen = 0; + rLoc = 6837; + rType = 0; + vrLen = 2434; + vrLoc = 6457; + }; } diff --git a/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.perspectivev3 b/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.perspectivev3 index 3ede60d8..390b3206 100644 --- a/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.perspectivev3 +++ b/trunk/xcode/tinySIP/tinySIP.xcodeproj/diopmamadou.perspectivev3 @@ -3,7 +3,7 @@ ActivePerspectiveName - Project + Debug AllowedModules @@ -200,8 +200,8 @@ PerspectiveWidths - 1508 - 1508 + 1920 + 1920 Perspectives @@ -230,8 +230,6 @@ Layout - BecomeActive - ContentConfiguration PBXBottomSmartGroupGIDs @@ -271,17 +269,19 @@ 08FB7794FE84155DC02AAC07 ECED6B0E10F9A953006B4DC9 1C37FBAC04509CD000000102 - ECF46DD311347FCD00390CBE - ECF46DD411347FCD00390CBE + ECF4BEA511434EB400B7C09B + ECF4C909114350D100B7C09B PBXSmartGroupTreeModuleOutlineStateSelectionKey + 12 + 6 0 PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {337, 751}} + {{0, 0}, {337, 973}} PBXTopSmartGroupGIDs @@ -291,14 +291,12 @@ GeometryConfiguration Frame - {{0, 0}, {354, 769}} + {{0, 0}, {354, 991}} GroupTreeTableConfiguration MainColumn 337 - RubberWindowFrame - 164 133 1508 810 0 0 1920 1178 Module PBXSmartGroupTreeModule @@ -314,7 +312,7 @@ PBXProjectModuleGUID ECED643E10F99551006B4DC9 PBXProjectModuleLabel - tinyipsec_config.h + test_stack.h PBXSplitModuleInNavigatorKey Split0 @@ -322,17 +320,16 @@ PBXProjectModuleGUID ECED643F10F99551006B4DC9 PBXProjectModuleLabel - tinyipsec_config.h + test_stack.h _historyCapacity 0 bookmark - ECF46DD811347FCD00390CBE + ECF4C92A1143512B00B7C09B history ECF46D7B11347A2A00390CBE ECF46D7C11347A2A00390CBE ECF46D7D11347A2A00390CBE - ECF46D7E11347A2A00390CBE ECF46D7F11347A2A00390CBE ECF46D8011347A2A00390CBE ECF46D8111347A2A00390CBE @@ -340,38 +337,42 @@ ECF46DA011347C1200390CBE ECF46DA111347C1200390CBE ECF46DA211347C1200390CBE - ECF46DA311347C1200390CBE ECF46DA411347C1200390CBE - ECF46DD511347FCD00390CBE - ECF46DD611347FCD00390CBE + ECF4C90A114350D100B7C09B + ECF4C90B114350D100B7C09B + ECF4C90C114350D100B7C09B + ECF4C90D114350D100B7C09B + ECF4C90E114350D100B7C09B + ECF4C90F114350D100B7C09B + ECF4C910114350D100B7C09B + ECF4C911114350D100B7C09B + ECF4C912114350D100B7C09B prevStack 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 + ECF4C913114350D100B7C09B + ECF4C914114350D100B7C09B + ECF4C915114350D100B7C09B + ECF4C916114350D100B7C09B + ECF4C917114350D100B7C09B + ECF4C918114350D100B7C09B + ECF4C919114350D100B7C09B + ECF4C91A114350D100B7C09B + ECF4C91B114350D100B7C09B SplitCount @@ -385,14 +386,12 @@ GeometryConfiguration Frame - {{0, 0}, {1149, 526}} - RubberWindowFrame - 164 133 1508 810 0 0 1920 1178 + {{0, 0}, {1561, 748}} Module PBXNavigatorGroup Proportion - 526pt + 748pt Proportion @@ -410,9 +409,7 @@ GeometryConfiguration Frame - {{10, 27}, {1149, 211}} - RubberWindowFrame - 164 133 1508 810 0 0 1920 1178 + {{10, 27}, {1561, 211}} Module XCDetailModule @@ -466,7 +463,7 @@ GeometryConfiguration Frame - {{10, 27}, {1149, 211}} + {{10, 27}, {1561, 211}} Module PBXBuildResultsModule @@ -475,7 +472,7 @@ Proportion - 1149pt + 1561pt Name @@ -494,11 +491,11 @@ TableOfContents - ECF46A0111346DE700390CBE + ECF4C91D114350D100B7C09B 1CA23ED40692098700951B8B - ECF46A0211346DE700390CBE + ECF4C91E114350D100B7C09B ECED643E10F99551006B4DC9 - ECF46A0311346DE700390CBE + ECF4C91F114350D100B7C09B 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -547,12 +544,14 @@ GeometryConfiguration Frame - {{0, 0}, {1508, 154}} + {{0, 0}, {1920, 199}} + RubberWindowFrame + 0 146 1920 1032 0 0 1920 1178 Module PBXDebugCLIModule Proportion - 154pt + 199pt ContentConfiguration @@ -571,8 +570,8 @@ yes sizes - {{0, 0}, {736, 296}} - {{736, 0}, {772, 296}} + {{0, 0}, {937, 382}} + {{937, 0}, {983, 382}} VerticalSplitView @@ -587,8 +586,8 @@ yes sizes - {{0, 0}, {1508, 296}} - {{0, 296}, {1508, 314}} + {{0, 0}, {1920, 382}} + {{0, 382}, {1920, 405}} @@ -608,7 +607,7 @@ DebugSTDIOWindowFrame {{200, 200}, {500, 300}} Frame - {{0, 159}, {1508, 610}} + {{0, 204}, {1920, 787}} PBXDebugSessionStackFrameViewKey DebugVariablesTableConfiguration @@ -618,16 +617,20 @@ Value 85 Summary - 542 + 753 Frame - {{736, 0}, {772, 296}} + {{937, 0}, {983, 382}} + RubberWindowFrame + 0 146 1920 1032 0 0 1920 1178 + RubberWindowFrame + 0 146 1920 1032 0 0 1920 1178 Module PBXDebugSessionModule Proportion - 610pt + 787pt Name @@ -645,14 +648,14 @@ TableOfContents - ECF46A0411346DE700390CBE + ECF4C923114350F100B7C09B 1CCC7628064C1048000F2A68 1CCC7629064C1048000F2A68 - ECF46A0511346DE700390CBE - ECF46A0611346DE700390CBE - ECF46A0711346DE700390CBE - ECF46A0811346DE700390CBE - ECF4691811346BB900390CBE + ECF4C924114350F100B7C09B + ECF4C925114350F100B7C09B + ECF4C926114350F100B7C09B + ECF4C927114350F100B7C09B + ECED643E10F99551006B4DC9 ToolbarConfiguration xcode.toolbar.config.debugV3 @@ -685,7 +688,7 @@ /Users/diopmamadou/Documents/doubango/xcode/tinySIP/tinySIP.xcodeproj WindowString - 164 133 1508 810 0 0 1920 1178 + 0 146 1920 1032 0 0 1920 1178 WindowToolsV3 diff --git a/trunk/xcode/tinySIP/tinySIP.xcodeproj/project.pbxproj b/trunk/xcode/tinySIP/tinySIP.xcodeproj/project.pbxproj index 0bd67d09..bd265e36 100644 --- a/trunk/xcode/tinySIP/tinySIP.xcodeproj/project.pbxproj +++ b/trunk/xcode/tinySIP/tinySIP.xcodeproj/project.pbxproj @@ -7,59 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - 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 */; }; - ECED682610F996F6006B4DC9 /* tsk_base64.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED67F110F996F6006B4DC9 /* tsk_base64.c */; }; - ECED682710F996F6006B4DC9 /* tsk_base64.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED67F210F996F6006B4DC9 /* tsk_base64.h */; }; - ECED682810F996F6006B4DC9 /* tsk_binaryutils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED67F310F996F6006B4DC9 /* tsk_binaryutils.c */; }; - ECED682910F996F6006B4DC9 /* tsk_binaryutils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED67F410F996F6006B4DC9 /* tsk_binaryutils.h */; }; - ECED682A10F996F6006B4DC9 /* tsk_buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED67F510F996F6006B4DC9 /* tsk_buffer.c */; }; - ECED682B10F996F6006B4DC9 /* tsk_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED67F610F996F6006B4DC9 /* tsk_buffer.h */; }; - ECED682C10F996F6006B4DC9 /* tsk_condwait.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED67F710F996F6006B4DC9 /* tsk_condwait.c */; }; - ECED682D10F996F6006B4DC9 /* tsk_condwait.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED67F810F996F6006B4DC9 /* tsk_condwait.h */; }; - ECED682E10F996F6006B4DC9 /* tsk_debug.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED67F910F996F6006B4DC9 /* tsk_debug.c */; }; - ECED682F10F996F6006B4DC9 /* tsk_debug.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED67FA10F996F6006B4DC9 /* tsk_debug.h */; }; - ECED683010F996F6006B4DC9 /* tsk_errno.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED67FB10F996F6006B4DC9 /* tsk_errno.h */; }; - ECED683110F996F6006B4DC9 /* tsk_heap.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED67FC10F996F6006B4DC9 /* tsk_heap.c */; }; - ECED683210F996F6006B4DC9 /* tsk_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED67FD10F996F6006B4DC9 /* tsk_heap.h */; }; - ECED683310F996F6006B4DC9 /* tsk_hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED67FE10F996F6006B4DC9 /* tsk_hmac.c */; }; - ECED683410F996F6006B4DC9 /* tsk_hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED67FF10F996F6006B4DC9 /* tsk_hmac.h */; }; - ECED683510F996F6006B4DC9 /* tsk_list.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED680010F996F6006B4DC9 /* tsk_list.c */; }; - ECED683610F996F6006B4DC9 /* tsk_list.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED680110F996F6006B4DC9 /* tsk_list.h */; }; - ECED683710F996F6006B4DC9 /* tsk_macros.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED680210F996F6006B4DC9 /* tsk_macros.h */; }; - ECED683810F996F6006B4DC9 /* tsk_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED680310F996F6006B4DC9 /* tsk_md5.c */; }; - ECED683910F996F6006B4DC9 /* tsk_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED680410F996F6006B4DC9 /* tsk_md5.h */; }; - ECED683A10F996F6006B4DC9 /* tsk_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED680510F996F6006B4DC9 /* tsk_memory.c */; }; - ECED683B10F996F6006B4DC9 /* tsk_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED680610F996F6006B4DC9 /* tsk_memory.h */; }; - ECED683C10F996F6006B4DC9 /* tsk_mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED680710F996F6006B4DC9 /* tsk_mutex.c */; }; - ECED683D10F996F6006B4DC9 /* tsk_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED680810F996F6006B4DC9 /* tsk_mutex.h */; }; - ECED683E10F996F6006B4DC9 /* tsk_object.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED680910F996F6006B4DC9 /* tsk_object.c */; }; - ECED683F10F996F6006B4DC9 /* tsk_object.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED680A10F996F6006B4DC9 /* tsk_object.h */; }; - ECED684010F996F6006B4DC9 /* tsk_params.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED680B10F996F6006B4DC9 /* tsk_params.c */; }; - ECED684110F996F6006B4DC9 /* tsk_params.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED680C10F996F6006B4DC9 /* tsk_params.h */; }; - ECED684210F996F6006B4DC9 /* tsk_ppfcs16.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED680D10F996F6006B4DC9 /* tsk_ppfcs16.c */; }; - ECED684310F996F6006B4DC9 /* tsk_ppfcs16.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED680E10F996F6006B4DC9 /* tsk_ppfcs16.h */; }; - ECED684410F996F6006B4DC9 /* tsk_runnable.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED680F10F996F6006B4DC9 /* tsk_runnable.c */; }; - ECED684510F996F6006B4DC9 /* tsk_runnable.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED681010F996F6006B4DC9 /* tsk_runnable.h */; }; - ECED684610F996F6006B4DC9 /* tsk_safeobj.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED681110F996F6006B4DC9 /* tsk_safeobj.c */; }; - ECED684710F996F6006B4DC9 /* tsk_safeobj.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED681210F996F6006B4DC9 /* tsk_safeobj.h */; }; - ECED684810F996F6006B4DC9 /* tsk_semaphore.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED681310F996F6006B4DC9 /* tsk_semaphore.c */; }; - ECED684910F996F6006B4DC9 /* tsk_semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED681410F996F6006B4DC9 /* tsk_semaphore.h */; }; - ECED684A10F996F6006B4DC9 /* tsk_sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED681510F996F6006B4DC9 /* tsk_sha1.c */; }; - ECED684B10F996F6006B4DC9 /* tsk_sha1.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED681610F996F6006B4DC9 /* tsk_sha1.h */; }; - ECED684C10F996F6006B4DC9 /* tsk_string.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED681710F996F6006B4DC9 /* tsk_string.c */; }; - ECED684D10F996F6006B4DC9 /* tsk_string.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED681810F996F6006B4DC9 /* tsk_string.h */; }; - ECED684E10F996F6006B4DC9 /* tsk_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED681910F996F6006B4DC9 /* tsk_thread.c */; }; - ECED684F10F996F6006B4DC9 /* tsk_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED681A10F996F6006B4DC9 /* tsk_thread.h */; }; - ECED685010F996F6006B4DC9 /* tsk_time.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED681B10F996F6006B4DC9 /* tsk_time.c */; }; - ECED685110F996F6006B4DC9 /* tsk_time.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED681C10F996F6006B4DC9 /* tsk_time.h */; }; - ECED685210F996F6006B4DC9 /* tsk_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED681D10F996F6006B4DC9 /* tsk_timer.c */; }; - ECED685310F996F6006B4DC9 /* tsk_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED681E10F996F6006B4DC9 /* tsk_timer.h */; }; - ECED685410F996F6006B4DC9 /* tsk_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED681F10F996F6006B4DC9 /* tsk_url.c */; }; - 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 */; }; 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 */; }; @@ -71,374 +18,6 @@ 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 */; }; @@ -450,6 +29,443 @@ 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 */; }; + ECF4BF5D11434EFE00B7C09B /* thttp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF1811434EFE00B7C09B /* thttp.h */; }; + ECF4BF5E11434EFE00B7C09B /* thttp_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF1B11434EFE00B7C09B /* thttp_auth.h */; }; + ECF4BF5F11434EFE00B7C09B /* thttp_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF1D11434EFE00B7C09B /* thttp_header.h */; }; + ECF4BF6011434EFE00B7C09B /* thttp_header_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF1E11434EFE00B7C09B /* thttp_header_Authorization.h */; }; + ECF4BF6111434EFE00B7C09B /* thttp_header_Content_Length.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF1F11434EFE00B7C09B /* thttp_header_Content_Length.h */; }; + ECF4BF6211434EFE00B7C09B /* thttp_header_Content_Type.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2011434EFE00B7C09B /* thttp_header_Content_Type.h */; }; + ECF4BF6311434EFE00B7C09B /* thttp_header_Dummy.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2111434EFE00B7C09B /* thttp_header_Dummy.h */; }; + ECF4BF6411434EFE00B7C09B /* thttp_header_Proxy_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2211434EFE00B7C09B /* thttp_header_Proxy_Authenticate.h */; }; + ECF4BF6511434EFE00B7C09B /* thttp_header_WWW_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2311434EFE00B7C09B /* thttp_header_WWW_Authenticate.h */; }; + ECF4BF6611434EFE00B7C09B /* thttp_parser_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2511434EFE00B7C09B /* thttp_parser_header.h */; }; + ECF4BF6711434EFE00B7C09B /* thttp_parser_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2611434EFE00B7C09B /* thttp_parser_message.h */; }; + ECF4BF6811434EFE00B7C09B /* thttp_parser_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2711434EFE00B7C09B /* thttp_parser_url.h */; }; + ECF4BF6911434EFE00B7C09B /* thttp_event.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2811434EFE00B7C09B /* thttp_event.h */; }; + ECF4BF6A11434EFE00B7C09B /* thttp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2911434EFE00B7C09B /* thttp_message.h */; }; + ECF4BF6B11434EFE00B7C09B /* thttp_operation.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2A11434EFE00B7C09B /* thttp_operation.h */; }; + ECF4BF6C11434EFE00B7C09B /* thttp_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2B11434EFE00B7C09B /* thttp_transport.h */; }; + ECF4BF6D11434EFE00B7C09B /* thttp_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2C11434EFE00B7C09B /* thttp_url.h */; }; + ECF4BF6E11434EFE00B7C09B /* tinyhttp_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BF2D11434EFE00B7C09B /* tinyhttp_config.h */; }; + ECF4BF6F11434EFE00B7C09B /* thttp_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF3D11434EFE00B7C09B /* thttp_auth.c */; }; + ECF4BF7011434EFE00B7C09B /* thttp_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF3F11434EFE00B7C09B /* thttp_header.c */; }; + ECF4BF7111434EFE00B7C09B /* thttp_header_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4011434EFE00B7C09B /* thttp_header_Authorization.c */; }; + ECF4BF7211434EFE00B7C09B /* thttp_header_Content_Length.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4111434EFE00B7C09B /* thttp_header_Content_Length.c */; }; + ECF4BF7311434EFE00B7C09B /* thttp_header_Content_Type.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4211434EFE00B7C09B /* thttp_header_Content_Type.c */; }; + ECF4BF7411434EFE00B7C09B /* thttp_header_Dummy.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4311434EFE00B7C09B /* thttp_header_Dummy.c */; }; + ECF4BF7511434EFE00B7C09B /* thttp_header_Proxy_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4411434EFE00B7C09B /* thttp_header_Proxy_Authenticate.c */; }; + ECF4BF7611434EFE00B7C09B /* thttp_header_WWW_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4511434EFE00B7C09B /* thttp_header_WWW_Authenticate.c */; }; + ECF4BF7811434EFE00B7C09B /* thttp_parser_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4811434EFE00B7C09B /* thttp_parser_header.c */; }; + ECF4BF7911434EFE00B7C09B /* thttp_parser_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4911434EFE00B7C09B /* thttp_parser_message.c */; }; + ECF4BF7A11434EFE00B7C09B /* thttp_parser_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4A11434EFE00B7C09B /* thttp_parser_url.c */; }; + ECF4BF7B11434EFE00B7C09B /* thttp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4B11434EFE00B7C09B /* thttp.c */; }; + ECF4BF7C11434EFE00B7C09B /* thttp_event.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4C11434EFE00B7C09B /* thttp_event.c */; }; + ECF4BF7D11434EFE00B7C09B /* thttp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4D11434EFE00B7C09B /* thttp_message.c */; }; + ECF4BF7E11434EFE00B7C09B /* thttp_operation.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4E11434EFE00B7C09B /* thttp_operation.c */; }; + ECF4BF7F11434EFE00B7C09B /* thttp_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF4F11434EFE00B7C09B /* thttp_transport.c */; }; + ECF4BF8011434EFE00B7C09B /* thttp_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BF5011434EFE00B7C09B /* thttp_url.c */; }; + ECF4C12B11434F4B00B7C09B /* tsip_api.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFA111434F4A00B7C09B /* tsip_api.h */; }; + ECF4C12C11434F4B00B7C09B /* tsip_api_invite.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFA211434F4A00B7C09B /* tsip_api_invite.h */; }; + ECF4C12D11434F4B00B7C09B /* tsip_api_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFA311434F4A00B7C09B /* tsip_api_message.h */; }; + ECF4C12E11434F4B00B7C09B /* tsip_api_publish.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFA411434F4A00B7C09B /* tsip_api_publish.h */; }; + ECF4C12F11434F4B00B7C09B /* tsip_api_register.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFA511434F4A00B7C09B /* tsip_api_register.h */; }; + ECF4C13011434F4B00B7C09B /* tsip_api_subscribe.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFA611434F4A00B7C09B /* tsip_api_subscribe.h */; }; + ECF4C13111434F4B00B7C09B /* tsip_challenge.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFA811434F4A00B7C09B /* tsip_challenge.h */; }; + ECF4C13211434F4B00B7C09B /* tsip_milenage.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFA911434F4A00B7C09B /* tsip_milenage.h */; }; + ECF4C13311434F4B00B7C09B /* tsip_rijndael.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFAA11434F4A00B7C09B /* tsip_rijndael.h */; }; + ECF4C13411434F4B00B7C09B /* tsip_dialog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFAC11434F4A00B7C09B /* tsip_dialog.h */; }; + ECF4C13511434F4B00B7C09B /* tsip_dialog_invite.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFAD11434F4A00B7C09B /* tsip_dialog_invite.h */; }; + ECF4C13611434F4B00B7C09B /* tsip_dialog_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFAE11434F4A00B7C09B /* tsip_dialog_layer.h */; }; + ECF4C13711434F4B00B7C09B /* tsip_dialog_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFAF11434F4A00B7C09B /* tsip_dialog_message.h */; }; + ECF4C13811434F4B00B7C09B /* tsip_dialog_publish.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFB011434F4A00B7C09B /* tsip_dialog_publish.h */; }; + ECF4C13911434F4B00B7C09B /* tsip_dialog_register.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFB111434F4A00B7C09B /* tsip_dialog_register.h */; }; + ECF4C13A11434F4B00B7C09B /* tsip_dialog_subscribe.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFB211434F4A00B7C09B /* tsip_dialog_subscribe.h */; }; + ECF4C13B11434F4B00B7C09B /* tsip_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFB411434F4A00B7C09B /* tsip_header.h */; }; + ECF4C13C11434F4B00B7C09B /* tsip_header_accept.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFB511434F4A00B7C09B /* tsip_header_accept.h */; }; + ECF4C13D11434F4B00B7C09B /* tsip_header_Accept_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFB611434F4A00B7C09B /* tsip_header_Accept_Contact.h */; }; + ECF4C13E11434F4B00B7C09B /* tsip_header_Accept_Encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFB711434F4A00B7C09B /* tsip_header_Accept_Encoding.h */; }; + ECF4C13F11434F4B00B7C09B /* tsip_header_Accept_Language.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFB811434F4A00B7C09B /* tsip_header_Accept_Language.h */; }; + ECF4C14011434F4B00B7C09B /* tsip_header_Accept_Resource_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFB911434F4A00B7C09B /* tsip_header_Accept_Resource_Priority.h */; }; + ECF4C14111434F4B00B7C09B /* tsip_header_Alert_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFBA11434F4A00B7C09B /* tsip_header_Alert_Info.h */; }; + ECF4C14211434F4B00B7C09B /* tsip_header_Allow.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFBB11434F4A00B7C09B /* tsip_header_Allow.h */; }; + ECF4C14311434F4B00B7C09B /* tsip_header_Allow_Events.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFBC11434F4A00B7C09B /* tsip_header_Allow_Events.h */; }; + ECF4C14411434F4B00B7C09B /* tsip_header_Authentication_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFBD11434F4A00B7C09B /* tsip_header_Authentication_Info.h */; }; + ECF4C14511434F4B00B7C09B /* tsip_header_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFBE11434F4A00B7C09B /* tsip_header_Authorization.h */; }; + ECF4C14611434F4B00B7C09B /* tsip_header_Call_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFBF11434F4A00B7C09B /* tsip_header_Call_ID.h */; }; + ECF4C14711434F4B00B7C09B /* tsip_header_Call_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFC011434F4A00B7C09B /* tsip_header_Call_Info.h */; }; + ECF4C14811434F4B00B7C09B /* tsip_header_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFC111434F4A00B7C09B /* tsip_header_Contact.h */; }; + ECF4C14911434F4B00B7C09B /* tsip_header_Content_Disposition.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFC211434F4A00B7C09B /* tsip_header_Content_Disposition.h */; }; + ECF4C14A11434F4B00B7C09B /* tsip_header_Content_Encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFC311434F4A00B7C09B /* tsip_header_Content_Encoding.h */; }; + ECF4C14B11434F4B00B7C09B /* tsip_header_Content_Language.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFC411434F4A00B7C09B /* tsip_header_Content_Language.h */; }; + ECF4C14C11434F4B00B7C09B /* tsip_header_Content_Length.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFC511434F4A00B7C09B /* tsip_header_Content_Length.h */; }; + ECF4C14D11434F4B00B7C09B /* tsip_header_Content_Type.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFC611434F4A00B7C09B /* tsip_header_Content_Type.h */; }; + ECF4C14E11434F4B00B7C09B /* tsip_header_CSeq.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFC711434F4A00B7C09B /* tsip_header_CSeq.h */; }; + ECF4C14F11434F4B00B7C09B /* tsip_header_Date.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFC811434F4A00B7C09B /* tsip_header_Date.h */; }; + ECF4C15011434F4B00B7C09B /* tsip_header_Dummy.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFC911434F4A00B7C09B /* tsip_header_Dummy.h */; }; + ECF4C15111434F4B00B7C09B /* tsip_header_Error_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFCA11434F4A00B7C09B /* tsip_header_Error_Info.h */; }; + ECF4C15211434F4B00B7C09B /* tsip_header_Event.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFCB11434F4A00B7C09B /* tsip_header_Event.h */; }; + ECF4C15311434F4B00B7C09B /* tsip_header_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFCC11434F4A00B7C09B /* tsip_header_Expires.h */; }; + ECF4C15411434F4B00B7C09B /* tsip_header_From.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFCD11434F4A00B7C09B /* tsip_header_From.h */; }; + ECF4C15511434F4B00B7C09B /* tsip_header_History_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFCE11434F4A00B7C09B /* tsip_header_History_Info.h */; }; + ECF4C15611434F4B00B7C09B /* tsip_header_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFCF11434F4A00B7C09B /* tsip_header_Identity.h */; }; + ECF4C15711434F4B00B7C09B /* tsip_header_Identity_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFD011434F4A00B7C09B /* tsip_header_Identity_Info.h */; }; + ECF4C15811434F4B00B7C09B /* tsip_header_In_Reply_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFD111434F4A00B7C09B /* tsip_header_In_Reply_To.h */; }; + ECF4C15911434F4B00B7C09B /* tsip_header_Join.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFD211434F4A00B7C09B /* tsip_header_Join.h */; }; + ECF4C15A11434F4B00B7C09B /* tsip_header_Max_Forwards.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFD311434F4A00B7C09B /* tsip_header_Max_Forwards.h */; }; + ECF4C15B11434F4B00B7C09B /* tsip_header_MIME_Version.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFD411434F4A00B7C09B /* tsip_header_MIME_Version.h */; }; + ECF4C15C11434F4B00B7C09B /* tsip_header_Min_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFD511434F4A00B7C09B /* tsip_header_Min_Expires.h */; }; + ECF4C15D11434F4B00B7C09B /* tsip_header_Min_SE.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFD611434F4A00B7C09B /* tsip_header_Min_SE.h */; }; + ECF4C15E11434F4B00B7C09B /* tsip_header_Organization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFD711434F4A00B7C09B /* tsip_header_Organization.h */; }; + ECF4C15F11434F4B00B7C09B /* tsip_header_P_Access_Network_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFD811434F4A00B7C09B /* tsip_header_P_Access_Network_Info.h */; }; + ECF4C16011434F4B00B7C09B /* tsip_header_P_Answer_State.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFD911434F4A00B7C09B /* tsip_header_P_Answer_State.h */; }; + ECF4C16111434F4B00B7C09B /* tsip_header_P_Asserted_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFDA11434F4A00B7C09B /* tsip_header_P_Asserted_Identity.h */; }; + ECF4C16211434F4B00B7C09B /* tsip_header_P_Associated_URI.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFDB11434F4A00B7C09B /* tsip_header_P_Associated_URI.h */; }; + ECF4C16311434F4B00B7C09B /* tsip_header_P_Called_Party_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFDC11434F4A00B7C09B /* tsip_header_P_Called_Party_ID.h */; }; + ECF4C16411434F4B00B7C09B /* tsip_header_P_Charging_Function_Addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFDD11434F4A00B7C09B /* tsip_header_P_Charging_Function_Addresses.h */; }; + ECF4C16511434F4B00B7C09B /* tsip_header_P_Charging_Vector.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFDE11434F4A00B7C09B /* tsip_header_P_Charging_Vector.h */; }; + ECF4C16611434F4B00B7C09B /* tsip_header_P_DCS_Billing_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFDF11434F4A00B7C09B /* tsip_header_P_DCS_Billing_Info.h */; }; + ECF4C16711434F4B00B7C09B /* tsip_header_P_DCS_LAES.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFE011434F4A00B7C09B /* tsip_header_P_DCS_LAES.h */; }; + ECF4C16811434F4B00B7C09B /* tsip_header_P_DCS_OSPS.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFE111434F4A00B7C09B /* tsip_header_P_DCS_OSPS.h */; }; + ECF4C16911434F4B00B7C09B /* tsip_header_P_DCS_Redirect.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFE211434F4A00B7C09B /* tsip_header_P_DCS_Redirect.h */; }; + ECF4C16A11434F4B00B7C09B /* tsip_header_P_DCS_Trace_Party_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFE311434F4A00B7C09B /* tsip_header_P_DCS_Trace_Party_ID.h */; }; + ECF4C16B11434F4B00B7C09B /* tsip_header_P_Early_Media.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFE411434F4A00B7C09B /* tsip_header_P_Early_Media.h */; }; + ECF4C16C11434F4B00B7C09B /* tsip_header_P_Media_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFE511434F4A00B7C09B /* tsip_header_P_Media_Authorization.h */; }; + ECF4C16D11434F4B00B7C09B /* tsip_header_P_Preferred_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFE611434F4A00B7C09B /* tsip_header_P_Preferred_Identity.h */; }; + ECF4C16E11434F4B00B7C09B /* tsip_header_P_Profile_Key.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFE711434F4A00B7C09B /* tsip_header_P_Profile_Key.h */; }; + ECF4C16F11434F4B00B7C09B /* tsip_header_P_User_Database.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFE811434F4A00B7C09B /* tsip_header_P_User_Database.h */; }; + ECF4C17011434F4B00B7C09B /* tsip_header_P_Visited_Network_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFE911434F4A00B7C09B /* tsip_header_P_Visited_Network_ID.h */; }; + ECF4C17111434F4B00B7C09B /* tsip_header_Path.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFEA11434F4A00B7C09B /* tsip_header_Path.h */; }; + ECF4C17211434F4B00B7C09B /* tsip_header_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFEB11434F4A00B7C09B /* tsip_header_Priority.h */; }; + ECF4C17311434F4B00B7C09B /* tsip_header_Privacy.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFEC11434F4A00B7C09B /* tsip_header_Privacy.h */; }; + ECF4C17411434F4B00B7C09B /* tsip_header_Proxy_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFED11434F4A00B7C09B /* tsip_header_Proxy_Authenticate.h */; }; + ECF4C17511434F4B00B7C09B /* tsip_header_Proxy_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFEE11434F4A00B7C09B /* tsip_header_Proxy_Authorization.h */; }; + ECF4C17611434F4B00B7C09B /* tsip_header_Proxy_Require.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFEF11434F4A00B7C09B /* tsip_header_Proxy_Require.h */; }; + ECF4C17711434F4B00B7C09B /* tsip_header_RAck.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFF011434F4A00B7C09B /* tsip_header_RAck.h */; }; + ECF4C17811434F4B00B7C09B /* tsip_header_Reason.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFF111434F4A00B7C09B /* tsip_header_Reason.h */; }; + ECF4C17911434F4B00B7C09B /* tsip_header_Record_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFF211434F4A00B7C09B /* tsip_header_Record_Route.h */; }; + ECF4C17A11434F4B00B7C09B /* tsip_header_Refer_Sub.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFF311434F4A00B7C09B /* tsip_header_Refer_Sub.h */; }; + ECF4C17B11434F4B00B7C09B /* tsip_header_Refer_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFF411434F4A00B7C09B /* tsip_header_Refer_To.h */; }; + ECF4C17C11434F4B00B7C09B /* tsip_header_Referred_By.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFF511434F4A00B7C09B /* tsip_header_Referred_By.h */; }; + ECF4C17D11434F4B00B7C09B /* tsip_header_Reject_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFF611434F4A00B7C09B /* tsip_header_Reject_Contact.h */; }; + ECF4C17E11434F4B00B7C09B /* tsip_header_Replaces.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFF711434F4A00B7C09B /* tsip_header_Replaces.h */; }; + ECF4C17F11434F4B00B7C09B /* tsip_header_Reply_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFF811434F4A00B7C09B /* tsip_header_Reply_To.h */; }; + ECF4C18011434F4B00B7C09B /* tsip_header_Request_Disposition.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFF911434F4A00B7C09B /* tsip_header_Request_Disposition.h */; }; + ECF4C18111434F4B00B7C09B /* tsip_header_Require.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFFA11434F4A00B7C09B /* tsip_header_Require.h */; }; + ECF4C18211434F4B00B7C09B /* tsip_header_Resource_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFFB11434F4A00B7C09B /* tsip_header_Resource_Priority.h */; }; + ECF4C18311434F4B00B7C09B /* tsip_header_Retry_After.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFFC11434F4A00B7C09B /* tsip_header_Retry_After.h */; }; + ECF4C18411434F4B00B7C09B /* tsip_header_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFFD11434F4A00B7C09B /* tsip_header_Route.h */; }; + ECF4C18511434F4B00B7C09B /* tsip_header_RSeq.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFFE11434F4A00B7C09B /* tsip_header_RSeq.h */; }; + ECF4C18611434F4B00B7C09B /* tsip_header_Security_Client.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BFFF11434F4A00B7C09B /* tsip_header_Security_Client.h */; }; + ECF4C18711434F4B00B7C09B /* tsip_header_Security_Server.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00011434F4A00B7C09B /* tsip_header_Security_Server.h */; }; + ECF4C18811434F4B00B7C09B /* tsip_header_Security_Verify.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00111434F4A00B7C09B /* tsip_header_Security_Verify.h */; }; + ECF4C18911434F4B00B7C09B /* tsip_header_Server.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00211434F4A00B7C09B /* tsip_header_Server.h */; }; + ECF4C18A11434F4B00B7C09B /* tsip_header_Service_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00311434F4A00B7C09B /* tsip_header_Service_Route.h */; }; + ECF4C18B11434F4B00B7C09B /* tsip_header_Session_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00411434F4A00B7C09B /* tsip_header_Session_Expires.h */; }; + ECF4C18C11434F4B00B7C09B /* tsip_header_SIP_ETag.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00511434F4A00B7C09B /* tsip_header_SIP_ETag.h */; }; + ECF4C18D11434F4B00B7C09B /* tsip_header_SIP_If_Match.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00611434F4A00B7C09B /* tsip_header_SIP_If_Match.h */; }; + ECF4C18E11434F4B00B7C09B /* tsip_header_Subject.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00711434F4A00B7C09B /* tsip_header_Subject.h */; }; + ECF4C18F11434F4B00B7C09B /* tsip_header_Subscription_State.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00811434F4A00B7C09B /* tsip_header_Subscription_State.h */; }; + ECF4C19011434F4B00B7C09B /* tsip_header_Supported.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00911434F4A00B7C09B /* tsip_header_Supported.h */; }; + ECF4C19111434F4B00B7C09B /* tsip_header_Target_Dialog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00A11434F4A00B7C09B /* tsip_header_Target_Dialog.h */; }; + ECF4C19211434F4B00B7C09B /* tsip_header_Timestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00B11434F4A00B7C09B /* tsip_header_Timestamp.h */; }; + ECF4C19311434F4B00B7C09B /* tsip_header_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00C11434F4A00B7C09B /* tsip_header_To.h */; }; + ECF4C19411434F4B00B7C09B /* tsip_header_Unsupported.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00D11434F4A00B7C09B /* tsip_header_Unsupported.h */; }; + ECF4C19511434F4B00B7C09B /* tsip_header_User_Agent.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00E11434F4A00B7C09B /* tsip_header_User_Agent.h */; }; + ECF4C19611434F4B00B7C09B /* tsip_header_Via.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C00F11434F4A00B7C09B /* tsip_header_Via.h */; }; + ECF4C19711434F4B00B7C09B /* tsip_header_Warning.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01011434F4A00B7C09B /* tsip_header_Warning.h */; }; + ECF4C19811434F4B00B7C09B /* tsip_header_WWW_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01111434F4A00B7C09B /* tsip_header_WWW_Authenticate.h */; }; + ECF4C19911434F4B00B7C09B /* tsip_headers.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01211434F4A00B7C09B /* tsip_headers.h */; }; + ECF4C19A11434F4B00B7C09B /* tsip_parser_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01411434F4A00B7C09B /* tsip_parser_header.h */; }; + ECF4C19B11434F4B00B7C09B /* tsip_parser_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01511434F4A00B7C09B /* tsip_parser_message.h */; }; + ECF4C19C11434F4B00B7C09B /* tsip_parser_uri.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01611434F4A00B7C09B /* tsip_parser_uri.h */; }; + ECF4C19D11434F4B00B7C09B /* tsip_transac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01811434F4A00B7C09B /* tsip_transac.h */; }; + ECF4C19E11434F4B00B7C09B /* tsip_transac_ict.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01911434F4A00B7C09B /* tsip_transac_ict.h */; }; + ECF4C19F11434F4B00B7C09B /* tsip_transac_ist.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01A11434F4A00B7C09B /* tsip_transac_ist.h */; }; + ECF4C1A011434F4B00B7C09B /* tsip_transac_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01B11434F4A00B7C09B /* tsip_transac_layer.h */; }; + ECF4C1A111434F4B00B7C09B /* tsip_transac_nict.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01C11434F4A00B7C09B /* tsip_transac_nict.h */; }; + ECF4C1A211434F4B00B7C09B /* tsip_transac_nist.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01D11434F4A00B7C09B /* tsip_transac_nist.h */; }; + ECF4C1A311434F4B00B7C09B /* tsip_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C01F11434F4A00B7C09B /* tsip_transport.h */; }; + ECF4C1A411434F4B00B7C09B /* tsip_transport_ipsec.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C02011434F4A00B7C09B /* tsip_transport_ipsec.h */; }; + ECF4C1A511434F4B00B7C09B /* tsip_transport_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C02111434F4A00B7C09B /* tsip_transport_layer.h */; }; + ECF4C1A611434F4B00B7C09B /* tsip_transport_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C02211434F4A00B7C09B /* tsip_transport_tls.h */; }; + ECF4C1A711434F4B00B7C09B /* tsip_event.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C02311434F4A00B7C09B /* tsip_event.h */; }; + ECF4C1A811434F4B00B7C09B /* tsip_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C02411434F4A00B7C09B /* tsip_message.h */; }; + ECF4C1A911434F4B00B7C09B /* tsip_operation.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C02511434F4A00B7C09B /* tsip_operation.h */; }; + ECF4C1AA11434F4B00B7C09B /* tsip_timers.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C02611434F4A00B7C09B /* tsip_timers.h */; }; + ECF4C1AB11434F4B00B7C09B /* tsip_uri.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C02711434F4A00B7C09B /* tsip_uri.h */; }; + ECF4C1AC11434F4B00B7C09B /* tinysip_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C02811434F4A00B7C09B /* tinysip_config.h */; }; + ECF4C1AD11434F4B00B7C09B /* tsip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C02911434F4A00B7C09B /* tsip.h */; }; + ECF4C1AE11434F4B00B7C09B /* tsip_api_invite.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C09311434F4B00B7C09B /* tsip_api_invite.c */; }; + ECF4C1AF11434F4B00B7C09B /* tsip_api_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C09411434F4B00B7C09B /* tsip_api_message.c */; }; + ECF4C1B011434F4B00B7C09B /* tsip_api_publish.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C09511434F4B00B7C09B /* tsip_api_publish.c */; }; + ECF4C1B111434F4B00B7C09B /* tsip_api_register.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C09611434F4B00B7C09B /* tsip_api_register.c */; }; + ECF4C1B211434F4B00B7C09B /* tsip_api_subscribe.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C09711434F4B00B7C09B /* tsip_api_subscribe.c */; }; + ECF4C1B311434F4B00B7C09B /* tsip_challenge.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C09911434F4B00B7C09B /* tsip_challenge.c */; }; + ECF4C1B411434F4B00B7C09B /* tsip_milenage.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C09A11434F4B00B7C09B /* tsip_milenage.c */; }; + ECF4C1B511434F4B00B7C09B /* tsip_rijndael.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C09B11434F4B00B7C09B /* tsip_rijndael.c */; }; + ECF4C1B611434F4B00B7C09B /* tsip_dialog.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C09D11434F4B00B7C09B /* tsip_dialog.c */; }; + ECF4C1B711434F4B00B7C09B /* tsip_dialog_invite.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C09E11434F4B00B7C09B /* tsip_dialog_invite.client.c */; }; + ECF4C1B811434F4B00B7C09B /* tsip_dialog_invite.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C09F11434F4B00B7C09B /* tsip_dialog_invite.server.c */; }; + ECF4C1B911434F4B00B7C09B /* tsip_dialog_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0A011434F4B00B7C09B /* tsip_dialog_layer.c */; }; + ECF4C1BA11434F4B00B7C09B /* tsip_dialog_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0A111434F4B00B7C09B /* tsip_dialog_message.c */; }; + ECF4C1BB11434F4B00B7C09B /* tsip_dialog_publish.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0A211434F4B00B7C09B /* tsip_dialog_publish.client.c */; }; + ECF4C1BC11434F4B00B7C09B /* tsip_dialog_register.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0A311434F4B00B7C09B /* tsip_dialog_register.client.c */; }; + ECF4C1BD11434F4B00B7C09B /* tsip_dialog_register.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0A411434F4B00B7C09B /* tsip_dialog_register.server.c */; }; + ECF4C1BE11434F4B00B7C09B /* tsip_dialog_subscribe.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0A511434F4B00B7C09B /* tsip_dialog_subscribe.client.c */; }; + ECF4C1BF11434F4B00B7C09B /* tsip_dialog_subscribe.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0A611434F4B00B7C09B /* tsip_dialog_subscribe.server.c */; }; + ECF4C1C011434F4B00B7C09B /* tsip_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0A811434F4B00B7C09B /* tsip_header.c */; }; + ECF4C1C111434F4B00B7C09B /* tsip_header_accept.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0A911434F4B00B7C09B /* tsip_header_accept.c */; }; + ECF4C1C211434F4B00B7C09B /* tsip_header_Accept_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0AA11434F4B00B7C09B /* tsip_header_Accept_Contact.c */; }; + ECF4C1C311434F4B00B7C09B /* tsip_header_Accept_Encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0AB11434F4B00B7C09B /* tsip_header_Accept_Encoding.c */; }; + ECF4C1C411434F4B00B7C09B /* tsip_header_Accept_Language.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0AC11434F4B00B7C09B /* tsip_header_Accept_Language.c */; }; + ECF4C1C511434F4B00B7C09B /* tsip_header_Accept_Resource_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0AD11434F4B00B7C09B /* tsip_header_Accept_Resource_Priority.c */; }; + ECF4C1C611434F4B00B7C09B /* tsip_header_Alert_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0AE11434F4B00B7C09B /* tsip_header_Alert_Info.c */; }; + ECF4C1C711434F4B00B7C09B /* tsip_header_Allow.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0AF11434F4B00B7C09B /* tsip_header_Allow.c */; }; + ECF4C1C811434F4B00B7C09B /* tsip_header_Allow_Events.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0B011434F4B00B7C09B /* tsip_header_Allow_Events.c */; }; + ECF4C1C911434F4B00B7C09B /* tsip_header_Authentication_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0B111434F4B00B7C09B /* tsip_header_Authentication_Info.c */; }; + ECF4C1CA11434F4B00B7C09B /* tsip_header_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0B211434F4B00B7C09B /* tsip_header_Authorization.c */; }; + ECF4C1CB11434F4B00B7C09B /* tsip_header_Call_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0B311434F4B00B7C09B /* tsip_header_Call_ID.c */; }; + ECF4C1CC11434F4B00B7C09B /* tsip_header_Call_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0B411434F4B00B7C09B /* tsip_header_Call_Info.c */; }; + ECF4C1CD11434F4B00B7C09B /* tsip_header_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0B511434F4B00B7C09B /* tsip_header_Contact.c */; }; + ECF4C1CE11434F4B00B7C09B /* tsip_header_Content_Disposition.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0B611434F4B00B7C09B /* tsip_header_Content_Disposition.c */; }; + ECF4C1CF11434F4B00B7C09B /* tsip_header_Content_Encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0B711434F4B00B7C09B /* tsip_header_Content_Encoding.c */; }; + ECF4C1D011434F4B00B7C09B /* tsip_header_Content_Language.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0B811434F4B00B7C09B /* tsip_header_Content_Language.c */; }; + ECF4C1D111434F4B00B7C09B /* tsip_header_Content_Length.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0B911434F4B00B7C09B /* tsip_header_Content_Length.c */; }; + ECF4C1D211434F4B00B7C09B /* tsip_header_Content_Type.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0BA11434F4B00B7C09B /* tsip_header_Content_Type.c */; }; + ECF4C1D311434F4B00B7C09B /* tsip_header_CSeq.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0BB11434F4B00B7C09B /* tsip_header_CSeq.c */; }; + ECF4C1D411434F4B00B7C09B /* tsip_header_Date.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0BC11434F4B00B7C09B /* tsip_header_Date.c */; }; + ECF4C1D511434F4B00B7C09B /* tsip_header_Dummy.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0BD11434F4B00B7C09B /* tsip_header_Dummy.c */; }; + ECF4C1D611434F4B00B7C09B /* tsip_header_Error_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0BE11434F4B00B7C09B /* tsip_header_Error_Info.c */; }; + ECF4C1D711434F4B00B7C09B /* tsip_header_Event.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0BF11434F4B00B7C09B /* tsip_header_Event.c */; }; + ECF4C1D811434F4B00B7C09B /* tsip_header_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0C011434F4B00B7C09B /* tsip_header_Expires.c */; }; + ECF4C1D911434F4B00B7C09B /* tsip_header_From.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0C111434F4B00B7C09B /* tsip_header_From.c */; }; + ECF4C1DA11434F4B00B7C09B /* tsip_header_History_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0C211434F4B00B7C09B /* tsip_header_History_Info.c */; }; + ECF4C1DB11434F4B00B7C09B /* tsip_header_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0C311434F4B00B7C09B /* tsip_header_Identity.c */; }; + ECF4C1DC11434F4B00B7C09B /* tsip_header_Identity_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0C411434F4B00B7C09B /* tsip_header_Identity_Info.c */; }; + ECF4C1DD11434F4B00B7C09B /* tsip_header_In_Reply_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0C511434F4B00B7C09B /* tsip_header_In_Reply_To.c */; }; + ECF4C1DE11434F4B00B7C09B /* tsip_header_Join.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0C611434F4B00B7C09B /* tsip_header_Join.c */; }; + ECF4C1DF11434F4B00B7C09B /* tsip_header_Max_Forwards.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0C711434F4B00B7C09B /* tsip_header_Max_Forwards.c */; }; + ECF4C1E011434F4B00B7C09B /* tsip_header_MIME_Version.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0C811434F4B00B7C09B /* tsip_header_MIME_Version.c */; }; + ECF4C1E111434F4B00B7C09B /* tsip_header_Min_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0C911434F4B00B7C09B /* tsip_header_Min_Expires.c */; }; + ECF4C1E211434F4B00B7C09B /* tsip_header_Min_SE.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0CA11434F4B00B7C09B /* tsip_header_Min_SE.c */; }; + ECF4C1E311434F4B00B7C09B /* tsip_header_Organization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0CB11434F4B00B7C09B /* tsip_header_Organization.c */; }; + ECF4C1E411434F4B00B7C09B /* tsip_header_P_Access_Network_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0CC11434F4B00B7C09B /* tsip_header_P_Access_Network_Info.c */; }; + ECF4C1E511434F4B00B7C09B /* tsip_header_P_Answer_State.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0CD11434F4B00B7C09B /* tsip_header_P_Answer_State.c */; }; + ECF4C1E611434F4B00B7C09B /* tsip_header_P_Asserted_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0CE11434F4B00B7C09B /* tsip_header_P_Asserted_Identity.c */; }; + ECF4C1E711434F4B00B7C09B /* tsip_header_P_Associated_URI.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0CF11434F4B00B7C09B /* tsip_header_P_Associated_URI.c */; }; + ECF4C1E811434F4B00B7C09B /* tsip_header_P_Called_Party_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0D011434F4B00B7C09B /* tsip_header_P_Called_Party_ID.c */; }; + ECF4C1E911434F4B00B7C09B /* tsip_header_P_Charging_Function_Addresses.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0D111434F4B00B7C09B /* tsip_header_P_Charging_Function_Addresses.c */; }; + ECF4C1EA11434F4B00B7C09B /* tsip_header_P_Charging_Vector.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0D211434F4B00B7C09B /* tsip_header_P_Charging_Vector.c */; }; + ECF4C1EB11434F4B00B7C09B /* tsip_header_P_DCS_Billing_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0D311434F4B00B7C09B /* tsip_header_P_DCS_Billing_Info.c */; }; + ECF4C1EC11434F4B00B7C09B /* tsip_header_P_DCS_LAES.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0D411434F4B00B7C09B /* tsip_header_P_DCS_LAES.c */; }; + ECF4C1ED11434F4B00B7C09B /* tsip_header_P_DCS_OSPS.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0D511434F4B00B7C09B /* tsip_header_P_DCS_OSPS.c */; }; + ECF4C1EE11434F4B00B7C09B /* tsip_header_P_DCS_Redirect.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0D611434F4B00B7C09B /* tsip_header_P_DCS_Redirect.c */; }; + ECF4C1EF11434F4B00B7C09B /* tsip_header_P_DCS_Trace_Party_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0D711434F4B00B7C09B /* tsip_header_P_DCS_Trace_Party_ID.c */; }; + ECF4C1F011434F4B00B7C09B /* tsip_header_P_Early_Media.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0D811434F4B00B7C09B /* tsip_header_P_Early_Media.c */; }; + ECF4C1F111434F4B00B7C09B /* tsip_header_P_Media_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0D911434F4B00B7C09B /* tsip_header_P_Media_Authorization.c */; }; + ECF4C1F211434F4B00B7C09B /* tsip_header_P_Preferred_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0DA11434F4B00B7C09B /* tsip_header_P_Preferred_Identity.c */; }; + ECF4C1F311434F4B00B7C09B /* tsip_header_P_Profile_Key.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0DB11434F4B00B7C09B /* tsip_header_P_Profile_Key.c */; }; + ECF4C1F411434F4B00B7C09B /* tsip_header_P_User_Database.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0DC11434F4B00B7C09B /* tsip_header_P_User_Database.c */; }; + ECF4C1F511434F4B00B7C09B /* tsip_header_P_Visited_Network_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0DD11434F4B00B7C09B /* tsip_header_P_Visited_Network_ID.c */; }; + ECF4C1F611434F4B00B7C09B /* tsip_header_Path.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0DE11434F4B00B7C09B /* tsip_header_Path.c */; }; + ECF4C1F711434F4B00B7C09B /* tsip_header_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0DF11434F4B00B7C09B /* tsip_header_Priority.c */; }; + ECF4C1F811434F4B00B7C09B /* tsip_header_Privacy.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0E011434F4B00B7C09B /* tsip_header_Privacy.c */; }; + ECF4C1F911434F4B00B7C09B /* tsip_header_Proxy_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0E111434F4B00B7C09B /* tsip_header_Proxy_Authenticate.c */; }; + ECF4C1FA11434F4B00B7C09B /* tsip_header_Proxy_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0E211434F4B00B7C09B /* tsip_header_Proxy_Authorization.c */; }; + ECF4C1FB11434F4B00B7C09B /* tsip_header_Proxy_Require.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0E311434F4B00B7C09B /* tsip_header_Proxy_Require.c */; }; + ECF4C1FC11434F4B00B7C09B /* tsip_header_RAck.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0E411434F4B00B7C09B /* tsip_header_RAck.c */; }; + ECF4C1FD11434F4B00B7C09B /* tsip_header_Reason.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0E511434F4B00B7C09B /* tsip_header_Reason.c */; }; + ECF4C1FE11434F4B00B7C09B /* tsip_header_Record_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0E611434F4B00B7C09B /* tsip_header_Record_Route.c */; }; + ECF4C1FF11434F4B00B7C09B /* tsip_header_Refer_Sub.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0E711434F4B00B7C09B /* tsip_header_Refer_Sub.c */; }; + ECF4C20011434F4B00B7C09B /* tsip_header_Refer_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0E811434F4B00B7C09B /* tsip_header_Refer_To.c */; }; + ECF4C20111434F4B00B7C09B /* tsip_header_Referred_By.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0E911434F4B00B7C09B /* tsip_header_Referred_By.c */; }; + ECF4C20211434F4B00B7C09B /* tsip_header_Reject_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0EA11434F4B00B7C09B /* tsip_header_Reject_Contact.c */; }; + ECF4C20311434F4B00B7C09B /* tsip_header_Replaces.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0EB11434F4B00B7C09B /* tsip_header_Replaces.c */; }; + ECF4C20411434F4B00B7C09B /* tsip_header_Reply_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0EC11434F4B00B7C09B /* tsip_header_Reply_To.c */; }; + ECF4C20511434F4B00B7C09B /* tsip_header_Request_Disposition.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0ED11434F4B00B7C09B /* tsip_header_Request_Disposition.c */; }; + ECF4C20611434F4B00B7C09B /* tsip_header_Require.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0EE11434F4B00B7C09B /* tsip_header_Require.c */; }; + ECF4C20711434F4B00B7C09B /* tsip_header_Resource_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0EF11434F4B00B7C09B /* tsip_header_Resource_Priority.c */; }; + ECF4C20811434F4B00B7C09B /* tsip_header_Retry_After.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0F011434F4B00B7C09B /* tsip_header_Retry_After.c */; }; + ECF4C20911434F4B00B7C09B /* tsip_header_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0F111434F4B00B7C09B /* tsip_header_Route.c */; }; + ECF4C20A11434F4B00B7C09B /* tsip_header_RSeq.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0F211434F4B00B7C09B /* tsip_header_RSeq.c */; }; + ECF4C20B11434F4B00B7C09B /* tsip_header_Security_Client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0F311434F4B00B7C09B /* tsip_header_Security_Client.c */; }; + ECF4C20C11434F4B00B7C09B /* tsip_header_Security_Server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0F411434F4B00B7C09B /* tsip_header_Security_Server.c */; }; + ECF4C20D11434F4B00B7C09B /* tsip_header_Security_Verify.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0F511434F4B00B7C09B /* tsip_header_Security_Verify.c */; }; + ECF4C20E11434F4B00B7C09B /* tsip_header_Server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0F611434F4B00B7C09B /* tsip_header_Server.c */; }; + ECF4C20F11434F4B00B7C09B /* tsip_header_Service_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0F711434F4B00B7C09B /* tsip_header_Service_Route.c */; }; + ECF4C21011434F4B00B7C09B /* tsip_header_Session_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0F811434F4B00B7C09B /* tsip_header_Session_Expires.c */; }; + ECF4C21111434F4B00B7C09B /* tsip_header_SIP_ETag.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0F911434F4B00B7C09B /* tsip_header_SIP_ETag.c */; }; + ECF4C21211434F4B00B7C09B /* tsip_header_SIP_If_Match.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0FA11434F4B00B7C09B /* tsip_header_SIP_If_Match.c */; }; + ECF4C21311434F4B00B7C09B /* tsip_header_Subject.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0FB11434F4B00B7C09B /* tsip_header_Subject.c */; }; + ECF4C21411434F4B00B7C09B /* tsip_header_Subscription_State.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0FC11434F4B00B7C09B /* tsip_header_Subscription_State.c */; }; + ECF4C21511434F4B00B7C09B /* tsip_header_Supported.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0FD11434F4B00B7C09B /* tsip_header_Supported.c */; }; + ECF4C21611434F4B00B7C09B /* tsip_header_Target_Dialog.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0FE11434F4B00B7C09B /* tsip_header_Target_Dialog.c */; }; + ECF4C21711434F4B00B7C09B /* tsip_header_Timestamp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C0FF11434F4B00B7C09B /* tsip_header_Timestamp.c */; }; + ECF4C21811434F4B00B7C09B /* tsip_header_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10011434F4B00B7C09B /* tsip_header_To.c */; }; + ECF4C21911434F4B00B7C09B /* tsip_header_Unsupported.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10111434F4B00B7C09B /* tsip_header_Unsupported.c */; }; + ECF4C21A11434F4B00B7C09B /* tsip_header_User_Agent.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10211434F4B00B7C09B /* tsip_header_User_Agent.c */; }; + ECF4C21B11434F4B00B7C09B /* tsip_header_Via.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10311434F4B00B7C09B /* tsip_header_Via.c */; }; + ECF4C21C11434F4B00B7C09B /* tsip_header_Warning.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10411434F4B00B7C09B /* tsip_header_Warning.c */; }; + ECF4C21D11434F4B00B7C09B /* tsip_header_WWW_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10511434F4B00B7C09B /* tsip_header_WWW_Authenticate.c */; }; + ECF4C21F11434F4B00B7C09B /* tsip_parser_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10811434F4B00B7C09B /* tsip_parser_header.c */; }; + ECF4C22011434F4B00B7C09B /* tsip_parser_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10911434F4B00B7C09B /* tsip_parser_message.c */; }; + ECF4C22111434F4B00B7C09B /* tsip_parser_uri.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10A11434F4B00B7C09B /* tsip_parser_uri.c */; }; + ECF4C22211434F4B00B7C09B /* tsip_transac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10C11434F4B00B7C09B /* tsip_transac.c */; }; + ECF4C22311434F4B00B7C09B /* tsip_transac_ict.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10D11434F4B00B7C09B /* tsip_transac_ict.c */; }; + ECF4C22411434F4B00B7C09B /* tsip_transac_ist.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10E11434F4B00B7C09B /* tsip_transac_ist.c */; }; + ECF4C22511434F4B00B7C09B /* tsip_transac_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C10F11434F4B00B7C09B /* tsip_transac_layer.c */; }; + ECF4C22611434F4B00B7C09B /* tsip_transac_nict.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11011434F4B00B7C09B /* tsip_transac_nict.c */; }; + ECF4C22711434F4B00B7C09B /* tsip_transac_nist.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11111434F4B00B7C09B /* tsip_transac_nist.c */; }; + ECF4C22811434F4B00B7C09B /* tsip_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11311434F4B00B7C09B /* tsip_transport.c */; }; + ECF4C22911434F4B00B7C09B /* tsip_transport_ipsec.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11411434F4B00B7C09B /* tsip_transport_ipsec.c */; }; + ECF4C22A11434F4B00B7C09B /* tsip_transport_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11511434F4B00B7C09B /* tsip_transport_layer.c */; }; + ECF4C22B11434F4B00B7C09B /* tsip_transport_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11611434F4B00B7C09B /* tsip_transport_tls.c */; }; + ECF4C22C11434F4B00B7C09B /* tsip.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11711434F4B00B7C09B /* tsip.c */; }; + ECF4C22D11434F4B00B7C09B /* tsip_event.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11811434F4B00B7C09B /* tsip_event.c */; }; + ECF4C22E11434F4B00B7C09B /* tsip_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11911434F4B00B7C09B /* tsip_message.c */; }; + ECF4C22F11434F4B00B7C09B /* tsip_operation.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11A11434F4B00B7C09B /* tsip_operation.c */; }; + ECF4C23011434F4B00B7C09B /* tsip_timers.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11B11434F4B00B7C09B /* tsip_timers.c */; }; + ECF4C23111434F4B00B7C09B /* tsip_uri.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C11C11434F4B00B7C09B /* tsip_uri.c */; }; + ECF4C5FB11434F9500B7C09B /* tinySAK_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C28911434F9300B7C09B /* tinySAK_config.h */; }; + ECF4C5FC11434F9500B7C09B /* tsk.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C28A11434F9300B7C09B /* tsk.c */; }; + ECF4C5FD11434F9500B7C09B /* tsk.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C28B11434F9300B7C09B /* tsk.h */; }; + ECF4C5FE11434F9500B7C09B /* tsk_base64.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C28C11434F9300B7C09B /* tsk_base64.c */; }; + ECF4C5FF11434F9500B7C09B /* tsk_base64.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C28D11434F9300B7C09B /* tsk_base64.h */; }; + ECF4C60011434F9500B7C09B /* tsk_binaryutils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C28E11434F9300B7C09B /* tsk_binaryutils.c */; }; + ECF4C60111434F9500B7C09B /* tsk_binaryutils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C28F11434F9300B7C09B /* tsk_binaryutils.h */; }; + ECF4C60211434F9500B7C09B /* tsk_buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C29011434F9300B7C09B /* tsk_buffer.c */; }; + ECF4C60311434F9500B7C09B /* tsk_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C29111434F9300B7C09B /* tsk_buffer.h */; }; + ECF4C60411434F9500B7C09B /* tsk_condwait.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C29211434F9300B7C09B /* tsk_condwait.c */; }; + ECF4C60511434F9500B7C09B /* tsk_condwait.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C29311434F9300B7C09B /* tsk_condwait.h */; }; + ECF4C60611434F9500B7C09B /* tsk_debug.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C29411434F9300B7C09B /* tsk_debug.c */; }; + ECF4C60711434F9500B7C09B /* tsk_debug.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C29511434F9300B7C09B /* tsk_debug.h */; }; + ECF4C60811434F9500B7C09B /* tsk_errno.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C29611434F9300B7C09B /* tsk_errno.h */; }; + ECF4C60911434F9500B7C09B /* tsk_fsm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C29711434F9300B7C09B /* tsk_fsm.c */; }; + ECF4C60A11434F9500B7C09B /* tsk_fsm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C29811434F9300B7C09B /* tsk_fsm.h */; }; + ECF4C60B11434F9500B7C09B /* tsk_hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C29911434F9300B7C09B /* tsk_hmac.c */; }; + ECF4C60C11434F9500B7C09B /* tsk_hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C29A11434F9300B7C09B /* tsk_hmac.h */; }; + ECF4C60D11434F9500B7C09B /* tsk_list.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C29B11434F9300B7C09B /* tsk_list.c */; }; + ECF4C60E11434F9500B7C09B /* tsk_list.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C29C11434F9300B7C09B /* tsk_list.h */; }; + ECF4C60F11434F9500B7C09B /* tsk_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C29D11434F9300B7C09B /* tsk_md5.c */; }; + ECF4C61011434F9500B7C09B /* tsk_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C29E11434F9300B7C09B /* tsk_md5.h */; }; + ECF4C61111434F9500B7C09B /* tsk_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C29F11434F9300B7C09B /* tsk_memory.c */; }; + ECF4C61211434F9500B7C09B /* tsk_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2A011434F9300B7C09B /* tsk_memory.h */; }; + ECF4C61311434F9500B7C09B /* tsk_mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2A111434F9300B7C09B /* tsk_mutex.c */; }; + ECF4C61411434F9500B7C09B /* tsk_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2A211434F9300B7C09B /* tsk_mutex.h */; }; + ECF4C61511434F9500B7C09B /* tsk_object.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2A311434F9300B7C09B /* tsk_object.c */; }; + ECF4C61611434F9500B7C09B /* tsk_object.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2A411434F9300B7C09B /* tsk_object.h */; }; + ECF4C61711434F9500B7C09B /* tsk_params.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2A511434F9300B7C09B /* tsk_params.c */; }; + ECF4C61811434F9500B7C09B /* tsk_params.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2A611434F9300B7C09B /* tsk_params.h */; }; + ECF4C61911434F9500B7C09B /* tsk_ppfcs16.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2A711434F9300B7C09B /* tsk_ppfcs16.c */; }; + ECF4C61A11434F9500B7C09B /* tsk_ppfcs16.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2A811434F9300B7C09B /* tsk_ppfcs16.h */; }; + ECF4C61B11434F9500B7C09B /* tsk_ppfcs32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2A911434F9300B7C09B /* tsk_ppfcs32.c */; }; + ECF4C61C11434F9500B7C09B /* tsk_ppfcs32.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2AA11434F9300B7C09B /* tsk_ppfcs32.h */; }; + ECF4C61D11434F9500B7C09B /* tsk_ragel_state.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2AB11434F9300B7C09B /* tsk_ragel_state.c */; }; + ECF4C61E11434F9500B7C09B /* tsk_ragel_state.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2AC11434F9300B7C09B /* tsk_ragel_state.h */; }; + ECF4C61F11434F9500B7C09B /* tsk_runnable.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2AD11434F9300B7C09B /* tsk_runnable.c */; }; + ECF4C62011434F9500B7C09B /* tsk_runnable.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2AE11434F9300B7C09B /* tsk_runnable.h */; }; + ECF4C62111434F9500B7C09B /* tsk_safeobj.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2AF11434F9300B7C09B /* tsk_safeobj.c */; }; + ECF4C62211434F9500B7C09B /* tsk_safeobj.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2B011434F9300B7C09B /* tsk_safeobj.h */; }; + ECF4C62311434F9500B7C09B /* tsk_semaphore.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2B111434F9300B7C09B /* tsk_semaphore.c */; }; + ECF4C62411434F9500B7C09B /* tsk_semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2B211434F9300B7C09B /* tsk_semaphore.h */; }; + ECF4C62511434F9500B7C09B /* tsk_sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2B311434F9300B7C09B /* tsk_sha1.c */; }; + ECF4C62611434F9500B7C09B /* tsk_sha1.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2B411434F9300B7C09B /* tsk_sha1.h */; }; + ECF4C62711434F9500B7C09B /* tsk_string.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2B511434F9300B7C09B /* tsk_string.c */; }; + ECF4C62811434F9500B7C09B /* tsk_string.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2B611434F9300B7C09B /* tsk_string.h */; }; + ECF4C62911434F9500B7C09B /* tsk_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2B711434F9300B7C09B /* tsk_thread.c */; }; + ECF4C62A11434F9500B7C09B /* tsk_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2B811434F9300B7C09B /* tsk_thread.h */; }; + ECF4C62B11434F9500B7C09B /* tsk_time.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2B911434F9300B7C09B /* tsk_time.c */; }; + ECF4C62C11434F9500B7C09B /* tsk_time.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2BA11434F9300B7C09B /* tsk_time.h */; }; + ECF4C62D11434F9500B7C09B /* tsk_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2BB11434F9300B7C09B /* tsk_timer.c */; }; + ECF4C62E11434F9500B7C09B /* tsk_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2BC11434F9300B7C09B /* tsk_timer.h */; }; + ECF4C62F11434F9500B7C09B /* tsk_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2BD11434F9300B7C09B /* tsk_url.c */; }; + ECF4C63011434F9500B7C09B /* tsk_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2BE11434F9300B7C09B /* tsk_url.h */; }; + ECF4C63111434F9500B7C09B /* tsk_uuid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2BF11434F9300B7C09B /* tsk_uuid.c */; }; + ECF4C63211434F9500B7C09B /* tsk_uuid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2C011434F9300B7C09B /* tsk_uuid.h */; }; + ECF4C63311434F9500B7C09B /* tsk_xml.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C2C111434F9300B7C09B /* tsk_xml.c */; }; + ECF4C63411434F9500B7C09B /* tsk_xml.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C2C211434F9300B7C09B /* tsk_xml.h */; }; + ECF4C89911434FEA00B7C09B /* tnet_dhcp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C82E11434FEA00B7C09B /* tnet_dhcp.c */; }; + ECF4C89A11434FEA00B7C09B /* tnet_dhcp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C82F11434FEA00B7C09B /* tnet_dhcp.h */; }; + ECF4C89B11434FEA00B7C09B /* tnet_dhcp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C83011434FEA00B7C09B /* tnet_dhcp_message.c */; }; + ECF4C89C11434FEA00B7C09B /* tnet_dhcp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C83111434FEA00B7C09B /* tnet_dhcp_message.h */; }; + ECF4C89D11434FEA00B7C09B /* tnet_dhcp_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C83211434FEA00B7C09B /* tnet_dhcp_option.c */; }; + ECF4C89E11434FEA00B7C09B /* tnet_dhcp_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C83311434FEA00B7C09B /* tnet_dhcp_option.h */; }; + ECF4C89F11434FEA00B7C09B /* tnet_dhcp_option_sip.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C83411434FEA00B7C09B /* tnet_dhcp_option_sip.c */; }; + ECF4C8A011434FEA00B7C09B /* tnet_dhcp_option_sip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C83511434FEA00B7C09B /* tnet_dhcp_option_sip.h */; }; + ECF4C8A111434FEA00B7C09B /* tnet_dhcp6.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C83711434FEA00B7C09B /* tnet_dhcp6.c */; }; + ECF4C8A211434FEA00B7C09B /* tnet_dhcp6.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C83811434FEA00B7C09B /* tnet_dhcp6.h */; }; + ECF4C8A311434FEA00B7C09B /* tnet_dhcp6_duid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C83911434FEA00B7C09B /* tnet_dhcp6_duid.c */; }; + ECF4C8A411434FEA00B7C09B /* tnet_dhcp6_duid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C83A11434FEA00B7C09B /* tnet_dhcp6_duid.h */; }; + ECF4C8A511434FEA00B7C09B /* tnet_dhcp6_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C83B11434FEA00B7C09B /* tnet_dhcp6_message.c */; }; + ECF4C8A611434FEA00B7C09B /* tnet_dhcp6_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C83C11434FEA00B7C09B /* tnet_dhcp6_message.h */; }; + ECF4C8A711434FEA00B7C09B /* tnet_dhcp6_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C83D11434FEA00B7C09B /* tnet_dhcp6_option.c */; }; + ECF4C8A811434FEA00B7C09B /* tnet_dhcp6_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C83E11434FEA00B7C09B /* tnet_dhcp6_option.h */; }; + ECF4C8A911434FEA00B7C09B /* tnet_dns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C84011434FEA00B7C09B /* tnet_dns.c */; }; + ECF4C8AA11434FEA00B7C09B /* tnet_dns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C84111434FEA00B7C09B /* tnet_dns.h */; }; + ECF4C8AB11434FEA00B7C09B /* tnet_dns_a.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C84211434FEA00B7C09B /* tnet_dns_a.c */; }; + ECF4C8AC11434FEA00B7C09B /* tnet_dns_a.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C84311434FEA00B7C09B /* tnet_dns_a.h */; }; + ECF4C8AD11434FEA00B7C09B /* tnet_dns_aaaa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C84411434FEA00B7C09B /* tnet_dns_aaaa.c */; }; + ECF4C8AE11434FEA00B7C09B /* tnet_dns_aaaa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C84511434FEA00B7C09B /* tnet_dns_aaaa.h */; }; + ECF4C8AF11434FEA00B7C09B /* tnet_dns_cname.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C84611434FEA00B7C09B /* tnet_dns_cname.c */; }; + ECF4C8B011434FEA00B7C09B /* tnet_dns_cname.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C84711434FEA00B7C09B /* tnet_dns_cname.h */; }; + ECF4C8B111434FEA00B7C09B /* tnet_dns_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C84811434FEA00B7C09B /* tnet_dns_message.c */; }; + ECF4C8B211434FEA00B7C09B /* tnet_dns_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C84911434FEA00B7C09B /* tnet_dns_message.h */; }; + ECF4C8B311434FEA00B7C09B /* tnet_dns_mx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C84A11434FEA00B7C09B /* tnet_dns_mx.c */; }; + ECF4C8B411434FEA00B7C09B /* tnet_dns_mx.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C84B11434FEA00B7C09B /* tnet_dns_mx.h */; }; + ECF4C8B511434FEA00B7C09B /* tnet_dns_naptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C84C11434FEA00B7C09B /* tnet_dns_naptr.c */; }; + ECF4C8B611434FEA00B7C09B /* tnet_dns_naptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C84D11434FEA00B7C09B /* tnet_dns_naptr.h */; }; + ECF4C8B711434FEA00B7C09B /* tnet_dns_ns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C84E11434FEA00B7C09B /* tnet_dns_ns.c */; }; + ECF4C8B811434FEA00B7C09B /* tnet_dns_ns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C84F11434FEA00B7C09B /* tnet_dns_ns.h */; }; + ECF4C8B911434FEA00B7C09B /* tnet_dns_opt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C85011434FEA00B7C09B /* tnet_dns_opt.c */; }; + ECF4C8BA11434FEA00B7C09B /* tnet_dns_opt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C85111434FEA00B7C09B /* tnet_dns_opt.h */; }; + ECF4C8BB11434FEA00B7C09B /* tnet_dns_ptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C85211434FEA00B7C09B /* tnet_dns_ptr.c */; }; + ECF4C8BC11434FEA00B7C09B /* tnet_dns_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C85311434FEA00B7C09B /* tnet_dns_ptr.h */; }; + ECF4C8BD11434FEA00B7C09B /* tnet_dns_rr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C85411434FEA00B7C09B /* tnet_dns_rr.c */; }; + ECF4C8BE11434FEA00B7C09B /* tnet_dns_rr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C85511434FEA00B7C09B /* tnet_dns_rr.h */; }; + ECF4C8BF11434FEA00B7C09B /* tnet_dns_soa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C85611434FEA00B7C09B /* tnet_dns_soa.c */; }; + ECF4C8C011434FEA00B7C09B /* tnet_dns_soa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C85711434FEA00B7C09B /* tnet_dns_soa.h */; }; + ECF4C8C111434FEA00B7C09B /* tnet_dns_srv.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C85811434FEA00B7C09B /* tnet_dns_srv.c */; }; + ECF4C8C211434FEA00B7C09B /* tnet_dns_srv.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C85911434FEA00B7C09B /* tnet_dns_srv.h */; }; + ECF4C8C311434FEA00B7C09B /* tnet_dns_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C85A11434FEA00B7C09B /* tnet_dns_txt.c */; }; + ECF4C8C411434FEA00B7C09B /* tnet_dns_txt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C85B11434FEA00B7C09B /* tnet_dns_txt.h */; }; + ECF4C8C511434FEA00B7C09B /* tnet_ice.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C85D11434FEA00B7C09B /* tnet_ice.c */; }; + ECF4C8C611434FEA00B7C09B /* tnet_ice.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C85E11434FEA00B7C09B /* tnet_ice.h */; }; + ECF4C8C811434FEA00B7C09B /* tnet_stun.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C86211434FEA00B7C09B /* tnet_stun.c */; }; + ECF4C8C911434FEA00B7C09B /* tnet_stun.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C86311434FEA00B7C09B /* tnet_stun.h */; }; + ECF4C8CA11434FEA00B7C09B /* tnet_stun_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C86411434FEA00B7C09B /* tnet_stun_attribute.c */; }; + ECF4C8CB11434FEA00B7C09B /* tnet_stun_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C86511434FEA00B7C09B /* tnet_stun_attribute.h */; }; + ECF4C8CC11434FEA00B7C09B /* tnet_stun_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C86611434FEA00B7C09B /* tnet_stun_message.c */; }; + ECF4C8CD11434FEA00B7C09B /* tnet_stun_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C86711434FEA00B7C09B /* tnet_stun_message.h */; }; + ECF4C8CE11434FEA00B7C09B /* tinyNET_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C86811434FEA00B7C09B /* tinyNET_config.h */; }; + ECF4C8CF11434FEA00B7C09B /* tnet_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C86A11434FEA00B7C09B /* tnet_tls.c */; }; + ECF4C8D011434FEA00B7C09B /* tnet_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C86B11434FEA00B7C09B /* tnet_tls.h */; }; + ECF4C8D111434FEA00B7C09B /* tnet.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C86C11434FEA00B7C09B /* tnet.c */; }; + ECF4C8D211434FEA00B7C09B /* tnet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C86D11434FEA00B7C09B /* tnet.h */; }; + ECF4C8D311434FEA00B7C09B /* tnet_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C86E11434FEA00B7C09B /* tnet_auth.c */; }; + ECF4C8D411434FEA00B7C09B /* tnet_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C86F11434FEA00B7C09B /* tnet_auth.h */; }; + ECF4C8D511434FEA00B7C09B /* tnet_hardwares.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C87011434FEA00B7C09B /* tnet_hardwares.h */; }; + ECF4C8D611434FEA00B7C09B /* tnet_nat.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C87111434FEA00B7C09B /* tnet_nat.c */; }; + ECF4C8D711434FEA00B7C09B /* tnet_nat.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C87211434FEA00B7C09B /* tnet_nat.h */; }; + ECF4C8D811434FEA00B7C09B /* tnet_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C87311434FEA00B7C09B /* tnet_poll.c */; }; + ECF4C8D911434FEA00B7C09B /* tnet_poll.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C87411434FEA00B7C09B /* tnet_poll.h */; }; + ECF4C8DA11434FEA00B7C09B /* tnet_proto.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C87511434FEA00B7C09B /* tnet_proto.h */; }; + ECF4C8DB11434FEA00B7C09B /* tnet_socket.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C87611434FEA00B7C09B /* tnet_socket.c */; }; + ECF4C8DC11434FEA00B7C09B /* tnet_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C87711434FEA00B7C09B /* tnet_socket.h */; }; + ECF4C8DD11434FEA00B7C09B /* tnet_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C87811434FEA00B7C09B /* tnet_transport.c */; }; + ECF4C8DE11434FEA00B7C09B /* tnet_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C87911434FEA00B7C09B /* tnet_transport.h */; }; + ECF4C8DF11434FEA00B7C09B /* tnet_transport_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C87A11434FEA00B7C09B /* tnet_transport_poll.c */; }; + ECF4C8E011434FEA00B7C09B /* tnet_transport_win32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C87B11434FEA00B7C09B /* tnet_transport_win32.c */; }; + ECF4C8E111434FEA00B7C09B /* tnet_types.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C87C11434FEA00B7C09B /* tnet_types.h */; }; + ECF4C8E211434FEA00B7C09B /* tnet_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C87D11434FEA00B7C09B /* tnet_utils.c */; }; + ECF4C8E311434FEA00B7C09B /* tnet_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C87E11434FEA00B7C09B /* tnet_utils.h */; }; + ECF4C8E411434FEA00B7C09B /* tnet_turn.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C88011434FEA00B7C09B /* tnet_turn.c */; }; + ECF4C8E511434FEA00B7C09B /* tnet_turn.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C88111434FEA00B7C09B /* tnet_turn.h */; }; + ECF4C8E611434FEA00B7C09B /* tnet_turn_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C88211434FEA00B7C09B /* tnet_turn_attribute.c */; }; + ECF4C8E711434FEA00B7C09B /* tnet_turn_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C88311434FEA00B7C09B /* tnet_turn_attribute.h */; }; + ECF4C8E811434FEA00B7C09B /* tnet_turn_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4C88411434FEA00B7C09B /* tnet_turn_message.c */; }; + ECF4C8E911434FEA00B7C09B /* tnet_turn_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4C88511434FEA00B7C09B /* tnet_turn_message.h */; }; + ECF4C8FE1143503700B7C09B /* libtinyNET.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED686410F997F2006B4DC9 /* libtinyNET.dylib */; }; + ECF4C9031143506000B7C09B /* libtinyIPSec.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF46DC111347F8100390CBE /* libtinyIPSec.dylib */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -516,67 +532,25 @@ remoteGlobalIDString = ECED689C10F998E4006B4DC9; remoteInfo = tinyHTTP; }; + ECF4C8FC1143502C00B7C09B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ECED686310F997F2006B4DC9 /* tinyNET */; + remoteInfo = tinyNET; + }; + ECF4C9011143505C00B7C09B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ECF46DC011347F8100390CBE /* tinyIPSec */; + remoteInfo = tinyIPSec; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ D2AAC0630554660B00DB518D /* libtinySIP.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinySIP.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; - 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; }; 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; }; - ECED67F010F996F6006B4DC9 /* tsk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk.h; path = ../../tinySAK/src/tsk.h; sourceTree = SOURCE_ROOT; }; - ECED67F110F996F6006B4DC9 /* tsk_base64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_base64.c; path = ../../tinySAK/src/tsk_base64.c; sourceTree = SOURCE_ROOT; }; - ECED67F210F996F6006B4DC9 /* tsk_base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_base64.h; path = ../../tinySAK/src/tsk_base64.h; sourceTree = SOURCE_ROOT; }; - ECED67F310F996F6006B4DC9 /* tsk_binaryutils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_binaryutils.c; path = ../../tinySAK/src/tsk_binaryutils.c; sourceTree = SOURCE_ROOT; }; - ECED67F410F996F6006B4DC9 /* tsk_binaryutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_binaryutils.h; path = ../../tinySAK/src/tsk_binaryutils.h; sourceTree = SOURCE_ROOT; }; - ECED67F510F996F6006B4DC9 /* tsk_buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_buffer.c; path = ../../tinySAK/src/tsk_buffer.c; sourceTree = SOURCE_ROOT; }; - ECED67F610F996F6006B4DC9 /* tsk_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_buffer.h; path = ../../tinySAK/src/tsk_buffer.h; sourceTree = SOURCE_ROOT; }; - ECED67F710F996F6006B4DC9 /* tsk_condwait.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_condwait.c; path = ../../tinySAK/src/tsk_condwait.c; sourceTree = SOURCE_ROOT; }; - ECED67F810F996F6006B4DC9 /* tsk_condwait.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_condwait.h; path = ../../tinySAK/src/tsk_condwait.h; sourceTree = SOURCE_ROOT; }; - ECED67F910F996F6006B4DC9 /* tsk_debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_debug.c; path = ../../tinySAK/src/tsk_debug.c; sourceTree = SOURCE_ROOT; }; - ECED67FA10F996F6006B4DC9 /* tsk_debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_debug.h; path = ../../tinySAK/src/tsk_debug.h; sourceTree = SOURCE_ROOT; }; - ECED67FB10F996F6006B4DC9 /* tsk_errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_errno.h; path = ../../tinySAK/src/tsk_errno.h; sourceTree = SOURCE_ROOT; }; - ECED67FC10F996F6006B4DC9 /* tsk_heap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_heap.c; path = ../../tinySAK/src/tsk_heap.c; sourceTree = SOURCE_ROOT; }; - ECED67FD10F996F6006B4DC9 /* tsk_heap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_heap.h; path = ../../tinySAK/src/tsk_heap.h; sourceTree = SOURCE_ROOT; }; - ECED67FE10F996F6006B4DC9 /* tsk_hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_hmac.c; path = ../../tinySAK/src/tsk_hmac.c; sourceTree = SOURCE_ROOT; }; - ECED67FF10F996F6006B4DC9 /* tsk_hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_hmac.h; path = ../../tinySAK/src/tsk_hmac.h; sourceTree = SOURCE_ROOT; }; - ECED680010F996F6006B4DC9 /* tsk_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_list.c; path = ../../tinySAK/src/tsk_list.c; sourceTree = SOURCE_ROOT; }; - ECED680110F996F6006B4DC9 /* tsk_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_list.h; path = ../../tinySAK/src/tsk_list.h; sourceTree = SOURCE_ROOT; }; - ECED680210F996F6006B4DC9 /* tsk_macros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_macros.h; path = ../../tinySAK/src/tsk_macros.h; sourceTree = SOURCE_ROOT; }; - ECED680310F996F6006B4DC9 /* tsk_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_md5.c; path = ../../tinySAK/src/tsk_md5.c; sourceTree = SOURCE_ROOT; }; - ECED680410F996F6006B4DC9 /* tsk_md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_md5.h; path = ../../tinySAK/src/tsk_md5.h; sourceTree = SOURCE_ROOT; }; - ECED680510F996F6006B4DC9 /* tsk_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_memory.c; path = ../../tinySAK/src/tsk_memory.c; sourceTree = SOURCE_ROOT; }; - ECED680610F996F6006B4DC9 /* tsk_memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_memory.h; path = ../../tinySAK/src/tsk_memory.h; sourceTree = SOURCE_ROOT; }; - ECED680710F996F6006B4DC9 /* tsk_mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_mutex.c; path = ../../tinySAK/src/tsk_mutex.c; sourceTree = SOURCE_ROOT; }; - ECED680810F996F6006B4DC9 /* tsk_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_mutex.h; path = ../../tinySAK/src/tsk_mutex.h; sourceTree = SOURCE_ROOT; }; - ECED680910F996F6006B4DC9 /* tsk_object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_object.c; path = ../../tinySAK/src/tsk_object.c; sourceTree = SOURCE_ROOT; }; - ECED680A10F996F6006B4DC9 /* tsk_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_object.h; path = ../../tinySAK/src/tsk_object.h; sourceTree = SOURCE_ROOT; }; - ECED680B10F996F6006B4DC9 /* tsk_params.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_params.c; path = ../../tinySAK/src/tsk_params.c; sourceTree = SOURCE_ROOT; }; - ECED680C10F996F6006B4DC9 /* tsk_params.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_params.h; path = ../../tinySAK/src/tsk_params.h; sourceTree = SOURCE_ROOT; }; - ECED680D10F996F6006B4DC9 /* tsk_ppfcs16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_ppfcs16.c; path = ../../tinySAK/src/tsk_ppfcs16.c; sourceTree = SOURCE_ROOT; }; - ECED680E10F996F6006B4DC9 /* tsk_ppfcs16.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_ppfcs16.h; path = ../../tinySAK/src/tsk_ppfcs16.h; sourceTree = SOURCE_ROOT; }; - ECED680F10F996F6006B4DC9 /* tsk_runnable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_runnable.c; path = ../../tinySAK/src/tsk_runnable.c; sourceTree = SOURCE_ROOT; }; - ECED681010F996F6006B4DC9 /* tsk_runnable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_runnable.h; path = ../../tinySAK/src/tsk_runnable.h; sourceTree = SOURCE_ROOT; }; - ECED681110F996F6006B4DC9 /* tsk_safeobj.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_safeobj.c; path = ../../tinySAK/src/tsk_safeobj.c; sourceTree = SOURCE_ROOT; }; - ECED681210F996F6006B4DC9 /* tsk_safeobj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_safeobj.h; path = ../../tinySAK/src/tsk_safeobj.h; sourceTree = SOURCE_ROOT; }; - ECED681310F996F6006B4DC9 /* tsk_semaphore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_semaphore.c; path = ../../tinySAK/src/tsk_semaphore.c; sourceTree = SOURCE_ROOT; }; - ECED681410F996F6006B4DC9 /* tsk_semaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_semaphore.h; path = ../../tinySAK/src/tsk_semaphore.h; sourceTree = SOURCE_ROOT; }; - ECED681510F996F6006B4DC9 /* tsk_sha1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_sha1.c; path = ../../tinySAK/src/tsk_sha1.c; sourceTree = SOURCE_ROOT; }; - ECED681610F996F6006B4DC9 /* tsk_sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_sha1.h; path = ../../tinySAK/src/tsk_sha1.h; sourceTree = SOURCE_ROOT; }; - ECED681710F996F6006B4DC9 /* tsk_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_string.c; path = ../../tinySAK/src/tsk_string.c; sourceTree = SOURCE_ROOT; }; - ECED681810F996F6006B4DC9 /* tsk_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_string.h; path = ../../tinySAK/src/tsk_string.h; sourceTree = SOURCE_ROOT; }; - ECED681910F996F6006B4DC9 /* tsk_thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_thread.c; path = ../../tinySAK/src/tsk_thread.c; sourceTree = SOURCE_ROOT; }; - ECED681A10F996F6006B4DC9 /* tsk_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_thread.h; path = ../../tinySAK/src/tsk_thread.h; sourceTree = SOURCE_ROOT; }; - ECED681B10F996F6006B4DC9 /* tsk_time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_time.c; path = ../../tinySAK/src/tsk_time.c; sourceTree = SOURCE_ROOT; }; - ECED681C10F996F6006B4DC9 /* tsk_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_time.h; path = ../../tinySAK/src/tsk_time.h; sourceTree = SOURCE_ROOT; }; - ECED681D10F996F6006B4DC9 /* tsk_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_timer.c; path = ../../tinySAK/src/tsk_timer.c; sourceTree = SOURCE_ROOT; }; - ECED681E10F996F6006B4DC9 /* tsk_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_timer.h; path = ../../tinySAK/src/tsk_timer.h; sourceTree = SOURCE_ROOT; }; - ECED681F10F996F6006B4DC9 /* tsk_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_url.c; path = ../../tinySAK/src/tsk_url.c; sourceTree = SOURCE_ROOT; }; - 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; }; ECED686410F997F2006B4DC9 /* libtinyNET.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyNET.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; ECED689D10F998E4006B4DC9 /* libtinyHTTP.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyHTTP.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; ECED6AFE10F9A93A006B4DC9 /* test */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = test; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -588,497 +562,6 @@ 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 = ""; }; @@ -1091,6 +574,441 @@ 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; }; + ECF4BF1811434EFE00B7C09B /* thttp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp.h; sourceTree = ""; }; + ECF4BF1B11434EFE00B7C09B /* thttp_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_auth.h; sourceTree = ""; }; + ECF4BF1D11434EFE00B7C09B /* thttp_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header.h; sourceTree = ""; }; + ECF4BF1E11434EFE00B7C09B /* thttp_header_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Authorization.h; sourceTree = ""; }; + ECF4BF1F11434EFE00B7C09B /* thttp_header_Content_Length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Content_Length.h; sourceTree = ""; }; + ECF4BF2011434EFE00B7C09B /* thttp_header_Content_Type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Content_Type.h; sourceTree = ""; }; + ECF4BF2111434EFE00B7C09B /* thttp_header_Dummy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Dummy.h; sourceTree = ""; }; + ECF4BF2211434EFE00B7C09B /* thttp_header_Proxy_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Proxy_Authenticate.h; sourceTree = ""; }; + ECF4BF2311434EFE00B7C09B /* thttp_header_WWW_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_WWW_Authenticate.h; sourceTree = ""; }; + ECF4BF2511434EFE00B7C09B /* thttp_parser_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_header.h; sourceTree = ""; }; + ECF4BF2611434EFE00B7C09B /* thttp_parser_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_message.h; sourceTree = ""; }; + ECF4BF2711434EFE00B7C09B /* thttp_parser_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_url.h; sourceTree = ""; }; + ECF4BF2811434EFE00B7C09B /* thttp_event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_event.h; sourceTree = ""; }; + ECF4BF2911434EFE00B7C09B /* thttp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_message.h; sourceTree = ""; }; + ECF4BF2A11434EFE00B7C09B /* thttp_operation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_operation.h; sourceTree = ""; }; + ECF4BF2B11434EFE00B7C09B /* thttp_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_transport.h; sourceTree = ""; }; + ECF4BF2C11434EFE00B7C09B /* thttp_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_url.h; sourceTree = ""; }; + ECF4BF2D11434EFE00B7C09B /* tinyhttp_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyhttp_config.h; sourceTree = ""; }; + ECF4BF3D11434EFE00B7C09B /* thttp_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_auth.c; sourceTree = ""; }; + ECF4BF3F11434EFE00B7C09B /* thttp_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header.c; sourceTree = ""; }; + ECF4BF4011434EFE00B7C09B /* thttp_header_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Authorization.c; sourceTree = ""; }; + ECF4BF4111434EFE00B7C09B /* thttp_header_Content_Length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Length.c; sourceTree = ""; }; + ECF4BF4211434EFE00B7C09B /* thttp_header_Content_Type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Type.c; sourceTree = ""; }; + ECF4BF4311434EFE00B7C09B /* thttp_header_Dummy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Dummy.c; sourceTree = ""; }; + ECF4BF4411434EFE00B7C09B /* thttp_header_Proxy_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Proxy_Authenticate.c; sourceTree = ""; }; + ECF4BF4511434EFE00B7C09B /* thttp_header_WWW_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_WWW_Authenticate.c; sourceTree = ""; }; + ECF4BF4811434EFE00B7C09B /* thttp_parser_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_header.c; sourceTree = ""; }; + ECF4BF4911434EFE00B7C09B /* thttp_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_message.c; sourceTree = ""; }; + ECF4BF4A11434EFE00B7C09B /* thttp_parser_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_url.c; sourceTree = ""; }; + ECF4BF4B11434EFE00B7C09B /* thttp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp.c; sourceTree = ""; }; + ECF4BF4C11434EFE00B7C09B /* thttp_event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_event.c; sourceTree = ""; }; + ECF4BF4D11434EFE00B7C09B /* thttp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_message.c; sourceTree = ""; }; + ECF4BF4E11434EFE00B7C09B /* thttp_operation.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_operation.c; sourceTree = ""; }; + ECF4BF4F11434EFE00B7C09B /* thttp_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_transport.c; sourceTree = ""; }; + ECF4BF5011434EFE00B7C09B /* thttp_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_url.c; sourceTree = ""; }; + ECF4BFA111434F4A00B7C09B /* tsip_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api.h; sourceTree = ""; }; + ECF4BFA211434F4A00B7C09B /* tsip_api_invite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_invite.h; sourceTree = ""; }; + ECF4BFA311434F4A00B7C09B /* tsip_api_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_message.h; sourceTree = ""; }; + ECF4BFA411434F4A00B7C09B /* tsip_api_publish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_publish.h; sourceTree = ""; }; + ECF4BFA511434F4A00B7C09B /* tsip_api_register.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_register.h; sourceTree = ""; }; + ECF4BFA611434F4A00B7C09B /* tsip_api_subscribe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_subscribe.h; sourceTree = ""; }; + ECF4BFA811434F4A00B7C09B /* tsip_challenge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_challenge.h; sourceTree = ""; }; + ECF4BFA911434F4A00B7C09B /* tsip_milenage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_milenage.h; sourceTree = ""; }; + ECF4BFAA11434F4A00B7C09B /* tsip_rijndael.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_rijndael.h; sourceTree = ""; }; + ECF4BFAC11434F4A00B7C09B /* tsip_dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog.h; sourceTree = ""; }; + ECF4BFAD11434F4A00B7C09B /* tsip_dialog_invite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_invite.h; sourceTree = ""; }; + ECF4BFAE11434F4A00B7C09B /* tsip_dialog_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_layer.h; sourceTree = ""; }; + ECF4BFAF11434F4A00B7C09B /* tsip_dialog_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_message.h; sourceTree = ""; }; + ECF4BFB011434F4A00B7C09B /* tsip_dialog_publish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_publish.h; sourceTree = ""; }; + ECF4BFB111434F4A00B7C09B /* tsip_dialog_register.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_register.h; sourceTree = ""; }; + ECF4BFB211434F4A00B7C09B /* tsip_dialog_subscribe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_subscribe.h; sourceTree = ""; }; + ECF4BFB411434F4A00B7C09B /* tsip_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header.h; sourceTree = ""; }; + ECF4BFB511434F4A00B7C09B /* tsip_header_accept.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_accept.h; sourceTree = ""; }; + ECF4BFB611434F4A00B7C09B /* tsip_header_Accept_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Contact.h; sourceTree = ""; }; + ECF4BFB711434F4A00B7C09B /* tsip_header_Accept_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Encoding.h; sourceTree = ""; }; + ECF4BFB811434F4A00B7C09B /* tsip_header_Accept_Language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Language.h; sourceTree = ""; }; + ECF4BFB911434F4A00B7C09B /* tsip_header_Accept_Resource_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Resource_Priority.h; sourceTree = ""; }; + ECF4BFBA11434F4A00B7C09B /* tsip_header_Alert_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Alert_Info.h; sourceTree = ""; }; + ECF4BFBB11434F4A00B7C09B /* tsip_header_Allow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Allow.h; sourceTree = ""; }; + ECF4BFBC11434F4A00B7C09B /* tsip_header_Allow_Events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Allow_Events.h; sourceTree = ""; }; + ECF4BFBD11434F4A00B7C09B /* tsip_header_Authentication_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Authentication_Info.h; sourceTree = ""; }; + ECF4BFBE11434F4A00B7C09B /* tsip_header_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Authorization.h; sourceTree = ""; }; + ECF4BFBF11434F4A00B7C09B /* tsip_header_Call_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Call_ID.h; sourceTree = ""; }; + ECF4BFC011434F4A00B7C09B /* tsip_header_Call_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Call_Info.h; sourceTree = ""; }; + ECF4BFC111434F4A00B7C09B /* tsip_header_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Contact.h; sourceTree = ""; }; + ECF4BFC211434F4A00B7C09B /* tsip_header_Content_Disposition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Disposition.h; sourceTree = ""; }; + ECF4BFC311434F4A00B7C09B /* tsip_header_Content_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Encoding.h; sourceTree = ""; }; + ECF4BFC411434F4A00B7C09B /* tsip_header_Content_Language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Language.h; sourceTree = ""; }; + ECF4BFC511434F4A00B7C09B /* tsip_header_Content_Length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Length.h; sourceTree = ""; }; + ECF4BFC611434F4A00B7C09B /* tsip_header_Content_Type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Type.h; sourceTree = ""; }; + ECF4BFC711434F4A00B7C09B /* tsip_header_CSeq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_CSeq.h; sourceTree = ""; }; + ECF4BFC811434F4A00B7C09B /* tsip_header_Date.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Date.h; sourceTree = ""; }; + ECF4BFC911434F4A00B7C09B /* tsip_header_Dummy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Dummy.h; sourceTree = ""; }; + ECF4BFCA11434F4A00B7C09B /* tsip_header_Error_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Error_Info.h; sourceTree = ""; }; + ECF4BFCB11434F4A00B7C09B /* tsip_header_Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Event.h; sourceTree = ""; }; + ECF4BFCC11434F4A00B7C09B /* tsip_header_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Expires.h; sourceTree = ""; }; + ECF4BFCD11434F4A00B7C09B /* tsip_header_From.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_From.h; sourceTree = ""; }; + ECF4BFCE11434F4A00B7C09B /* tsip_header_History_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_History_Info.h; sourceTree = ""; }; + ECF4BFCF11434F4A00B7C09B /* tsip_header_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Identity.h; sourceTree = ""; }; + ECF4BFD011434F4A00B7C09B /* tsip_header_Identity_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Identity_Info.h; sourceTree = ""; }; + ECF4BFD111434F4A00B7C09B /* tsip_header_In_Reply_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_In_Reply_To.h; sourceTree = ""; }; + ECF4BFD211434F4A00B7C09B /* tsip_header_Join.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Join.h; sourceTree = ""; }; + ECF4BFD311434F4A00B7C09B /* tsip_header_Max_Forwards.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Max_Forwards.h; sourceTree = ""; }; + ECF4BFD411434F4A00B7C09B /* tsip_header_MIME_Version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_MIME_Version.h; sourceTree = ""; }; + ECF4BFD511434F4A00B7C09B /* tsip_header_Min_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Min_Expires.h; sourceTree = ""; }; + ECF4BFD611434F4A00B7C09B /* tsip_header_Min_SE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Min_SE.h; sourceTree = ""; }; + ECF4BFD711434F4A00B7C09B /* tsip_header_Organization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Organization.h; sourceTree = ""; }; + ECF4BFD811434F4A00B7C09B /* tsip_header_P_Access_Network_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Access_Network_Info.h; sourceTree = ""; }; + ECF4BFD911434F4A00B7C09B /* tsip_header_P_Answer_State.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Answer_State.h; sourceTree = ""; }; + ECF4BFDA11434F4A00B7C09B /* tsip_header_P_Asserted_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Asserted_Identity.h; sourceTree = ""; }; + ECF4BFDB11434F4A00B7C09B /* tsip_header_P_Associated_URI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Associated_URI.h; sourceTree = ""; }; + ECF4BFDC11434F4A00B7C09B /* tsip_header_P_Called_Party_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Called_Party_ID.h; sourceTree = ""; }; + ECF4BFDD11434F4A00B7C09B /* tsip_header_P_Charging_Function_Addresses.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Charging_Function_Addresses.h; sourceTree = ""; }; + ECF4BFDE11434F4A00B7C09B /* tsip_header_P_Charging_Vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Charging_Vector.h; sourceTree = ""; }; + ECF4BFDF11434F4A00B7C09B /* tsip_header_P_DCS_Billing_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_Billing_Info.h; sourceTree = ""; }; + ECF4BFE011434F4A00B7C09B /* tsip_header_P_DCS_LAES.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_LAES.h; sourceTree = ""; }; + ECF4BFE111434F4A00B7C09B /* tsip_header_P_DCS_OSPS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_OSPS.h; sourceTree = ""; }; + ECF4BFE211434F4A00B7C09B /* tsip_header_P_DCS_Redirect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_Redirect.h; sourceTree = ""; }; + ECF4BFE311434F4A00B7C09B /* 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 = ""; }; + ECF4BFE411434F4A00B7C09B /* tsip_header_P_Early_Media.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Early_Media.h; sourceTree = ""; }; + ECF4BFE511434F4A00B7C09B /* tsip_header_P_Media_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Media_Authorization.h; sourceTree = ""; }; + ECF4BFE611434F4A00B7C09B /* tsip_header_P_Preferred_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Preferred_Identity.h; sourceTree = ""; }; + ECF4BFE711434F4A00B7C09B /* tsip_header_P_Profile_Key.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Profile_Key.h; sourceTree = ""; }; + ECF4BFE811434F4A00B7C09B /* tsip_header_P_User_Database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_User_Database.h; sourceTree = ""; }; + ECF4BFE911434F4A00B7C09B /* tsip_header_P_Visited_Network_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Visited_Network_ID.h; sourceTree = ""; }; + ECF4BFEA11434F4A00B7C09B /* tsip_header_Path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Path.h; sourceTree = ""; }; + ECF4BFEB11434F4A00B7C09B /* tsip_header_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Priority.h; sourceTree = ""; }; + ECF4BFEC11434F4A00B7C09B /* tsip_header_Privacy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Privacy.h; sourceTree = ""; }; + ECF4BFED11434F4A00B7C09B /* tsip_header_Proxy_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Authenticate.h; sourceTree = ""; }; + ECF4BFEE11434F4A00B7C09B /* tsip_header_Proxy_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Authorization.h; sourceTree = ""; }; + ECF4BFEF11434F4A00B7C09B /* tsip_header_Proxy_Require.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Require.h; sourceTree = ""; }; + ECF4BFF011434F4A00B7C09B /* tsip_header_RAck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_RAck.h; sourceTree = ""; }; + ECF4BFF111434F4A00B7C09B /* tsip_header_Reason.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reason.h; sourceTree = ""; }; + ECF4BFF211434F4A00B7C09B /* tsip_header_Record_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Record_Route.h; sourceTree = ""; }; + ECF4BFF311434F4A00B7C09B /* tsip_header_Refer_Sub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Refer_Sub.h; sourceTree = ""; }; + ECF4BFF411434F4A00B7C09B /* tsip_header_Refer_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Refer_To.h; sourceTree = ""; }; + ECF4BFF511434F4A00B7C09B /* tsip_header_Referred_By.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Referred_By.h; sourceTree = ""; }; + ECF4BFF611434F4A00B7C09B /* tsip_header_Reject_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reject_Contact.h; sourceTree = ""; }; + ECF4BFF711434F4A00B7C09B /* tsip_header_Replaces.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Replaces.h; sourceTree = ""; }; + ECF4BFF811434F4A00B7C09B /* tsip_header_Reply_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reply_To.h; sourceTree = ""; }; + ECF4BFF911434F4A00B7C09B /* tsip_header_Request_Disposition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Request_Disposition.h; sourceTree = ""; }; + ECF4BFFA11434F4A00B7C09B /* tsip_header_Require.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Require.h; sourceTree = ""; }; + ECF4BFFB11434F4A00B7C09B /* tsip_header_Resource_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Resource_Priority.h; sourceTree = ""; }; + ECF4BFFC11434F4A00B7C09B /* tsip_header_Retry_After.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Retry_After.h; sourceTree = ""; }; + ECF4BFFD11434F4A00B7C09B /* tsip_header_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Route.h; sourceTree = ""; }; + ECF4BFFE11434F4A00B7C09B /* tsip_header_RSeq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_RSeq.h; sourceTree = ""; }; + ECF4BFFF11434F4A00B7C09B /* tsip_header_Security_Client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Client.h; sourceTree = ""; }; + ECF4C00011434F4A00B7C09B /* tsip_header_Security_Server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Server.h; sourceTree = ""; }; + ECF4C00111434F4A00B7C09B /* tsip_header_Security_Verify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Verify.h; sourceTree = ""; }; + ECF4C00211434F4A00B7C09B /* tsip_header_Server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Server.h; sourceTree = ""; }; + ECF4C00311434F4A00B7C09B /* tsip_header_Service_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Service_Route.h; sourceTree = ""; }; + ECF4C00411434F4A00B7C09B /* tsip_header_Session_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Session_Expires.h; sourceTree = ""; }; + ECF4C00511434F4A00B7C09B /* tsip_header_SIP_ETag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_SIP_ETag.h; sourceTree = ""; }; + ECF4C00611434F4A00B7C09B /* tsip_header_SIP_If_Match.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_SIP_If_Match.h; sourceTree = ""; }; + ECF4C00711434F4A00B7C09B /* tsip_header_Subject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Subject.h; sourceTree = ""; }; + ECF4C00811434F4A00B7C09B /* tsip_header_Subscription_State.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Subscription_State.h; sourceTree = ""; }; + ECF4C00911434F4A00B7C09B /* tsip_header_Supported.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Supported.h; sourceTree = ""; }; + ECF4C00A11434F4A00B7C09B /* tsip_header_Target_Dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Target_Dialog.h; sourceTree = ""; }; + ECF4C00B11434F4A00B7C09B /* tsip_header_Timestamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Timestamp.h; sourceTree = ""; }; + ECF4C00C11434F4A00B7C09B /* tsip_header_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_To.h; sourceTree = ""; }; + ECF4C00D11434F4A00B7C09B /* tsip_header_Unsupported.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Unsupported.h; sourceTree = ""; }; + ECF4C00E11434F4A00B7C09B /* tsip_header_User_Agent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_User_Agent.h; sourceTree = ""; }; + ECF4C00F11434F4A00B7C09B /* tsip_header_Via.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Via.h; sourceTree = ""; }; + ECF4C01011434F4A00B7C09B /* tsip_header_Warning.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Warning.h; sourceTree = ""; }; + ECF4C01111434F4A00B7C09B /* tsip_header_WWW_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_WWW_Authenticate.h; sourceTree = ""; }; + ECF4C01211434F4A00B7C09B /* tsip_headers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_headers.h; sourceTree = ""; }; + ECF4C01411434F4A00B7C09B /* tsip_parser_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_header.h; sourceTree = ""; }; + ECF4C01511434F4A00B7C09B /* tsip_parser_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_message.h; sourceTree = ""; }; + ECF4C01611434F4A00B7C09B /* tsip_parser_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_uri.h; sourceTree = ""; }; + ECF4C01811434F4A00B7C09B /* tsip_transac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac.h; sourceTree = ""; }; + ECF4C01911434F4A00B7C09B /* tsip_transac_ict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ict.h; sourceTree = ""; }; + ECF4C01A11434F4A00B7C09B /* tsip_transac_ist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ist.h; sourceTree = ""; }; + ECF4C01B11434F4A00B7C09B /* tsip_transac_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_layer.h; sourceTree = ""; }; + ECF4C01C11434F4A00B7C09B /* tsip_transac_nict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nict.h; sourceTree = ""; }; + ECF4C01D11434F4A00B7C09B /* tsip_transac_nist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nist.h; sourceTree = ""; }; + ECF4C01F11434F4A00B7C09B /* tsip_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport.h; sourceTree = ""; }; + ECF4C02011434F4A00B7C09B /* tsip_transport_ipsec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_ipsec.h; sourceTree = ""; }; + ECF4C02111434F4A00B7C09B /* tsip_transport_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_layer.h; sourceTree = ""; }; + ECF4C02211434F4A00B7C09B /* tsip_transport_tls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_tls.h; sourceTree = ""; }; + ECF4C02311434F4A00B7C09B /* tsip_event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_event.h; sourceTree = ""; }; + ECF4C02411434F4A00B7C09B /* tsip_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_message.h; sourceTree = ""; }; + ECF4C02511434F4A00B7C09B /* tsip_operation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_operation.h; sourceTree = ""; }; + ECF4C02611434F4A00B7C09B /* tsip_timers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_timers.h; sourceTree = ""; }; + ECF4C02711434F4A00B7C09B /* tsip_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_uri.h; sourceTree = ""; }; + ECF4C02811434F4A00B7C09B /* tinysip_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinysip_config.h; sourceTree = ""; }; + ECF4C02911434F4A00B7C09B /* tsip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip.h; sourceTree = ""; }; + ECF4C09311434F4B00B7C09B /* tsip_api_invite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_invite.c; sourceTree = ""; }; + ECF4C09411434F4B00B7C09B /* tsip_api_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_message.c; sourceTree = ""; }; + ECF4C09511434F4B00B7C09B /* tsip_api_publish.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_publish.c; sourceTree = ""; }; + ECF4C09611434F4B00B7C09B /* tsip_api_register.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_register.c; sourceTree = ""; }; + ECF4C09711434F4B00B7C09B /* tsip_api_subscribe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_subscribe.c; sourceTree = ""; }; + ECF4C09911434F4B00B7C09B /* tsip_challenge.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_challenge.c; sourceTree = ""; }; + ECF4C09A11434F4B00B7C09B /* tsip_milenage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_milenage.c; sourceTree = ""; }; + ECF4C09B11434F4B00B7C09B /* tsip_rijndael.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_rijndael.c; sourceTree = ""; }; + ECF4C09D11434F4B00B7C09B /* tsip_dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog.c; sourceTree = ""; }; + ECF4C09E11434F4B00B7C09B /* tsip_dialog_invite.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_invite.client.c; sourceTree = ""; }; + ECF4C09F11434F4B00B7C09B /* tsip_dialog_invite.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_invite.server.c; sourceTree = ""; }; + ECF4C0A011434F4B00B7C09B /* tsip_dialog_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_layer.c; sourceTree = ""; }; + ECF4C0A111434F4B00B7C09B /* tsip_dialog_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_message.c; sourceTree = ""; }; + ECF4C0A211434F4B00B7C09B /* tsip_dialog_publish.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_publish.client.c; sourceTree = ""; }; + ECF4C0A311434F4B00B7C09B /* tsip_dialog_register.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_register.client.c; sourceTree = ""; }; + ECF4C0A411434F4B00B7C09B /* tsip_dialog_register.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_register.server.c; sourceTree = ""; }; + ECF4C0A511434F4B00B7C09B /* tsip_dialog_subscribe.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_subscribe.client.c; sourceTree = ""; }; + ECF4C0A611434F4B00B7C09B /* tsip_dialog_subscribe.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_subscribe.server.c; sourceTree = ""; }; + ECF4C0A811434F4B00B7C09B /* tsip_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header.c; sourceTree = ""; }; + ECF4C0A911434F4B00B7C09B /* tsip_header_accept.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_accept.c; sourceTree = ""; }; + ECF4C0AA11434F4B00B7C09B /* tsip_header_Accept_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Contact.c; sourceTree = ""; }; + ECF4C0AB11434F4B00B7C09B /* tsip_header_Accept_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Encoding.c; sourceTree = ""; }; + ECF4C0AC11434F4B00B7C09B /* tsip_header_Accept_Language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Language.c; sourceTree = ""; }; + ECF4C0AD11434F4B00B7C09B /* tsip_header_Accept_Resource_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Resource_Priority.c; sourceTree = ""; }; + ECF4C0AE11434F4B00B7C09B /* tsip_header_Alert_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Alert_Info.c; sourceTree = ""; }; + ECF4C0AF11434F4B00B7C09B /* tsip_header_Allow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Allow.c; sourceTree = ""; }; + ECF4C0B011434F4B00B7C09B /* tsip_header_Allow_Events.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Allow_Events.c; sourceTree = ""; }; + ECF4C0B111434F4B00B7C09B /* tsip_header_Authentication_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Authentication_Info.c; sourceTree = ""; }; + ECF4C0B211434F4B00B7C09B /* tsip_header_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Authorization.c; sourceTree = ""; }; + ECF4C0B311434F4B00B7C09B /* tsip_header_Call_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Call_ID.c; sourceTree = ""; }; + ECF4C0B411434F4B00B7C09B /* tsip_header_Call_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Call_Info.c; sourceTree = ""; }; + ECF4C0B511434F4B00B7C09B /* tsip_header_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Contact.c; sourceTree = ""; }; + ECF4C0B611434F4B00B7C09B /* tsip_header_Content_Disposition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Disposition.c; sourceTree = ""; }; + ECF4C0B711434F4B00B7C09B /* tsip_header_Content_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Encoding.c; sourceTree = ""; }; + ECF4C0B811434F4B00B7C09B /* tsip_header_Content_Language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Language.c; sourceTree = ""; }; + ECF4C0B911434F4B00B7C09B /* tsip_header_Content_Length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Length.c; sourceTree = ""; }; + ECF4C0BA11434F4B00B7C09B /* tsip_header_Content_Type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Type.c; sourceTree = ""; }; + ECF4C0BB11434F4B00B7C09B /* tsip_header_CSeq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_CSeq.c; sourceTree = ""; }; + ECF4C0BC11434F4B00B7C09B /* tsip_header_Date.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Date.c; sourceTree = ""; }; + ECF4C0BD11434F4B00B7C09B /* tsip_header_Dummy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Dummy.c; sourceTree = ""; }; + ECF4C0BE11434F4B00B7C09B /* tsip_header_Error_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Error_Info.c; sourceTree = ""; }; + ECF4C0BF11434F4B00B7C09B /* tsip_header_Event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Event.c; sourceTree = ""; }; + ECF4C0C011434F4B00B7C09B /* tsip_header_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Expires.c; sourceTree = ""; }; + ECF4C0C111434F4B00B7C09B /* tsip_header_From.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_From.c; sourceTree = ""; }; + ECF4C0C211434F4B00B7C09B /* tsip_header_History_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_History_Info.c; sourceTree = ""; }; + ECF4C0C311434F4B00B7C09B /* tsip_header_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Identity.c; sourceTree = ""; }; + ECF4C0C411434F4B00B7C09B /* tsip_header_Identity_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Identity_Info.c; sourceTree = ""; }; + ECF4C0C511434F4B00B7C09B /* tsip_header_In_Reply_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_In_Reply_To.c; sourceTree = ""; }; + ECF4C0C611434F4B00B7C09B /* tsip_header_Join.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Join.c; sourceTree = ""; }; + ECF4C0C711434F4B00B7C09B /* tsip_header_Max_Forwards.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Max_Forwards.c; sourceTree = ""; }; + ECF4C0C811434F4B00B7C09B /* tsip_header_MIME_Version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_MIME_Version.c; sourceTree = ""; }; + ECF4C0C911434F4B00B7C09B /* tsip_header_Min_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Min_Expires.c; sourceTree = ""; }; + ECF4C0CA11434F4B00B7C09B /* tsip_header_Min_SE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Min_SE.c; sourceTree = ""; }; + ECF4C0CB11434F4B00B7C09B /* tsip_header_Organization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Organization.c; sourceTree = ""; }; + ECF4C0CC11434F4B00B7C09B /* tsip_header_P_Access_Network_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Access_Network_Info.c; sourceTree = ""; }; + ECF4C0CD11434F4B00B7C09B /* tsip_header_P_Answer_State.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Answer_State.c; sourceTree = ""; }; + ECF4C0CE11434F4B00B7C09B /* tsip_header_P_Asserted_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Asserted_Identity.c; sourceTree = ""; }; + ECF4C0CF11434F4B00B7C09B /* tsip_header_P_Associated_URI.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Associated_URI.c; sourceTree = ""; }; + ECF4C0D011434F4B00B7C09B /* tsip_header_P_Called_Party_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Called_Party_ID.c; sourceTree = ""; }; + ECF4C0D111434F4B00B7C09B /* tsip_header_P_Charging_Function_Addresses.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Charging_Function_Addresses.c; sourceTree = ""; }; + ECF4C0D211434F4B00B7C09B /* tsip_header_P_Charging_Vector.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Charging_Vector.c; sourceTree = ""; }; + ECF4C0D311434F4B00B7C09B /* tsip_header_P_DCS_Billing_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_Billing_Info.c; sourceTree = ""; }; + ECF4C0D411434F4B00B7C09B /* tsip_header_P_DCS_LAES.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_LAES.c; sourceTree = ""; }; + ECF4C0D511434F4B00B7C09B /* tsip_header_P_DCS_OSPS.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_OSPS.c; sourceTree = ""; }; + ECF4C0D611434F4B00B7C09B /* tsip_header_P_DCS_Redirect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_Redirect.c; sourceTree = ""; }; + ECF4C0D711434F4B00B7C09B /* 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 = ""; }; + ECF4C0D811434F4B00B7C09B /* tsip_header_P_Early_Media.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Early_Media.c; sourceTree = ""; }; + ECF4C0D911434F4B00B7C09B /* tsip_header_P_Media_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Media_Authorization.c; sourceTree = ""; }; + ECF4C0DA11434F4B00B7C09B /* tsip_header_P_Preferred_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Preferred_Identity.c; sourceTree = ""; }; + ECF4C0DB11434F4B00B7C09B /* tsip_header_P_Profile_Key.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Profile_Key.c; sourceTree = ""; }; + ECF4C0DC11434F4B00B7C09B /* tsip_header_P_User_Database.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_User_Database.c; sourceTree = ""; }; + ECF4C0DD11434F4B00B7C09B /* tsip_header_P_Visited_Network_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Visited_Network_ID.c; sourceTree = ""; }; + ECF4C0DE11434F4B00B7C09B /* tsip_header_Path.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Path.c; sourceTree = ""; }; + ECF4C0DF11434F4B00B7C09B /* tsip_header_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Priority.c; sourceTree = ""; }; + ECF4C0E011434F4B00B7C09B /* tsip_header_Privacy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Privacy.c; sourceTree = ""; }; + ECF4C0E111434F4B00B7C09B /* tsip_header_Proxy_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Authenticate.c; sourceTree = ""; }; + ECF4C0E211434F4B00B7C09B /* tsip_header_Proxy_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Authorization.c; sourceTree = ""; }; + ECF4C0E311434F4B00B7C09B /* tsip_header_Proxy_Require.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Require.c; sourceTree = ""; }; + ECF4C0E411434F4B00B7C09B /* tsip_header_RAck.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_RAck.c; sourceTree = ""; }; + ECF4C0E511434F4B00B7C09B /* tsip_header_Reason.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reason.c; sourceTree = ""; }; + ECF4C0E611434F4B00B7C09B /* tsip_header_Record_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Record_Route.c; sourceTree = ""; }; + ECF4C0E711434F4B00B7C09B /* tsip_header_Refer_Sub.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Refer_Sub.c; sourceTree = ""; }; + ECF4C0E811434F4B00B7C09B /* tsip_header_Refer_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Refer_To.c; sourceTree = ""; }; + ECF4C0E911434F4B00B7C09B /* tsip_header_Referred_By.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Referred_By.c; sourceTree = ""; }; + ECF4C0EA11434F4B00B7C09B /* tsip_header_Reject_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reject_Contact.c; sourceTree = ""; }; + ECF4C0EB11434F4B00B7C09B /* tsip_header_Replaces.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Replaces.c; sourceTree = ""; }; + ECF4C0EC11434F4B00B7C09B /* tsip_header_Reply_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reply_To.c; sourceTree = ""; }; + ECF4C0ED11434F4B00B7C09B /* tsip_header_Request_Disposition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Request_Disposition.c; sourceTree = ""; }; + ECF4C0EE11434F4B00B7C09B /* tsip_header_Require.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Require.c; sourceTree = ""; }; + ECF4C0EF11434F4B00B7C09B /* tsip_header_Resource_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Resource_Priority.c; sourceTree = ""; }; + ECF4C0F011434F4B00B7C09B /* tsip_header_Retry_After.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Retry_After.c; sourceTree = ""; }; + ECF4C0F111434F4B00B7C09B /* tsip_header_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Route.c; sourceTree = ""; }; + ECF4C0F211434F4B00B7C09B /* tsip_header_RSeq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_RSeq.c; sourceTree = ""; }; + ECF4C0F311434F4B00B7C09B /* tsip_header_Security_Client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Client.c; sourceTree = ""; }; + ECF4C0F411434F4B00B7C09B /* tsip_header_Security_Server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Server.c; sourceTree = ""; }; + ECF4C0F511434F4B00B7C09B /* tsip_header_Security_Verify.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Verify.c; sourceTree = ""; }; + ECF4C0F611434F4B00B7C09B /* tsip_header_Server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Server.c; sourceTree = ""; }; + ECF4C0F711434F4B00B7C09B /* tsip_header_Service_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Service_Route.c; sourceTree = ""; }; + ECF4C0F811434F4B00B7C09B /* tsip_header_Session_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Session_Expires.c; sourceTree = ""; }; + ECF4C0F911434F4B00B7C09B /* tsip_header_SIP_ETag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_SIP_ETag.c; sourceTree = ""; }; + ECF4C0FA11434F4B00B7C09B /* tsip_header_SIP_If_Match.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_SIP_If_Match.c; sourceTree = ""; }; + ECF4C0FB11434F4B00B7C09B /* tsip_header_Subject.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Subject.c; sourceTree = ""; }; + ECF4C0FC11434F4B00B7C09B /* tsip_header_Subscription_State.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Subscription_State.c; sourceTree = ""; }; + ECF4C0FD11434F4B00B7C09B /* tsip_header_Supported.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Supported.c; sourceTree = ""; }; + ECF4C0FE11434F4B00B7C09B /* tsip_header_Target_Dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Target_Dialog.c; sourceTree = ""; }; + ECF4C0FF11434F4B00B7C09B /* tsip_header_Timestamp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Timestamp.c; sourceTree = ""; }; + ECF4C10011434F4B00B7C09B /* tsip_header_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_To.c; sourceTree = ""; }; + ECF4C10111434F4B00B7C09B /* tsip_header_Unsupported.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Unsupported.c; sourceTree = ""; }; + ECF4C10211434F4B00B7C09B /* tsip_header_User_Agent.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_User_Agent.c; sourceTree = ""; }; + ECF4C10311434F4B00B7C09B /* tsip_header_Via.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Via.c; sourceTree = ""; }; + ECF4C10411434F4B00B7C09B /* tsip_header_Warning.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Warning.c; sourceTree = ""; }; + ECF4C10511434F4B00B7C09B /* tsip_header_WWW_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_WWW_Authenticate.c; sourceTree = ""; }; + ECF4C10811434F4B00B7C09B /* tsip_parser_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_header.c; sourceTree = ""; }; + ECF4C10911434F4B00B7C09B /* tsip_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_message.c; sourceTree = ""; }; + ECF4C10A11434F4B00B7C09B /* tsip_parser_uri.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_uri.c; sourceTree = ""; }; + ECF4C10C11434F4B00B7C09B /* tsip_transac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac.c; sourceTree = ""; }; + ECF4C10D11434F4B00B7C09B /* tsip_transac_ict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ict.c; sourceTree = ""; }; + ECF4C10E11434F4B00B7C09B /* tsip_transac_ist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ist.c; sourceTree = ""; }; + ECF4C10F11434F4B00B7C09B /* tsip_transac_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_layer.c; sourceTree = ""; }; + ECF4C11011434F4B00B7C09B /* tsip_transac_nict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nict.c; sourceTree = ""; }; + ECF4C11111434F4B00B7C09B /* tsip_transac_nist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nist.c; sourceTree = ""; }; + ECF4C11311434F4B00B7C09B /* tsip_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport.c; sourceTree = ""; }; + ECF4C11411434F4B00B7C09B /* tsip_transport_ipsec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_ipsec.c; sourceTree = ""; }; + ECF4C11511434F4B00B7C09B /* tsip_transport_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_layer.c; sourceTree = ""; }; + ECF4C11611434F4B00B7C09B /* tsip_transport_tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_tls.c; sourceTree = ""; }; + ECF4C11711434F4B00B7C09B /* tsip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip.c; sourceTree = ""; }; + ECF4C11811434F4B00B7C09B /* tsip_event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_event.c; sourceTree = ""; }; + ECF4C11911434F4B00B7C09B /* tsip_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_message.c; sourceTree = ""; }; + ECF4C11A11434F4B00B7C09B /* tsip_operation.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_operation.c; sourceTree = ""; }; + ECF4C11B11434F4B00B7C09B /* tsip_timers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_timers.c; sourceTree = ""; }; + ECF4C11C11434F4B00B7C09B /* tsip_uri.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_uri.c; sourceTree = ""; }; + ECF4C28911434F9300B7C09B /* tinySAK_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinySAK_config.h; sourceTree = ""; }; + ECF4C28A11434F9300B7C09B /* tsk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk.c; sourceTree = ""; }; + ECF4C28B11434F9300B7C09B /* tsk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk.h; sourceTree = ""; }; + ECF4C28C11434F9300B7C09B /* tsk_base64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_base64.c; sourceTree = ""; }; + ECF4C28D11434F9300B7C09B /* tsk_base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_base64.h; sourceTree = ""; }; + ECF4C28E11434F9300B7C09B /* tsk_binaryutils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_binaryutils.c; sourceTree = ""; }; + ECF4C28F11434F9300B7C09B /* tsk_binaryutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_binaryutils.h; sourceTree = ""; }; + ECF4C29011434F9300B7C09B /* tsk_buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_buffer.c; sourceTree = ""; }; + ECF4C29111434F9300B7C09B /* tsk_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_buffer.h; sourceTree = ""; }; + ECF4C29211434F9300B7C09B /* tsk_condwait.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_condwait.c; sourceTree = ""; }; + ECF4C29311434F9300B7C09B /* tsk_condwait.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_condwait.h; sourceTree = ""; }; + ECF4C29411434F9300B7C09B /* tsk_debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_debug.c; sourceTree = ""; }; + ECF4C29511434F9300B7C09B /* tsk_debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_debug.h; sourceTree = ""; }; + ECF4C29611434F9300B7C09B /* tsk_errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_errno.h; sourceTree = ""; }; + ECF4C29711434F9300B7C09B /* tsk_fsm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_fsm.c; sourceTree = ""; }; + ECF4C29811434F9300B7C09B /* tsk_fsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_fsm.h; sourceTree = ""; }; + ECF4C29911434F9300B7C09B /* tsk_hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_hmac.c; sourceTree = ""; }; + ECF4C29A11434F9300B7C09B /* tsk_hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_hmac.h; sourceTree = ""; }; + ECF4C29B11434F9300B7C09B /* tsk_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_list.c; sourceTree = ""; }; + ECF4C29C11434F9300B7C09B /* tsk_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_list.h; sourceTree = ""; }; + ECF4C29D11434F9300B7C09B /* tsk_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_md5.c; sourceTree = ""; }; + ECF4C29E11434F9300B7C09B /* tsk_md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_md5.h; sourceTree = ""; }; + ECF4C29F11434F9300B7C09B /* tsk_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_memory.c; sourceTree = ""; }; + ECF4C2A011434F9300B7C09B /* tsk_memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_memory.h; sourceTree = ""; }; + ECF4C2A111434F9300B7C09B /* tsk_mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_mutex.c; sourceTree = ""; }; + ECF4C2A211434F9300B7C09B /* tsk_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_mutex.h; sourceTree = ""; }; + ECF4C2A311434F9300B7C09B /* tsk_object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_object.c; sourceTree = ""; }; + ECF4C2A411434F9300B7C09B /* tsk_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_object.h; sourceTree = ""; }; + ECF4C2A511434F9300B7C09B /* tsk_params.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_params.c; sourceTree = ""; }; + ECF4C2A611434F9300B7C09B /* tsk_params.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_params.h; sourceTree = ""; }; + ECF4C2A711434F9300B7C09B /* tsk_ppfcs16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ppfcs16.c; sourceTree = ""; }; + ECF4C2A811434F9300B7C09B /* tsk_ppfcs16.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ppfcs16.h; sourceTree = ""; }; + ECF4C2A911434F9300B7C09B /* tsk_ppfcs32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ppfcs32.c; sourceTree = ""; }; + ECF4C2AA11434F9300B7C09B /* tsk_ppfcs32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ppfcs32.h; sourceTree = ""; }; + ECF4C2AB11434F9300B7C09B /* tsk_ragel_state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ragel_state.c; sourceTree = ""; }; + ECF4C2AC11434F9300B7C09B /* tsk_ragel_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ragel_state.h; sourceTree = ""; }; + ECF4C2AD11434F9300B7C09B /* tsk_runnable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_runnable.c; sourceTree = ""; }; + ECF4C2AE11434F9300B7C09B /* tsk_runnable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_runnable.h; sourceTree = ""; }; + ECF4C2AF11434F9300B7C09B /* tsk_safeobj.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_safeobj.c; sourceTree = ""; }; + ECF4C2B011434F9300B7C09B /* tsk_safeobj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_safeobj.h; sourceTree = ""; }; + ECF4C2B111434F9300B7C09B /* tsk_semaphore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_semaphore.c; sourceTree = ""; }; + ECF4C2B211434F9300B7C09B /* tsk_semaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_semaphore.h; sourceTree = ""; }; + ECF4C2B311434F9300B7C09B /* tsk_sha1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_sha1.c; sourceTree = ""; }; + ECF4C2B411434F9300B7C09B /* tsk_sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_sha1.h; sourceTree = ""; }; + ECF4C2B511434F9300B7C09B /* tsk_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_string.c; sourceTree = ""; }; + ECF4C2B611434F9300B7C09B /* tsk_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_string.h; sourceTree = ""; }; + ECF4C2B711434F9300B7C09B /* tsk_thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_thread.c; sourceTree = ""; }; + ECF4C2B811434F9300B7C09B /* tsk_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_thread.h; sourceTree = ""; }; + ECF4C2B911434F9300B7C09B /* tsk_time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_time.c; sourceTree = ""; }; + ECF4C2BA11434F9300B7C09B /* tsk_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_time.h; sourceTree = ""; }; + ECF4C2BB11434F9300B7C09B /* tsk_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_timer.c; sourceTree = ""; }; + ECF4C2BC11434F9300B7C09B /* tsk_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_timer.h; sourceTree = ""; }; + ECF4C2BD11434F9300B7C09B /* tsk_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_url.c; sourceTree = ""; }; + ECF4C2BE11434F9300B7C09B /* tsk_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_url.h; sourceTree = ""; }; + ECF4C2BF11434F9300B7C09B /* tsk_uuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_uuid.c; sourceTree = ""; }; + ECF4C2C011434F9300B7C09B /* tsk_uuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_uuid.h; sourceTree = ""; }; + ECF4C2C111434F9300B7C09B /* tsk_xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_xml.c; sourceTree = ""; }; + ECF4C2C211434F9300B7C09B /* tsk_xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_xml.h; sourceTree = ""; }; + ECF4C82E11434FEA00B7C09B /* tnet_dhcp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp.c; sourceTree = ""; }; + ECF4C82F11434FEA00B7C09B /* tnet_dhcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp.h; sourceTree = ""; }; + ECF4C83011434FEA00B7C09B /* tnet_dhcp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_message.c; sourceTree = ""; }; + ECF4C83111434FEA00B7C09B /* tnet_dhcp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_message.h; sourceTree = ""; }; + ECF4C83211434FEA00B7C09B /* tnet_dhcp_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option.c; sourceTree = ""; }; + ECF4C83311434FEA00B7C09B /* tnet_dhcp_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option.h; sourceTree = ""; }; + ECF4C83411434FEA00B7C09B /* tnet_dhcp_option_sip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option_sip.c; sourceTree = ""; }; + ECF4C83511434FEA00B7C09B /* tnet_dhcp_option_sip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option_sip.h; sourceTree = ""; }; + ECF4C83711434FEA00B7C09B /* tnet_dhcp6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6.c; sourceTree = ""; }; + ECF4C83811434FEA00B7C09B /* tnet_dhcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6.h; sourceTree = ""; }; + ECF4C83911434FEA00B7C09B /* tnet_dhcp6_duid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_duid.c; sourceTree = ""; }; + ECF4C83A11434FEA00B7C09B /* tnet_dhcp6_duid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_duid.h; sourceTree = ""; }; + ECF4C83B11434FEA00B7C09B /* tnet_dhcp6_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_message.c; sourceTree = ""; }; + ECF4C83C11434FEA00B7C09B /* tnet_dhcp6_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_message.h; sourceTree = ""; }; + ECF4C83D11434FEA00B7C09B /* tnet_dhcp6_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_option.c; sourceTree = ""; }; + ECF4C83E11434FEA00B7C09B /* tnet_dhcp6_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_option.h; sourceTree = ""; }; + ECF4C84011434FEA00B7C09B /* tnet_dns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns.c; sourceTree = ""; }; + ECF4C84111434FEA00B7C09B /* tnet_dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns.h; sourceTree = ""; }; + ECF4C84211434FEA00B7C09B /* tnet_dns_a.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_a.c; sourceTree = ""; }; + ECF4C84311434FEA00B7C09B /* tnet_dns_a.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_a.h; sourceTree = ""; }; + ECF4C84411434FEA00B7C09B /* tnet_dns_aaaa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_aaaa.c; sourceTree = ""; }; + ECF4C84511434FEA00B7C09B /* tnet_dns_aaaa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_aaaa.h; sourceTree = ""; }; + ECF4C84611434FEA00B7C09B /* tnet_dns_cname.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_cname.c; sourceTree = ""; }; + ECF4C84711434FEA00B7C09B /* tnet_dns_cname.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_cname.h; sourceTree = ""; }; + ECF4C84811434FEA00B7C09B /* tnet_dns_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_message.c; sourceTree = ""; }; + ECF4C84911434FEA00B7C09B /* tnet_dns_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_message.h; sourceTree = ""; }; + ECF4C84A11434FEA00B7C09B /* tnet_dns_mx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_mx.c; sourceTree = ""; }; + ECF4C84B11434FEA00B7C09B /* tnet_dns_mx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_mx.h; sourceTree = ""; }; + ECF4C84C11434FEA00B7C09B /* tnet_dns_naptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_naptr.c; sourceTree = ""; }; + ECF4C84D11434FEA00B7C09B /* tnet_dns_naptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_naptr.h; sourceTree = ""; }; + ECF4C84E11434FEA00B7C09B /* tnet_dns_ns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ns.c; sourceTree = ""; }; + ECF4C84F11434FEA00B7C09B /* tnet_dns_ns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ns.h; sourceTree = ""; }; + ECF4C85011434FEA00B7C09B /* tnet_dns_opt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_opt.c; sourceTree = ""; }; + ECF4C85111434FEA00B7C09B /* tnet_dns_opt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_opt.h; sourceTree = ""; }; + ECF4C85211434FEA00B7C09B /* tnet_dns_ptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ptr.c; sourceTree = ""; }; + ECF4C85311434FEA00B7C09B /* tnet_dns_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ptr.h; sourceTree = ""; }; + ECF4C85411434FEA00B7C09B /* tnet_dns_rr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_rr.c; sourceTree = ""; }; + ECF4C85511434FEA00B7C09B /* tnet_dns_rr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_rr.h; sourceTree = ""; }; + ECF4C85611434FEA00B7C09B /* tnet_dns_soa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_soa.c; sourceTree = ""; }; + ECF4C85711434FEA00B7C09B /* tnet_dns_soa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_soa.h; sourceTree = ""; }; + ECF4C85811434FEA00B7C09B /* tnet_dns_srv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_srv.c; sourceTree = ""; }; + ECF4C85911434FEA00B7C09B /* tnet_dns_srv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_srv.h; sourceTree = ""; }; + ECF4C85A11434FEA00B7C09B /* tnet_dns_txt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_txt.c; sourceTree = ""; }; + ECF4C85B11434FEA00B7C09B /* tnet_dns_txt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_txt.h; sourceTree = ""; }; + ECF4C85D11434FEA00B7C09B /* tnet_ice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_ice.c; sourceTree = ""; }; + ECF4C85E11434FEA00B7C09B /* tnet_ice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_ice.h; sourceTree = ""; }; + ECF4C86211434FEA00B7C09B /* tnet_stun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun.c; sourceTree = ""; }; + ECF4C86311434FEA00B7C09B /* tnet_stun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun.h; sourceTree = ""; }; + ECF4C86411434FEA00B7C09B /* tnet_stun_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_attribute.c; sourceTree = ""; }; + ECF4C86511434FEA00B7C09B /* tnet_stun_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_attribute.h; sourceTree = ""; }; + ECF4C86611434FEA00B7C09B /* tnet_stun_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_message.c; sourceTree = ""; }; + ECF4C86711434FEA00B7C09B /* tnet_stun_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_message.h; sourceTree = ""; }; + ECF4C86811434FEA00B7C09B /* tinyNET_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyNET_config.h; sourceTree = ""; }; + ECF4C86A11434FEA00B7C09B /* tnet_tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_tls.c; sourceTree = ""; }; + ECF4C86B11434FEA00B7C09B /* tnet_tls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_tls.h; sourceTree = ""; }; + ECF4C86C11434FEA00B7C09B /* tnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet.c; sourceTree = ""; }; + ECF4C86D11434FEA00B7C09B /* tnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet.h; sourceTree = ""; }; + ECF4C86E11434FEA00B7C09B /* tnet_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_auth.c; sourceTree = ""; }; + ECF4C86F11434FEA00B7C09B /* tnet_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_auth.h; sourceTree = ""; }; + ECF4C87011434FEA00B7C09B /* tnet_hardwares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_hardwares.h; sourceTree = ""; }; + ECF4C87111434FEA00B7C09B /* tnet_nat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_nat.c; sourceTree = ""; }; + ECF4C87211434FEA00B7C09B /* tnet_nat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_nat.h; sourceTree = ""; }; + ECF4C87311434FEA00B7C09B /* tnet_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_poll.c; sourceTree = ""; }; + ECF4C87411434FEA00B7C09B /* tnet_poll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_poll.h; sourceTree = ""; }; + ECF4C87511434FEA00B7C09B /* tnet_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_proto.h; sourceTree = ""; }; + ECF4C87611434FEA00B7C09B /* tnet_socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_socket.c; sourceTree = ""; }; + ECF4C87711434FEA00B7C09B /* tnet_socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_socket.h; sourceTree = ""; }; + ECF4C87811434FEA00B7C09B /* tnet_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport.c; sourceTree = ""; }; + ECF4C87911434FEA00B7C09B /* tnet_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_transport.h; sourceTree = ""; }; + ECF4C87A11434FEA00B7C09B /* tnet_transport_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_poll.c; sourceTree = ""; }; + ECF4C87B11434FEA00B7C09B /* tnet_transport_win32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_win32.c; sourceTree = ""; }; + ECF4C87C11434FEA00B7C09B /* tnet_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_types.h; sourceTree = ""; }; + ECF4C87D11434FEA00B7C09B /* tnet_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_utils.c; sourceTree = ""; }; + ECF4C87E11434FEA00B7C09B /* tnet_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_utils.h; sourceTree = ""; }; + ECF4C88011434FEA00B7C09B /* tnet_turn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn.c; sourceTree = ""; }; + ECF4C88111434FEA00B7C09B /* tnet_turn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn.h; sourceTree = ""; }; + ECF4C88211434FEA00B7C09B /* tnet_turn_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_attribute.c; sourceTree = ""; }; + ECF4C88311434FEA00B7C09B /* tnet_turn_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_attribute.h; sourceTree = ""; }; + ECF4C88411434FEA00B7C09B /* tnet_turn_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_message.c; sourceTree = ""; }; + ECF4C88511434FEA00B7C09B /* tnet_turn_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_message.h; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -1101,6 +1019,7 @@ ECED689510F99886006B4DC9 /* libtinyNET.dylib in Frameworks */, ECED689610F99886006B4DC9 /* libtinySAK.dylib in Frameworks */, ECED68C410F99979006B4DC9 /* libtinyHTTP.dylib in Frameworks */, + ECF4C9031143506000B7C09B /* libtinyIPSec.dylib in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1124,6 +1043,7 @@ buildActionMask = 2147483647; files = ( ECED6AF210F9A68F006B4DC9 /* libtinySAK.dylib in Frameworks */, + ECF4C8FE1143503700B7C09B /* libtinyNET.dylib in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1151,15 +1071,12 @@ 08FB7794FE84155DC02AAC07 /* tinySIP */ = { isa = PBXGroup; children = ( + ECF4C82111434FEA00B7C09B /* tinyNET */, + ECF4C23B11434F9300B7C09B /* tinySAK */, + ECF4BF8911434F4A00B7C09B /* tinySIP */, + ECF4BF0F11434EFE00B7C09B /* tinyHTTP */, ECF46D40113476BD00390CBE /* tinyIPSec */, - ECF46A941134755E00390CBE /* tinySIP */, - ECF46A30113473CC00390CBE /* tinyHTTP */, - ECF4691E11346C6A00390CBE /* tinyNET */, ECED6B0E10F9A953006B4DC9 /* test */, - ECED67EB10F996BF006B4DC9 /* tinySAK */, - ECED644D10F995B8006B4DC9 /* ragel */, - ECED644B10F995A8006B4DC9 /* graph */, - ECED644810F99599006B4DC9 /* abnf */, 1AB674ADFE9D54B511CA2CBB /* Products */, ); name = tinySIP; @@ -1178,74 +1095,6 @@ name = Products; 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 */, - ECED67F110F996F6006B4DC9 /* tsk_base64.c */, - ECED67F210F996F6006B4DC9 /* tsk_base64.h */, - ECED67F310F996F6006B4DC9 /* tsk_binaryutils.c */, - ECED67F410F996F6006B4DC9 /* tsk_binaryutils.h */, - ECED67F510F996F6006B4DC9 /* tsk_buffer.c */, - ECED67F610F996F6006B4DC9 /* tsk_buffer.h */, - ECED67F710F996F6006B4DC9 /* tsk_condwait.c */, - ECED67F810F996F6006B4DC9 /* tsk_condwait.h */, - ECED67F910F996F6006B4DC9 /* tsk_debug.c */, - ECED67FA10F996F6006B4DC9 /* tsk_debug.h */, - ECED67FB10F996F6006B4DC9 /* tsk_errno.h */, - ECED67FC10F996F6006B4DC9 /* tsk_heap.c */, - ECED67FD10F996F6006B4DC9 /* tsk_heap.h */, - ECED67FE10F996F6006B4DC9 /* tsk_hmac.c */, - ECED67FF10F996F6006B4DC9 /* tsk_hmac.h */, - ECED680010F996F6006B4DC9 /* tsk_list.c */, - ECED680110F996F6006B4DC9 /* tsk_list.h */, - ECED680210F996F6006B4DC9 /* tsk_macros.h */, - ECED680310F996F6006B4DC9 /* tsk_md5.c */, - ECED680410F996F6006B4DC9 /* tsk_md5.h */, - ECED680510F996F6006B4DC9 /* tsk_memory.c */, - ECED680610F996F6006B4DC9 /* tsk_memory.h */, - ECED680710F996F6006B4DC9 /* tsk_mutex.c */, - ECED680810F996F6006B4DC9 /* tsk_mutex.h */, - ECED680910F996F6006B4DC9 /* tsk_object.c */, - ECED680A10F996F6006B4DC9 /* tsk_object.h */, - ECED680B10F996F6006B4DC9 /* tsk_params.c */, - ECED680C10F996F6006B4DC9 /* tsk_params.h */, - ECED680D10F996F6006B4DC9 /* tsk_ppfcs16.c */, - ECED680E10F996F6006B4DC9 /* tsk_ppfcs16.h */, - ECED680F10F996F6006B4DC9 /* tsk_runnable.c */, - ECED681010F996F6006B4DC9 /* tsk_runnable.h */, - ECED681110F996F6006B4DC9 /* tsk_safeobj.c */, - ECED681210F996F6006B4DC9 /* tsk_safeobj.h */, - ECED681310F996F6006B4DC9 /* tsk_semaphore.c */, - ECED681410F996F6006B4DC9 /* tsk_semaphore.h */, - ECED681510F996F6006B4DC9 /* tsk_sha1.c */, - ECED681610F996F6006B4DC9 /* tsk_sha1.h */, - ECED681710F996F6006B4DC9 /* tsk_string.c */, - ECED681810F996F6006B4DC9 /* tsk_string.h */, - ECED681910F996F6006B4DC9 /* tsk_thread.c */, - ECED681A10F996F6006B4DC9 /* tsk_thread.h */, - ECED681B10F996F6006B4DC9 /* tsk_time.c */, - ECED681C10F996F6006B4DC9 /* tsk_time.h */, - ECED681D10F996F6006B4DC9 /* tsk_timer.c */, - ECED681E10F996F6006B4DC9 /* tsk_timer.h */, - ECED681F10F996F6006B4DC9 /* tsk_url.c */, - ECED682010F996F6006B4DC9 /* tsk_url.h */, - ECED682110F996F6006B4DC9 /* tsk_xml.c */, - ECED682210F996F6006B4DC9 /* tsk_xml.h */, - ); - name = tinySAK; - sourceTree = ""; - }; ECED6B0E10F9A953006B4DC9 /* test */ = { isa = PBXGroup; children = ( @@ -1261,833 +1110,6 @@ 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 = ( @@ -2115,6 +1137,761 @@ path = src; sourceTree = ""; }; + ECF4BF0F11434EFE00B7C09B /* tinyHTTP */ = { + isa = PBXGroup; + children = ( + ECF4BF1711434EFE00B7C09B /* include */, + ECF4BF3B11434EFE00B7C09B /* src */, + ); + name = tinyHTTP; + path = ../../tinyHTTP; + sourceTree = SOURCE_ROOT; + }; + ECF4BF1711434EFE00B7C09B /* include */ = { + isa = PBXGroup; + children = ( + ECF4BF1811434EFE00B7C09B /* thttp.h */, + ECF4BF1911434EFE00B7C09B /* tinyHTTP */, + ECF4BF2D11434EFE00B7C09B /* tinyhttp_config.h */, + ); + path = include; + sourceTree = ""; + }; + ECF4BF1911434EFE00B7C09B /* tinyHTTP */ = { + isa = PBXGroup; + children = ( + ECF4BF1A11434EFE00B7C09B /* auth */, + ECF4BF1C11434EFE00B7C09B /* headers */, + ECF4BF2411434EFE00B7C09B /* parsers */, + ECF4BF2811434EFE00B7C09B /* thttp_event.h */, + ECF4BF2911434EFE00B7C09B /* thttp_message.h */, + ECF4BF2A11434EFE00B7C09B /* thttp_operation.h */, + ECF4BF2B11434EFE00B7C09B /* thttp_transport.h */, + ECF4BF2C11434EFE00B7C09B /* thttp_url.h */, + ); + path = tinyHTTP; + sourceTree = ""; + }; + ECF4BF1A11434EFE00B7C09B /* auth */ = { + isa = PBXGroup; + children = ( + ECF4BF1B11434EFE00B7C09B /* thttp_auth.h */, + ); + path = auth; + sourceTree = ""; + }; + ECF4BF1C11434EFE00B7C09B /* headers */ = { + isa = PBXGroup; + children = ( + ECF4BF1D11434EFE00B7C09B /* thttp_header.h */, + ECF4BF1E11434EFE00B7C09B /* thttp_header_Authorization.h */, + ECF4BF1F11434EFE00B7C09B /* thttp_header_Content_Length.h */, + ECF4BF2011434EFE00B7C09B /* thttp_header_Content_Type.h */, + ECF4BF2111434EFE00B7C09B /* thttp_header_Dummy.h */, + ECF4BF2211434EFE00B7C09B /* thttp_header_Proxy_Authenticate.h */, + ECF4BF2311434EFE00B7C09B /* thttp_header_WWW_Authenticate.h */, + ); + path = headers; + sourceTree = ""; + }; + ECF4BF2411434EFE00B7C09B /* parsers */ = { + isa = PBXGroup; + children = ( + ECF4BF2511434EFE00B7C09B /* thttp_parser_header.h */, + ECF4BF2611434EFE00B7C09B /* thttp_parser_message.h */, + ECF4BF2711434EFE00B7C09B /* thttp_parser_url.h */, + ); + path = parsers; + sourceTree = ""; + }; + ECF4BF3B11434EFE00B7C09B /* src */ = { + isa = PBXGroup; + children = ( + ECF4BF3C11434EFE00B7C09B /* auth */, + ECF4BF3E11434EFE00B7C09B /* headers */, + ECF4BF4711434EFE00B7C09B /* parsers */, + ECF4BF4B11434EFE00B7C09B /* thttp.c */, + ECF4BF4C11434EFE00B7C09B /* thttp_event.c */, + ECF4BF4D11434EFE00B7C09B /* thttp_message.c */, + ECF4BF4E11434EFE00B7C09B /* thttp_operation.c */, + ECF4BF4F11434EFE00B7C09B /* thttp_transport.c */, + ECF4BF5011434EFE00B7C09B /* thttp_url.c */, + ); + path = src; + sourceTree = ""; + }; + ECF4BF3C11434EFE00B7C09B /* auth */ = { + isa = PBXGroup; + children = ( + ECF4BF3D11434EFE00B7C09B /* thttp_auth.c */, + ); + path = auth; + sourceTree = ""; + }; + ECF4BF3E11434EFE00B7C09B /* headers */ = { + isa = PBXGroup; + children = ( + ECF4BF3F11434EFE00B7C09B /* thttp_header.c */, + ECF4BF4011434EFE00B7C09B /* thttp_header_Authorization.c */, + ECF4BF4111434EFE00B7C09B /* thttp_header_Content_Length.c */, + ECF4BF4211434EFE00B7C09B /* thttp_header_Content_Type.c */, + ECF4BF4311434EFE00B7C09B /* thttp_header_Dummy.c */, + ECF4BF4411434EFE00B7C09B /* thttp_header_Proxy_Authenticate.c */, + ECF4BF4511434EFE00B7C09B /* thttp_header_WWW_Authenticate.c */, + ); + path = headers; + sourceTree = ""; + }; + ECF4BF4711434EFE00B7C09B /* parsers */ = { + isa = PBXGroup; + children = ( + ECF4BF4811434EFE00B7C09B /* thttp_parser_header.c */, + ECF4BF4911434EFE00B7C09B /* thttp_parser_message.c */, + ECF4BF4A11434EFE00B7C09B /* thttp_parser_url.c */, + ); + path = parsers; + sourceTree = ""; + }; + ECF4BF8911434F4A00B7C09B /* tinySIP */ = { + isa = PBXGroup; + children = ( + ECF4BF9E11434F4A00B7C09B /* include */, + ECF4C09111434F4B00B7C09B /* src */, + ); + name = tinySIP; + path = ../../tinySIP; + sourceTree = SOURCE_ROOT; + }; + ECF4BF9E11434F4A00B7C09B /* include */ = { + isa = PBXGroup; + children = ( + ECF4BF9F11434F4A00B7C09B /* tinysip */, + ECF4C02811434F4A00B7C09B /* tinysip_config.h */, + ECF4C02911434F4A00B7C09B /* tsip.h */, + ); + path = include; + sourceTree = ""; + }; + ECF4BF9F11434F4A00B7C09B /* tinysip */ = { + isa = PBXGroup; + children = ( + ECF4BFA011434F4A00B7C09B /* api */, + ECF4BFA711434F4A00B7C09B /* authentication */, + ECF4BFAB11434F4A00B7C09B /* dialogs */, + ECF4BFB311434F4A00B7C09B /* headers */, + ECF4C01311434F4A00B7C09B /* parsers */, + ECF4C01711434F4A00B7C09B /* transactions */, + ECF4C01E11434F4A00B7C09B /* transports */, + ECF4C02311434F4A00B7C09B /* tsip_event.h */, + ECF4C02411434F4A00B7C09B /* tsip_message.h */, + ECF4C02511434F4A00B7C09B /* tsip_operation.h */, + ECF4C02611434F4A00B7C09B /* tsip_timers.h */, + ECF4C02711434F4A00B7C09B /* tsip_uri.h */, + ); + path = tinysip; + sourceTree = ""; + }; + ECF4BFA011434F4A00B7C09B /* api */ = { + isa = PBXGroup; + children = ( + ECF4BFA111434F4A00B7C09B /* tsip_api.h */, + ECF4BFA211434F4A00B7C09B /* tsip_api_invite.h */, + ECF4BFA311434F4A00B7C09B /* tsip_api_message.h */, + ECF4BFA411434F4A00B7C09B /* tsip_api_publish.h */, + ECF4BFA511434F4A00B7C09B /* tsip_api_register.h */, + ECF4BFA611434F4A00B7C09B /* tsip_api_subscribe.h */, + ); + path = api; + sourceTree = ""; + }; + ECF4BFA711434F4A00B7C09B /* authentication */ = { + isa = PBXGroup; + children = ( + ECF4BFA811434F4A00B7C09B /* tsip_challenge.h */, + ECF4BFA911434F4A00B7C09B /* tsip_milenage.h */, + ECF4BFAA11434F4A00B7C09B /* tsip_rijndael.h */, + ); + path = authentication; + sourceTree = ""; + }; + ECF4BFAB11434F4A00B7C09B /* dialogs */ = { + isa = PBXGroup; + children = ( + ECF4BFAC11434F4A00B7C09B /* tsip_dialog.h */, + ECF4BFAD11434F4A00B7C09B /* tsip_dialog_invite.h */, + ECF4BFAE11434F4A00B7C09B /* tsip_dialog_layer.h */, + ECF4BFAF11434F4A00B7C09B /* tsip_dialog_message.h */, + ECF4BFB011434F4A00B7C09B /* tsip_dialog_publish.h */, + ECF4BFB111434F4A00B7C09B /* tsip_dialog_register.h */, + ECF4BFB211434F4A00B7C09B /* tsip_dialog_subscribe.h */, + ); + path = dialogs; + sourceTree = ""; + }; + ECF4BFB311434F4A00B7C09B /* headers */ = { + isa = PBXGroup; + children = ( + ECF4BFB411434F4A00B7C09B /* tsip_header.h */, + ECF4BFB511434F4A00B7C09B /* tsip_header_accept.h */, + ECF4BFB611434F4A00B7C09B /* tsip_header_Accept_Contact.h */, + ECF4BFB711434F4A00B7C09B /* tsip_header_Accept_Encoding.h */, + ECF4BFB811434F4A00B7C09B /* tsip_header_Accept_Language.h */, + ECF4BFB911434F4A00B7C09B /* tsip_header_Accept_Resource_Priority.h */, + ECF4BFBA11434F4A00B7C09B /* tsip_header_Alert_Info.h */, + ECF4BFBB11434F4A00B7C09B /* tsip_header_Allow.h */, + ECF4BFBC11434F4A00B7C09B /* tsip_header_Allow_Events.h */, + ECF4BFBD11434F4A00B7C09B /* tsip_header_Authentication_Info.h */, + ECF4BFBE11434F4A00B7C09B /* tsip_header_Authorization.h */, + ECF4BFBF11434F4A00B7C09B /* tsip_header_Call_ID.h */, + ECF4BFC011434F4A00B7C09B /* tsip_header_Call_Info.h */, + ECF4BFC111434F4A00B7C09B /* tsip_header_Contact.h */, + ECF4BFC211434F4A00B7C09B /* tsip_header_Content_Disposition.h */, + ECF4BFC311434F4A00B7C09B /* tsip_header_Content_Encoding.h */, + ECF4BFC411434F4A00B7C09B /* tsip_header_Content_Language.h */, + ECF4BFC511434F4A00B7C09B /* tsip_header_Content_Length.h */, + ECF4BFC611434F4A00B7C09B /* tsip_header_Content_Type.h */, + ECF4BFC711434F4A00B7C09B /* tsip_header_CSeq.h */, + ECF4BFC811434F4A00B7C09B /* tsip_header_Date.h */, + ECF4BFC911434F4A00B7C09B /* tsip_header_Dummy.h */, + ECF4BFCA11434F4A00B7C09B /* tsip_header_Error_Info.h */, + ECF4BFCB11434F4A00B7C09B /* tsip_header_Event.h */, + ECF4BFCC11434F4A00B7C09B /* tsip_header_Expires.h */, + ECF4BFCD11434F4A00B7C09B /* tsip_header_From.h */, + ECF4BFCE11434F4A00B7C09B /* tsip_header_History_Info.h */, + ECF4BFCF11434F4A00B7C09B /* tsip_header_Identity.h */, + ECF4BFD011434F4A00B7C09B /* tsip_header_Identity_Info.h */, + ECF4BFD111434F4A00B7C09B /* tsip_header_In_Reply_To.h */, + ECF4BFD211434F4A00B7C09B /* tsip_header_Join.h */, + ECF4BFD311434F4A00B7C09B /* tsip_header_Max_Forwards.h */, + ECF4BFD411434F4A00B7C09B /* tsip_header_MIME_Version.h */, + ECF4BFD511434F4A00B7C09B /* tsip_header_Min_Expires.h */, + ECF4BFD611434F4A00B7C09B /* tsip_header_Min_SE.h */, + ECF4BFD711434F4A00B7C09B /* tsip_header_Organization.h */, + ECF4BFD811434F4A00B7C09B /* tsip_header_P_Access_Network_Info.h */, + ECF4BFD911434F4A00B7C09B /* tsip_header_P_Answer_State.h */, + ECF4BFDA11434F4A00B7C09B /* tsip_header_P_Asserted_Identity.h */, + ECF4BFDB11434F4A00B7C09B /* tsip_header_P_Associated_URI.h */, + ECF4BFDC11434F4A00B7C09B /* tsip_header_P_Called_Party_ID.h */, + ECF4BFDD11434F4A00B7C09B /* tsip_header_P_Charging_Function_Addresses.h */, + ECF4BFDE11434F4A00B7C09B /* tsip_header_P_Charging_Vector.h */, + ECF4BFDF11434F4A00B7C09B /* tsip_header_P_DCS_Billing_Info.h */, + ECF4BFE011434F4A00B7C09B /* tsip_header_P_DCS_LAES.h */, + ECF4BFE111434F4A00B7C09B /* tsip_header_P_DCS_OSPS.h */, + ECF4BFE211434F4A00B7C09B /* tsip_header_P_DCS_Redirect.h */, + ECF4BFE311434F4A00B7C09B /* tsip_header_P_DCS_Trace_Party_ID.h */, + ECF4BFE411434F4A00B7C09B /* tsip_header_P_Early_Media.h */, + ECF4BFE511434F4A00B7C09B /* tsip_header_P_Media_Authorization.h */, + ECF4BFE611434F4A00B7C09B /* tsip_header_P_Preferred_Identity.h */, + ECF4BFE711434F4A00B7C09B /* tsip_header_P_Profile_Key.h */, + ECF4BFE811434F4A00B7C09B /* tsip_header_P_User_Database.h */, + ECF4BFE911434F4A00B7C09B /* tsip_header_P_Visited_Network_ID.h */, + ECF4BFEA11434F4A00B7C09B /* tsip_header_Path.h */, + ECF4BFEB11434F4A00B7C09B /* tsip_header_Priority.h */, + ECF4BFEC11434F4A00B7C09B /* tsip_header_Privacy.h */, + ECF4BFED11434F4A00B7C09B /* tsip_header_Proxy_Authenticate.h */, + ECF4BFEE11434F4A00B7C09B /* tsip_header_Proxy_Authorization.h */, + ECF4BFEF11434F4A00B7C09B /* tsip_header_Proxy_Require.h */, + ECF4BFF011434F4A00B7C09B /* tsip_header_RAck.h */, + ECF4BFF111434F4A00B7C09B /* tsip_header_Reason.h */, + ECF4BFF211434F4A00B7C09B /* tsip_header_Record_Route.h */, + ECF4BFF311434F4A00B7C09B /* tsip_header_Refer_Sub.h */, + ECF4BFF411434F4A00B7C09B /* tsip_header_Refer_To.h */, + ECF4BFF511434F4A00B7C09B /* tsip_header_Referred_By.h */, + ECF4BFF611434F4A00B7C09B /* tsip_header_Reject_Contact.h */, + ECF4BFF711434F4A00B7C09B /* tsip_header_Replaces.h */, + ECF4BFF811434F4A00B7C09B /* tsip_header_Reply_To.h */, + ECF4BFF911434F4A00B7C09B /* tsip_header_Request_Disposition.h */, + ECF4BFFA11434F4A00B7C09B /* tsip_header_Require.h */, + ECF4BFFB11434F4A00B7C09B /* tsip_header_Resource_Priority.h */, + ECF4BFFC11434F4A00B7C09B /* tsip_header_Retry_After.h */, + ECF4BFFD11434F4A00B7C09B /* tsip_header_Route.h */, + ECF4BFFE11434F4A00B7C09B /* tsip_header_RSeq.h */, + ECF4BFFF11434F4A00B7C09B /* tsip_header_Security_Client.h */, + ECF4C00011434F4A00B7C09B /* tsip_header_Security_Server.h */, + ECF4C00111434F4A00B7C09B /* tsip_header_Security_Verify.h */, + ECF4C00211434F4A00B7C09B /* tsip_header_Server.h */, + ECF4C00311434F4A00B7C09B /* tsip_header_Service_Route.h */, + ECF4C00411434F4A00B7C09B /* tsip_header_Session_Expires.h */, + ECF4C00511434F4A00B7C09B /* tsip_header_SIP_ETag.h */, + ECF4C00611434F4A00B7C09B /* tsip_header_SIP_If_Match.h */, + ECF4C00711434F4A00B7C09B /* tsip_header_Subject.h */, + ECF4C00811434F4A00B7C09B /* tsip_header_Subscription_State.h */, + ECF4C00911434F4A00B7C09B /* tsip_header_Supported.h */, + ECF4C00A11434F4A00B7C09B /* tsip_header_Target_Dialog.h */, + ECF4C00B11434F4A00B7C09B /* tsip_header_Timestamp.h */, + ECF4C00C11434F4A00B7C09B /* tsip_header_To.h */, + ECF4C00D11434F4A00B7C09B /* tsip_header_Unsupported.h */, + ECF4C00E11434F4A00B7C09B /* tsip_header_User_Agent.h */, + ECF4C00F11434F4A00B7C09B /* tsip_header_Via.h */, + ECF4C01011434F4A00B7C09B /* tsip_header_Warning.h */, + ECF4C01111434F4A00B7C09B /* tsip_header_WWW_Authenticate.h */, + ECF4C01211434F4A00B7C09B /* tsip_headers.h */, + ); + path = headers; + sourceTree = ""; + }; + ECF4C01311434F4A00B7C09B /* parsers */ = { + isa = PBXGroup; + children = ( + ECF4C01411434F4A00B7C09B /* tsip_parser_header.h */, + ECF4C01511434F4A00B7C09B /* tsip_parser_message.h */, + ECF4C01611434F4A00B7C09B /* tsip_parser_uri.h */, + ); + path = parsers; + sourceTree = ""; + }; + ECF4C01711434F4A00B7C09B /* transactions */ = { + isa = PBXGroup; + children = ( + ECF4C01811434F4A00B7C09B /* tsip_transac.h */, + ECF4C01911434F4A00B7C09B /* tsip_transac_ict.h */, + ECF4C01A11434F4A00B7C09B /* tsip_transac_ist.h */, + ECF4C01B11434F4A00B7C09B /* tsip_transac_layer.h */, + ECF4C01C11434F4A00B7C09B /* tsip_transac_nict.h */, + ECF4C01D11434F4A00B7C09B /* tsip_transac_nist.h */, + ); + path = transactions; + sourceTree = ""; + }; + ECF4C01E11434F4A00B7C09B /* transports */ = { + isa = PBXGroup; + children = ( + ECF4C01F11434F4A00B7C09B /* tsip_transport.h */, + ECF4C02011434F4A00B7C09B /* tsip_transport_ipsec.h */, + ECF4C02111434F4A00B7C09B /* tsip_transport_layer.h */, + ECF4C02211434F4A00B7C09B /* tsip_transport_tls.h */, + ); + path = transports; + sourceTree = ""; + }; + ECF4C09111434F4B00B7C09B /* src */ = { + isa = PBXGroup; + children = ( + ECF4C09211434F4B00B7C09B /* api */, + ECF4C09811434F4B00B7C09B /* authentication */, + ECF4C09C11434F4B00B7C09B /* dialogs */, + ECF4C0A711434F4B00B7C09B /* headers */, + ECF4C10711434F4B00B7C09B /* parsers */, + ECF4C10B11434F4B00B7C09B /* transactions */, + ECF4C11211434F4B00B7C09B /* transports */, + ECF4C11711434F4B00B7C09B /* tsip.c */, + ECF4C11811434F4B00B7C09B /* tsip_event.c */, + ECF4C11911434F4B00B7C09B /* tsip_message.c */, + ECF4C11A11434F4B00B7C09B /* tsip_operation.c */, + ECF4C11B11434F4B00B7C09B /* tsip_timers.c */, + ECF4C11C11434F4B00B7C09B /* tsip_uri.c */, + ); + path = src; + sourceTree = ""; + }; + ECF4C09211434F4B00B7C09B /* api */ = { + isa = PBXGroup; + children = ( + ECF4C09311434F4B00B7C09B /* tsip_api_invite.c */, + ECF4C09411434F4B00B7C09B /* tsip_api_message.c */, + ECF4C09511434F4B00B7C09B /* tsip_api_publish.c */, + ECF4C09611434F4B00B7C09B /* tsip_api_register.c */, + ECF4C09711434F4B00B7C09B /* tsip_api_subscribe.c */, + ); + path = api; + sourceTree = ""; + }; + ECF4C09811434F4B00B7C09B /* authentication */ = { + isa = PBXGroup; + children = ( + ECF4C09911434F4B00B7C09B /* tsip_challenge.c */, + ECF4C09A11434F4B00B7C09B /* tsip_milenage.c */, + ECF4C09B11434F4B00B7C09B /* tsip_rijndael.c */, + ); + path = authentication; + sourceTree = ""; + }; + ECF4C09C11434F4B00B7C09B /* dialogs */ = { + isa = PBXGroup; + children = ( + ECF4C09D11434F4B00B7C09B /* tsip_dialog.c */, + ECF4C09E11434F4B00B7C09B /* tsip_dialog_invite.client.c */, + ECF4C09F11434F4B00B7C09B /* tsip_dialog_invite.server.c */, + ECF4C0A011434F4B00B7C09B /* tsip_dialog_layer.c */, + ECF4C0A111434F4B00B7C09B /* tsip_dialog_message.c */, + ECF4C0A211434F4B00B7C09B /* tsip_dialog_publish.client.c */, + ECF4C0A311434F4B00B7C09B /* tsip_dialog_register.client.c */, + ECF4C0A411434F4B00B7C09B /* tsip_dialog_register.server.c */, + ECF4C0A511434F4B00B7C09B /* tsip_dialog_subscribe.client.c */, + ECF4C0A611434F4B00B7C09B /* tsip_dialog_subscribe.server.c */, + ); + path = dialogs; + sourceTree = ""; + }; + ECF4C0A711434F4B00B7C09B /* headers */ = { + isa = PBXGroup; + children = ( + ECF4C0A811434F4B00B7C09B /* tsip_header.c */, + ECF4C0A911434F4B00B7C09B /* tsip_header_accept.c */, + ECF4C0AA11434F4B00B7C09B /* tsip_header_Accept_Contact.c */, + ECF4C0AB11434F4B00B7C09B /* tsip_header_Accept_Encoding.c */, + ECF4C0AC11434F4B00B7C09B /* tsip_header_Accept_Language.c */, + ECF4C0AD11434F4B00B7C09B /* tsip_header_Accept_Resource_Priority.c */, + ECF4C0AE11434F4B00B7C09B /* tsip_header_Alert_Info.c */, + ECF4C0AF11434F4B00B7C09B /* tsip_header_Allow.c */, + ECF4C0B011434F4B00B7C09B /* tsip_header_Allow_Events.c */, + ECF4C0B111434F4B00B7C09B /* tsip_header_Authentication_Info.c */, + ECF4C0B211434F4B00B7C09B /* tsip_header_Authorization.c */, + ECF4C0B311434F4B00B7C09B /* tsip_header_Call_ID.c */, + ECF4C0B411434F4B00B7C09B /* tsip_header_Call_Info.c */, + ECF4C0B511434F4B00B7C09B /* tsip_header_Contact.c */, + ECF4C0B611434F4B00B7C09B /* tsip_header_Content_Disposition.c */, + ECF4C0B711434F4B00B7C09B /* tsip_header_Content_Encoding.c */, + ECF4C0B811434F4B00B7C09B /* tsip_header_Content_Language.c */, + ECF4C0B911434F4B00B7C09B /* tsip_header_Content_Length.c */, + ECF4C0BA11434F4B00B7C09B /* tsip_header_Content_Type.c */, + ECF4C0BB11434F4B00B7C09B /* tsip_header_CSeq.c */, + ECF4C0BC11434F4B00B7C09B /* tsip_header_Date.c */, + ECF4C0BD11434F4B00B7C09B /* tsip_header_Dummy.c */, + ECF4C0BE11434F4B00B7C09B /* tsip_header_Error_Info.c */, + ECF4C0BF11434F4B00B7C09B /* tsip_header_Event.c */, + ECF4C0C011434F4B00B7C09B /* tsip_header_Expires.c */, + ECF4C0C111434F4B00B7C09B /* tsip_header_From.c */, + ECF4C0C211434F4B00B7C09B /* tsip_header_History_Info.c */, + ECF4C0C311434F4B00B7C09B /* tsip_header_Identity.c */, + ECF4C0C411434F4B00B7C09B /* tsip_header_Identity_Info.c */, + ECF4C0C511434F4B00B7C09B /* tsip_header_In_Reply_To.c */, + ECF4C0C611434F4B00B7C09B /* tsip_header_Join.c */, + ECF4C0C711434F4B00B7C09B /* tsip_header_Max_Forwards.c */, + ECF4C0C811434F4B00B7C09B /* tsip_header_MIME_Version.c */, + ECF4C0C911434F4B00B7C09B /* tsip_header_Min_Expires.c */, + ECF4C0CA11434F4B00B7C09B /* tsip_header_Min_SE.c */, + ECF4C0CB11434F4B00B7C09B /* tsip_header_Organization.c */, + ECF4C0CC11434F4B00B7C09B /* tsip_header_P_Access_Network_Info.c */, + ECF4C0CD11434F4B00B7C09B /* tsip_header_P_Answer_State.c */, + ECF4C0CE11434F4B00B7C09B /* tsip_header_P_Asserted_Identity.c */, + ECF4C0CF11434F4B00B7C09B /* tsip_header_P_Associated_URI.c */, + ECF4C0D011434F4B00B7C09B /* tsip_header_P_Called_Party_ID.c */, + ECF4C0D111434F4B00B7C09B /* tsip_header_P_Charging_Function_Addresses.c */, + ECF4C0D211434F4B00B7C09B /* tsip_header_P_Charging_Vector.c */, + ECF4C0D311434F4B00B7C09B /* tsip_header_P_DCS_Billing_Info.c */, + ECF4C0D411434F4B00B7C09B /* tsip_header_P_DCS_LAES.c */, + ECF4C0D511434F4B00B7C09B /* tsip_header_P_DCS_OSPS.c */, + ECF4C0D611434F4B00B7C09B /* tsip_header_P_DCS_Redirect.c */, + ECF4C0D711434F4B00B7C09B /* tsip_header_P_DCS_Trace_Party_ID.c */, + ECF4C0D811434F4B00B7C09B /* tsip_header_P_Early_Media.c */, + ECF4C0D911434F4B00B7C09B /* tsip_header_P_Media_Authorization.c */, + ECF4C0DA11434F4B00B7C09B /* tsip_header_P_Preferred_Identity.c */, + ECF4C0DB11434F4B00B7C09B /* tsip_header_P_Profile_Key.c */, + ECF4C0DC11434F4B00B7C09B /* tsip_header_P_User_Database.c */, + ECF4C0DD11434F4B00B7C09B /* tsip_header_P_Visited_Network_ID.c */, + ECF4C0DE11434F4B00B7C09B /* tsip_header_Path.c */, + ECF4C0DF11434F4B00B7C09B /* tsip_header_Priority.c */, + ECF4C0E011434F4B00B7C09B /* tsip_header_Privacy.c */, + ECF4C0E111434F4B00B7C09B /* tsip_header_Proxy_Authenticate.c */, + ECF4C0E211434F4B00B7C09B /* tsip_header_Proxy_Authorization.c */, + ECF4C0E311434F4B00B7C09B /* tsip_header_Proxy_Require.c */, + ECF4C0E411434F4B00B7C09B /* tsip_header_RAck.c */, + ECF4C0E511434F4B00B7C09B /* tsip_header_Reason.c */, + ECF4C0E611434F4B00B7C09B /* tsip_header_Record_Route.c */, + ECF4C0E711434F4B00B7C09B /* tsip_header_Refer_Sub.c */, + ECF4C0E811434F4B00B7C09B /* tsip_header_Refer_To.c */, + ECF4C0E911434F4B00B7C09B /* tsip_header_Referred_By.c */, + ECF4C0EA11434F4B00B7C09B /* tsip_header_Reject_Contact.c */, + ECF4C0EB11434F4B00B7C09B /* tsip_header_Replaces.c */, + ECF4C0EC11434F4B00B7C09B /* tsip_header_Reply_To.c */, + ECF4C0ED11434F4B00B7C09B /* tsip_header_Request_Disposition.c */, + ECF4C0EE11434F4B00B7C09B /* tsip_header_Require.c */, + ECF4C0EF11434F4B00B7C09B /* tsip_header_Resource_Priority.c */, + ECF4C0F011434F4B00B7C09B /* tsip_header_Retry_After.c */, + ECF4C0F111434F4B00B7C09B /* tsip_header_Route.c */, + ECF4C0F211434F4B00B7C09B /* tsip_header_RSeq.c */, + ECF4C0F311434F4B00B7C09B /* tsip_header_Security_Client.c */, + ECF4C0F411434F4B00B7C09B /* tsip_header_Security_Server.c */, + ECF4C0F511434F4B00B7C09B /* tsip_header_Security_Verify.c */, + ECF4C0F611434F4B00B7C09B /* tsip_header_Server.c */, + ECF4C0F711434F4B00B7C09B /* tsip_header_Service_Route.c */, + ECF4C0F811434F4B00B7C09B /* tsip_header_Session_Expires.c */, + ECF4C0F911434F4B00B7C09B /* tsip_header_SIP_ETag.c */, + ECF4C0FA11434F4B00B7C09B /* tsip_header_SIP_If_Match.c */, + ECF4C0FB11434F4B00B7C09B /* tsip_header_Subject.c */, + ECF4C0FC11434F4B00B7C09B /* tsip_header_Subscription_State.c */, + ECF4C0FD11434F4B00B7C09B /* tsip_header_Supported.c */, + ECF4C0FE11434F4B00B7C09B /* tsip_header_Target_Dialog.c */, + ECF4C0FF11434F4B00B7C09B /* tsip_header_Timestamp.c */, + ECF4C10011434F4B00B7C09B /* tsip_header_To.c */, + ECF4C10111434F4B00B7C09B /* tsip_header_Unsupported.c */, + ECF4C10211434F4B00B7C09B /* tsip_header_User_Agent.c */, + ECF4C10311434F4B00B7C09B /* tsip_header_Via.c */, + ECF4C10411434F4B00B7C09B /* tsip_header_Warning.c */, + ECF4C10511434F4B00B7C09B /* tsip_header_WWW_Authenticate.c */, + ); + path = headers; + sourceTree = ""; + }; + ECF4C10711434F4B00B7C09B /* parsers */ = { + isa = PBXGroup; + children = ( + ECF4C10811434F4B00B7C09B /* tsip_parser_header.c */, + ECF4C10911434F4B00B7C09B /* tsip_parser_message.c */, + ECF4C10A11434F4B00B7C09B /* tsip_parser_uri.c */, + ); + path = parsers; + sourceTree = ""; + }; + ECF4C10B11434F4B00B7C09B /* transactions */ = { + isa = PBXGroup; + children = ( + ECF4C10C11434F4B00B7C09B /* tsip_transac.c */, + ECF4C10D11434F4B00B7C09B /* tsip_transac_ict.c */, + ECF4C10E11434F4B00B7C09B /* tsip_transac_ist.c */, + ECF4C10F11434F4B00B7C09B /* tsip_transac_layer.c */, + ECF4C11011434F4B00B7C09B /* tsip_transac_nict.c */, + ECF4C11111434F4B00B7C09B /* tsip_transac_nist.c */, + ); + path = transactions; + sourceTree = ""; + }; + ECF4C11211434F4B00B7C09B /* transports */ = { + isa = PBXGroup; + children = ( + ECF4C11311434F4B00B7C09B /* tsip_transport.c */, + ECF4C11411434F4B00B7C09B /* tsip_transport_ipsec.c */, + ECF4C11511434F4B00B7C09B /* tsip_transport_layer.c */, + ECF4C11611434F4B00B7C09B /* tsip_transport_tls.c */, + ); + path = transports; + sourceTree = ""; + }; + ECF4C23B11434F9300B7C09B /* tinySAK */ = { + isa = PBXGroup; + children = ( + ECF4C28711434F9300B7C09B /* src */, + ); + name = tinySAK; + path = ../../tinySAK; + sourceTree = SOURCE_ROOT; + }; + ECF4C28711434F9300B7C09B /* src */ = { + isa = PBXGroup; + children = ( + ECF4C28911434F9300B7C09B /* tinySAK_config.h */, + ECF4C28A11434F9300B7C09B /* tsk.c */, + ECF4C28B11434F9300B7C09B /* tsk.h */, + ECF4C28C11434F9300B7C09B /* tsk_base64.c */, + ECF4C28D11434F9300B7C09B /* tsk_base64.h */, + ECF4C28E11434F9300B7C09B /* tsk_binaryutils.c */, + ECF4C28F11434F9300B7C09B /* tsk_binaryutils.h */, + ECF4C29011434F9300B7C09B /* tsk_buffer.c */, + ECF4C29111434F9300B7C09B /* tsk_buffer.h */, + ECF4C29211434F9300B7C09B /* tsk_condwait.c */, + ECF4C29311434F9300B7C09B /* tsk_condwait.h */, + ECF4C29411434F9300B7C09B /* tsk_debug.c */, + ECF4C29511434F9300B7C09B /* tsk_debug.h */, + ECF4C29611434F9300B7C09B /* tsk_errno.h */, + ECF4C29711434F9300B7C09B /* tsk_fsm.c */, + ECF4C29811434F9300B7C09B /* tsk_fsm.h */, + ECF4C29911434F9300B7C09B /* tsk_hmac.c */, + ECF4C29A11434F9300B7C09B /* tsk_hmac.h */, + ECF4C29B11434F9300B7C09B /* tsk_list.c */, + ECF4C29C11434F9300B7C09B /* tsk_list.h */, + ECF4C29D11434F9300B7C09B /* tsk_md5.c */, + ECF4C29E11434F9300B7C09B /* tsk_md5.h */, + ECF4C29F11434F9300B7C09B /* tsk_memory.c */, + ECF4C2A011434F9300B7C09B /* tsk_memory.h */, + ECF4C2A111434F9300B7C09B /* tsk_mutex.c */, + ECF4C2A211434F9300B7C09B /* tsk_mutex.h */, + ECF4C2A311434F9300B7C09B /* tsk_object.c */, + ECF4C2A411434F9300B7C09B /* tsk_object.h */, + ECF4C2A511434F9300B7C09B /* tsk_params.c */, + ECF4C2A611434F9300B7C09B /* tsk_params.h */, + ECF4C2A711434F9300B7C09B /* tsk_ppfcs16.c */, + ECF4C2A811434F9300B7C09B /* tsk_ppfcs16.h */, + ECF4C2A911434F9300B7C09B /* tsk_ppfcs32.c */, + ECF4C2AA11434F9300B7C09B /* tsk_ppfcs32.h */, + ECF4C2AB11434F9300B7C09B /* tsk_ragel_state.c */, + ECF4C2AC11434F9300B7C09B /* tsk_ragel_state.h */, + ECF4C2AD11434F9300B7C09B /* tsk_runnable.c */, + ECF4C2AE11434F9300B7C09B /* tsk_runnable.h */, + ECF4C2AF11434F9300B7C09B /* tsk_safeobj.c */, + ECF4C2B011434F9300B7C09B /* tsk_safeobj.h */, + ECF4C2B111434F9300B7C09B /* tsk_semaphore.c */, + ECF4C2B211434F9300B7C09B /* tsk_semaphore.h */, + ECF4C2B311434F9300B7C09B /* tsk_sha1.c */, + ECF4C2B411434F9300B7C09B /* tsk_sha1.h */, + ECF4C2B511434F9300B7C09B /* tsk_string.c */, + ECF4C2B611434F9300B7C09B /* tsk_string.h */, + ECF4C2B711434F9300B7C09B /* tsk_thread.c */, + ECF4C2B811434F9300B7C09B /* tsk_thread.h */, + ECF4C2B911434F9300B7C09B /* tsk_time.c */, + ECF4C2BA11434F9300B7C09B /* tsk_time.h */, + ECF4C2BB11434F9300B7C09B /* tsk_timer.c */, + ECF4C2BC11434F9300B7C09B /* tsk_timer.h */, + ECF4C2BD11434F9300B7C09B /* tsk_url.c */, + ECF4C2BE11434F9300B7C09B /* tsk_url.h */, + ECF4C2BF11434F9300B7C09B /* tsk_uuid.c */, + ECF4C2C011434F9300B7C09B /* tsk_uuid.h */, + ECF4C2C111434F9300B7C09B /* tsk_xml.c */, + ECF4C2C211434F9300B7C09B /* tsk_xml.h */, + ); + path = src; + sourceTree = ""; + }; + ECF4C82111434FEA00B7C09B /* tinyNET */ = { + isa = PBXGroup; + children = ( + ECF4C82C11434FEA00B7C09B /* src */, + ); + name = tinyNET; + path = ../../tinyNET; + sourceTree = SOURCE_ROOT; + }; + ECF4C82C11434FEA00B7C09B /* src */ = { + isa = PBXGroup; + children = ( + ECF4C82D11434FEA00B7C09B /* dhcp */, + ECF4C83611434FEA00B7C09B /* dhcp6 */, + ECF4C83F11434FEA00B7C09B /* dns */, + ECF4C85C11434FEA00B7C09B /* ice */, + ECF4C86011434FEA00B7C09B /* parsers */, + ECF4C86111434FEA00B7C09B /* stun */, + ECF4C86811434FEA00B7C09B /* tinyNET_config.h */, + ECF4C86911434FEA00B7C09B /* tls */, + ECF4C86C11434FEA00B7C09B /* tnet.c */, + ECF4C86D11434FEA00B7C09B /* tnet.h */, + ECF4C86E11434FEA00B7C09B /* tnet_auth.c */, + ECF4C86F11434FEA00B7C09B /* tnet_auth.h */, + ECF4C87011434FEA00B7C09B /* tnet_hardwares.h */, + ECF4C87111434FEA00B7C09B /* tnet_nat.c */, + ECF4C87211434FEA00B7C09B /* tnet_nat.h */, + ECF4C87311434FEA00B7C09B /* tnet_poll.c */, + ECF4C87411434FEA00B7C09B /* tnet_poll.h */, + ECF4C87511434FEA00B7C09B /* tnet_proto.h */, + ECF4C87611434FEA00B7C09B /* tnet_socket.c */, + ECF4C87711434FEA00B7C09B /* tnet_socket.h */, + ECF4C87811434FEA00B7C09B /* tnet_transport.c */, + ECF4C87911434FEA00B7C09B /* tnet_transport.h */, + ECF4C87A11434FEA00B7C09B /* tnet_transport_poll.c */, + ECF4C87B11434FEA00B7C09B /* tnet_transport_win32.c */, + ECF4C87C11434FEA00B7C09B /* tnet_types.h */, + ECF4C87D11434FEA00B7C09B /* tnet_utils.c */, + ECF4C87E11434FEA00B7C09B /* tnet_utils.h */, + ECF4C87F11434FEA00B7C09B /* turn */, + ); + path = src; + sourceTree = ""; + }; + ECF4C82D11434FEA00B7C09B /* dhcp */ = { + isa = PBXGroup; + children = ( + ECF4C82E11434FEA00B7C09B /* tnet_dhcp.c */, + ECF4C82F11434FEA00B7C09B /* tnet_dhcp.h */, + ECF4C83011434FEA00B7C09B /* tnet_dhcp_message.c */, + ECF4C83111434FEA00B7C09B /* tnet_dhcp_message.h */, + ECF4C83211434FEA00B7C09B /* tnet_dhcp_option.c */, + ECF4C83311434FEA00B7C09B /* tnet_dhcp_option.h */, + ECF4C83411434FEA00B7C09B /* tnet_dhcp_option_sip.c */, + ECF4C83511434FEA00B7C09B /* tnet_dhcp_option_sip.h */, + ); + path = dhcp; + sourceTree = ""; + }; + ECF4C83611434FEA00B7C09B /* dhcp6 */ = { + isa = PBXGroup; + children = ( + ECF4C83711434FEA00B7C09B /* tnet_dhcp6.c */, + ECF4C83811434FEA00B7C09B /* tnet_dhcp6.h */, + ECF4C83911434FEA00B7C09B /* tnet_dhcp6_duid.c */, + ECF4C83A11434FEA00B7C09B /* tnet_dhcp6_duid.h */, + ECF4C83B11434FEA00B7C09B /* tnet_dhcp6_message.c */, + ECF4C83C11434FEA00B7C09B /* tnet_dhcp6_message.h */, + ECF4C83D11434FEA00B7C09B /* tnet_dhcp6_option.c */, + ECF4C83E11434FEA00B7C09B /* tnet_dhcp6_option.h */, + ); + path = dhcp6; + sourceTree = ""; + }; + ECF4C83F11434FEA00B7C09B /* dns */ = { + isa = PBXGroup; + children = ( + ECF4C84011434FEA00B7C09B /* tnet_dns.c */, + ECF4C84111434FEA00B7C09B /* tnet_dns.h */, + ECF4C84211434FEA00B7C09B /* tnet_dns_a.c */, + ECF4C84311434FEA00B7C09B /* tnet_dns_a.h */, + ECF4C84411434FEA00B7C09B /* tnet_dns_aaaa.c */, + ECF4C84511434FEA00B7C09B /* tnet_dns_aaaa.h */, + ECF4C84611434FEA00B7C09B /* tnet_dns_cname.c */, + ECF4C84711434FEA00B7C09B /* tnet_dns_cname.h */, + ECF4C84811434FEA00B7C09B /* tnet_dns_message.c */, + ECF4C84911434FEA00B7C09B /* tnet_dns_message.h */, + ECF4C84A11434FEA00B7C09B /* tnet_dns_mx.c */, + ECF4C84B11434FEA00B7C09B /* tnet_dns_mx.h */, + ECF4C84C11434FEA00B7C09B /* tnet_dns_naptr.c */, + ECF4C84D11434FEA00B7C09B /* tnet_dns_naptr.h */, + ECF4C84E11434FEA00B7C09B /* tnet_dns_ns.c */, + ECF4C84F11434FEA00B7C09B /* tnet_dns_ns.h */, + ECF4C85011434FEA00B7C09B /* tnet_dns_opt.c */, + ECF4C85111434FEA00B7C09B /* tnet_dns_opt.h */, + ECF4C85211434FEA00B7C09B /* tnet_dns_ptr.c */, + ECF4C85311434FEA00B7C09B /* tnet_dns_ptr.h */, + ECF4C85411434FEA00B7C09B /* tnet_dns_rr.c */, + ECF4C85511434FEA00B7C09B /* tnet_dns_rr.h */, + ECF4C85611434FEA00B7C09B /* tnet_dns_soa.c */, + ECF4C85711434FEA00B7C09B /* tnet_dns_soa.h */, + ECF4C85811434FEA00B7C09B /* tnet_dns_srv.c */, + ECF4C85911434FEA00B7C09B /* tnet_dns_srv.h */, + ECF4C85A11434FEA00B7C09B /* tnet_dns_txt.c */, + ECF4C85B11434FEA00B7C09B /* tnet_dns_txt.h */, + ); + path = dns; + sourceTree = ""; + }; + ECF4C85C11434FEA00B7C09B /* ice */ = { + isa = PBXGroup; + children = ( + ECF4C85D11434FEA00B7C09B /* tnet_ice.c */, + ECF4C85E11434FEA00B7C09B /* tnet_ice.h */, + ); + path = ice; + sourceTree = ""; + }; + ECF4C86011434FEA00B7C09B /* parsers */ = { + isa = PBXGroup; + children = ( + ); + path = parsers; + sourceTree = ""; + }; + ECF4C86111434FEA00B7C09B /* stun */ = { + isa = PBXGroup; + children = ( + ECF4C86211434FEA00B7C09B /* tnet_stun.c */, + ECF4C86311434FEA00B7C09B /* tnet_stun.h */, + ECF4C86411434FEA00B7C09B /* tnet_stun_attribute.c */, + ECF4C86511434FEA00B7C09B /* tnet_stun_attribute.h */, + ECF4C86611434FEA00B7C09B /* tnet_stun_message.c */, + ECF4C86711434FEA00B7C09B /* tnet_stun_message.h */, + ); + path = stun; + sourceTree = ""; + }; + ECF4C86911434FEA00B7C09B /* tls */ = { + isa = PBXGroup; + children = ( + ECF4C86A11434FEA00B7C09B /* tnet_tls.c */, + ECF4C86B11434FEA00B7C09B /* tnet_tls.h */, + ); + path = tls; + sourceTree = ""; + }; + ECF4C87F11434FEA00B7C09B /* turn */ = { + isa = PBXGroup; + children = ( + ECF4C88011434FEA00B7C09B /* tnet_turn.c */, + ECF4C88111434FEA00B7C09B /* tnet_turn.h */, + ECF4C88211434FEA00B7C09B /* tnet_turn_attribute.c */, + ECF4C88311434FEA00B7C09B /* tnet_turn_attribute.h */, + ECF4C88411434FEA00B7C09B /* tnet_turn_message.c */, + ECF4C88511434FEA00B7C09B /* tnet_turn_message.h */, + ); + path = turn; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -2122,133 +1899,137 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 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 */, + ECF4C12B11434F4B00B7C09B /* tsip_api.h in Headers */, + ECF4C12C11434F4B00B7C09B /* tsip_api_invite.h in Headers */, + ECF4C12D11434F4B00B7C09B /* tsip_api_message.h in Headers */, + ECF4C12E11434F4B00B7C09B /* tsip_api_publish.h in Headers */, + ECF4C12F11434F4B00B7C09B /* tsip_api_register.h in Headers */, + ECF4C13011434F4B00B7C09B /* tsip_api_subscribe.h in Headers */, + ECF4C13111434F4B00B7C09B /* tsip_challenge.h in Headers */, + ECF4C13211434F4B00B7C09B /* tsip_milenage.h in Headers */, + ECF4C13311434F4B00B7C09B /* tsip_rijndael.h in Headers */, + ECF4C13411434F4B00B7C09B /* tsip_dialog.h in Headers */, + ECF4C13511434F4B00B7C09B /* tsip_dialog_invite.h in Headers */, + ECF4C13611434F4B00B7C09B /* tsip_dialog_layer.h in Headers */, + ECF4C13711434F4B00B7C09B /* tsip_dialog_message.h in Headers */, + ECF4C13811434F4B00B7C09B /* tsip_dialog_publish.h in Headers */, + ECF4C13911434F4B00B7C09B /* tsip_dialog_register.h in Headers */, + ECF4C13A11434F4B00B7C09B /* tsip_dialog_subscribe.h in Headers */, + ECF4C13B11434F4B00B7C09B /* tsip_header.h in Headers */, + ECF4C13C11434F4B00B7C09B /* tsip_header_accept.h in Headers */, + ECF4C13D11434F4B00B7C09B /* tsip_header_Accept_Contact.h in Headers */, + ECF4C13E11434F4B00B7C09B /* tsip_header_Accept_Encoding.h in Headers */, + ECF4C13F11434F4B00B7C09B /* tsip_header_Accept_Language.h in Headers */, + ECF4C14011434F4B00B7C09B /* tsip_header_Accept_Resource_Priority.h in Headers */, + ECF4C14111434F4B00B7C09B /* tsip_header_Alert_Info.h in Headers */, + ECF4C14211434F4B00B7C09B /* tsip_header_Allow.h in Headers */, + ECF4C14311434F4B00B7C09B /* tsip_header_Allow_Events.h in Headers */, + ECF4C14411434F4B00B7C09B /* tsip_header_Authentication_Info.h in Headers */, + ECF4C14511434F4B00B7C09B /* tsip_header_Authorization.h in Headers */, + ECF4C14611434F4B00B7C09B /* tsip_header_Call_ID.h in Headers */, + ECF4C14711434F4B00B7C09B /* tsip_header_Call_Info.h in Headers */, + ECF4C14811434F4B00B7C09B /* tsip_header_Contact.h in Headers */, + ECF4C14911434F4B00B7C09B /* tsip_header_Content_Disposition.h in Headers */, + ECF4C14A11434F4B00B7C09B /* tsip_header_Content_Encoding.h in Headers */, + ECF4C14B11434F4B00B7C09B /* tsip_header_Content_Language.h in Headers */, + ECF4C14C11434F4B00B7C09B /* tsip_header_Content_Length.h in Headers */, + ECF4C14D11434F4B00B7C09B /* tsip_header_Content_Type.h in Headers */, + ECF4C14E11434F4B00B7C09B /* tsip_header_CSeq.h in Headers */, + ECF4C14F11434F4B00B7C09B /* tsip_header_Date.h in Headers */, + ECF4C15011434F4B00B7C09B /* tsip_header_Dummy.h in Headers */, + ECF4C15111434F4B00B7C09B /* tsip_header_Error_Info.h in Headers */, + ECF4C15211434F4B00B7C09B /* tsip_header_Event.h in Headers */, + ECF4C15311434F4B00B7C09B /* tsip_header_Expires.h in Headers */, + ECF4C15411434F4B00B7C09B /* tsip_header_From.h in Headers */, + ECF4C15511434F4B00B7C09B /* tsip_header_History_Info.h in Headers */, + ECF4C15611434F4B00B7C09B /* tsip_header_Identity.h in Headers */, + ECF4C15711434F4B00B7C09B /* tsip_header_Identity_Info.h in Headers */, + ECF4C15811434F4B00B7C09B /* tsip_header_In_Reply_To.h in Headers */, + ECF4C15911434F4B00B7C09B /* tsip_header_Join.h in Headers */, + ECF4C15A11434F4B00B7C09B /* tsip_header_Max_Forwards.h in Headers */, + ECF4C15B11434F4B00B7C09B /* tsip_header_MIME_Version.h in Headers */, + ECF4C15C11434F4B00B7C09B /* tsip_header_Min_Expires.h in Headers */, + ECF4C15D11434F4B00B7C09B /* tsip_header_Min_SE.h in Headers */, + ECF4C15E11434F4B00B7C09B /* tsip_header_Organization.h in Headers */, + ECF4C15F11434F4B00B7C09B /* tsip_header_P_Access_Network_Info.h in Headers */, + ECF4C16011434F4B00B7C09B /* tsip_header_P_Answer_State.h in Headers */, + ECF4C16111434F4B00B7C09B /* tsip_header_P_Asserted_Identity.h in Headers */, + ECF4C16211434F4B00B7C09B /* tsip_header_P_Associated_URI.h in Headers */, + ECF4C16311434F4B00B7C09B /* tsip_header_P_Called_Party_ID.h in Headers */, + ECF4C16411434F4B00B7C09B /* tsip_header_P_Charging_Function_Addresses.h in Headers */, + ECF4C16511434F4B00B7C09B /* tsip_header_P_Charging_Vector.h in Headers */, + ECF4C16611434F4B00B7C09B /* tsip_header_P_DCS_Billing_Info.h in Headers */, + ECF4C16711434F4B00B7C09B /* tsip_header_P_DCS_LAES.h in Headers */, + ECF4C16811434F4B00B7C09B /* tsip_header_P_DCS_OSPS.h in Headers */, + ECF4C16911434F4B00B7C09B /* tsip_header_P_DCS_Redirect.h in Headers */, + ECF4C16A11434F4B00B7C09B /* tsip_header_P_DCS_Trace_Party_ID.h in Headers */, + ECF4C16B11434F4B00B7C09B /* tsip_header_P_Early_Media.h in Headers */, + ECF4C16C11434F4B00B7C09B /* tsip_header_P_Media_Authorization.h in Headers */, + ECF4C16D11434F4B00B7C09B /* tsip_header_P_Preferred_Identity.h in Headers */, + ECF4C16E11434F4B00B7C09B /* tsip_header_P_Profile_Key.h in Headers */, + ECF4C16F11434F4B00B7C09B /* tsip_header_P_User_Database.h in Headers */, + ECF4C17011434F4B00B7C09B /* tsip_header_P_Visited_Network_ID.h in Headers */, + ECF4C17111434F4B00B7C09B /* tsip_header_Path.h in Headers */, + ECF4C17211434F4B00B7C09B /* tsip_header_Priority.h in Headers */, + ECF4C17311434F4B00B7C09B /* tsip_header_Privacy.h in Headers */, + ECF4C17411434F4B00B7C09B /* tsip_header_Proxy_Authenticate.h in Headers */, + ECF4C17511434F4B00B7C09B /* tsip_header_Proxy_Authorization.h in Headers */, + ECF4C17611434F4B00B7C09B /* tsip_header_Proxy_Require.h in Headers */, + ECF4C17711434F4B00B7C09B /* tsip_header_RAck.h in Headers */, + ECF4C17811434F4B00B7C09B /* tsip_header_Reason.h in Headers */, + ECF4C17911434F4B00B7C09B /* tsip_header_Record_Route.h in Headers */, + ECF4C17A11434F4B00B7C09B /* tsip_header_Refer_Sub.h in Headers */, + ECF4C17B11434F4B00B7C09B /* tsip_header_Refer_To.h in Headers */, + ECF4C17C11434F4B00B7C09B /* tsip_header_Referred_By.h in Headers */, + ECF4C17D11434F4B00B7C09B /* tsip_header_Reject_Contact.h in Headers */, + ECF4C17E11434F4B00B7C09B /* tsip_header_Replaces.h in Headers */, + ECF4C17F11434F4B00B7C09B /* tsip_header_Reply_To.h in Headers */, + ECF4C18011434F4B00B7C09B /* tsip_header_Request_Disposition.h in Headers */, + ECF4C18111434F4B00B7C09B /* tsip_header_Require.h in Headers */, + ECF4C18211434F4B00B7C09B /* tsip_header_Resource_Priority.h in Headers */, + ECF4C18311434F4B00B7C09B /* tsip_header_Retry_After.h in Headers */, + ECF4C18411434F4B00B7C09B /* tsip_header_Route.h in Headers */, + ECF4C18511434F4B00B7C09B /* tsip_header_RSeq.h in Headers */, + ECF4C18611434F4B00B7C09B /* tsip_header_Security_Client.h in Headers */, + ECF4C18711434F4B00B7C09B /* tsip_header_Security_Server.h in Headers */, + ECF4C18811434F4B00B7C09B /* tsip_header_Security_Verify.h in Headers */, + ECF4C18911434F4B00B7C09B /* tsip_header_Server.h in Headers */, + ECF4C18A11434F4B00B7C09B /* tsip_header_Service_Route.h in Headers */, + ECF4C18B11434F4B00B7C09B /* tsip_header_Session_Expires.h in Headers */, + ECF4C18C11434F4B00B7C09B /* tsip_header_SIP_ETag.h in Headers */, + ECF4C18D11434F4B00B7C09B /* tsip_header_SIP_If_Match.h in Headers */, + ECF4C18E11434F4B00B7C09B /* tsip_header_Subject.h in Headers */, + ECF4C18F11434F4B00B7C09B /* tsip_header_Subscription_State.h in Headers */, + ECF4C19011434F4B00B7C09B /* tsip_header_Supported.h in Headers */, + ECF4C19111434F4B00B7C09B /* tsip_header_Target_Dialog.h in Headers */, + ECF4C19211434F4B00B7C09B /* tsip_header_Timestamp.h in Headers */, + ECF4C19311434F4B00B7C09B /* tsip_header_To.h in Headers */, + ECF4C19411434F4B00B7C09B /* tsip_header_Unsupported.h in Headers */, + ECF4C19511434F4B00B7C09B /* tsip_header_User_Agent.h in Headers */, + ECF4C19611434F4B00B7C09B /* tsip_header_Via.h in Headers */, + ECF4C19711434F4B00B7C09B /* tsip_header_Warning.h in Headers */, + ECF4C19811434F4B00B7C09B /* tsip_header_WWW_Authenticate.h in Headers */, + ECF4C19911434F4B00B7C09B /* tsip_headers.h in Headers */, + ECF4C19A11434F4B00B7C09B /* tsip_parser_header.h in Headers */, + ECF4C19B11434F4B00B7C09B /* tsip_parser_message.h in Headers */, + ECF4C19C11434F4B00B7C09B /* tsip_parser_uri.h in Headers */, + ECF4C19D11434F4B00B7C09B /* tsip_transac.h in Headers */, + ECF4C19E11434F4B00B7C09B /* tsip_transac_ict.h in Headers */, + ECF4C19F11434F4B00B7C09B /* tsip_transac_ist.h in Headers */, + ECF4C1A011434F4B00B7C09B /* tsip_transac_layer.h in Headers */, + ECF4C1A111434F4B00B7C09B /* tsip_transac_nict.h in Headers */, + ECF4C1A211434F4B00B7C09B /* tsip_transac_nist.h in Headers */, + ECF4C1A311434F4B00B7C09B /* tsip_transport.h in Headers */, + ECF4C1A411434F4B00B7C09B /* tsip_transport_ipsec.h in Headers */, + ECF4C1A511434F4B00B7C09B /* tsip_transport_layer.h in Headers */, + ECF4C1A611434F4B00B7C09B /* tsip_transport_tls.h in Headers */, + ECF4C1A711434F4B00B7C09B /* tsip_event.h in Headers */, + ECF4C1A811434F4B00B7C09B /* tsip_message.h in Headers */, + ECF4C1A911434F4B00B7C09B /* tsip_operation.h in Headers */, + ECF4C1AA11434F4B00B7C09B /* tsip_timers.h in Headers */, + ECF4C1AB11434F4B00B7C09B /* tsip_uri.h in Headers */, + ECF4C1AC11434F4B00B7C09B /* tinysip_config.h in Headers */, + ECF4C1AD11434F4B00B7C09B /* tsip.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2256,38 +2037,36 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - ECED682310F996F6006B4DC9 /* tinySAK_config.h in Headers */, - ECED682510F996F6006B4DC9 /* tsk.h in Headers */, - ECED682710F996F6006B4DC9 /* tsk_base64.h in Headers */, - ECED682910F996F6006B4DC9 /* tsk_binaryutils.h in Headers */, - ECED682B10F996F6006B4DC9 /* tsk_buffer.h in Headers */, - ECED682D10F996F6006B4DC9 /* tsk_condwait.h in Headers */, - ECED682F10F996F6006B4DC9 /* tsk_debug.h in Headers */, - ECED683010F996F6006B4DC9 /* tsk_errno.h in Headers */, - ECED683210F996F6006B4DC9 /* tsk_heap.h in Headers */, - ECED683410F996F6006B4DC9 /* tsk_hmac.h in Headers */, - ECED683610F996F6006B4DC9 /* tsk_list.h in Headers */, - ECED683710F996F6006B4DC9 /* tsk_macros.h in Headers */, - ECED683910F996F6006B4DC9 /* tsk_md5.h in Headers */, - ECED683B10F996F6006B4DC9 /* tsk_memory.h in Headers */, - ECED683D10F996F6006B4DC9 /* tsk_mutex.h in Headers */, - ECED683F10F996F6006B4DC9 /* tsk_object.h in Headers */, - ECED684110F996F6006B4DC9 /* tsk_params.h in Headers */, - ECED684310F996F6006B4DC9 /* tsk_ppfcs16.h in Headers */, - ECED684510F996F6006B4DC9 /* tsk_runnable.h in Headers */, - ECED684710F996F6006B4DC9 /* tsk_safeobj.h in Headers */, - ECED684910F996F6006B4DC9 /* tsk_semaphore.h in Headers */, - ECED684B10F996F6006B4DC9 /* tsk_sha1.h in Headers */, - ECED684D10F996F6006B4DC9 /* tsk_string.h in Headers */, - ECED684F10F996F6006B4DC9 /* tsk_thread.h in Headers */, - ECED685110F996F6006B4DC9 /* tsk_time.h in Headers */, - ECED685310F996F6006B4DC9 /* tsk_timer.h in Headers */, - ECED685510F996F6006B4DC9 /* tsk_url.h in Headers */, - ECED685710F996F6006B4DC9 /* tsk_xml.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 */, + ECF4C5FB11434F9500B7C09B /* tinySAK_config.h in Headers */, + ECF4C5FD11434F9500B7C09B /* tsk.h in Headers */, + ECF4C5FF11434F9500B7C09B /* tsk_base64.h in Headers */, + ECF4C60111434F9500B7C09B /* tsk_binaryutils.h in Headers */, + ECF4C60311434F9500B7C09B /* tsk_buffer.h in Headers */, + ECF4C60511434F9500B7C09B /* tsk_condwait.h in Headers */, + ECF4C60711434F9500B7C09B /* tsk_debug.h in Headers */, + ECF4C60811434F9500B7C09B /* tsk_errno.h in Headers */, + ECF4C60A11434F9500B7C09B /* tsk_fsm.h in Headers */, + ECF4C60C11434F9500B7C09B /* tsk_hmac.h in Headers */, + ECF4C60E11434F9500B7C09B /* tsk_list.h in Headers */, + ECF4C61011434F9500B7C09B /* tsk_md5.h in Headers */, + ECF4C61211434F9500B7C09B /* tsk_memory.h in Headers */, + ECF4C61411434F9500B7C09B /* tsk_mutex.h in Headers */, + ECF4C61611434F9500B7C09B /* tsk_object.h in Headers */, + ECF4C61811434F9500B7C09B /* tsk_params.h in Headers */, + ECF4C61A11434F9500B7C09B /* tsk_ppfcs16.h in Headers */, + ECF4C61C11434F9500B7C09B /* tsk_ppfcs32.h in Headers */, + ECF4C61E11434F9500B7C09B /* tsk_ragel_state.h in Headers */, + ECF4C62011434F9500B7C09B /* tsk_runnable.h in Headers */, + ECF4C62211434F9500B7C09B /* tsk_safeobj.h in Headers */, + ECF4C62411434F9500B7C09B /* tsk_semaphore.h in Headers */, + ECF4C62611434F9500B7C09B /* tsk_sha1.h in Headers */, + ECF4C62811434F9500B7C09B /* tsk_string.h in Headers */, + ECF4C62A11434F9500B7C09B /* tsk_thread.h in Headers */, + ECF4C62C11434F9500B7C09B /* tsk_time.h in Headers */, + ECF4C62E11434F9500B7C09B /* tsk_timer.h in Headers */, + ECF4C63011434F9500B7C09B /* tsk_url.h in Headers */, + ECF4C63211434F9500B7C09B /* tsk_uuid.h in Headers */, + ECF4C63411434F9500B7C09B /* tsk_xml.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2295,46 +2074,47 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 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 */, + ECF4C89A11434FEA00B7C09B /* tnet_dhcp.h in Headers */, + ECF4C89C11434FEA00B7C09B /* tnet_dhcp_message.h in Headers */, + ECF4C89E11434FEA00B7C09B /* tnet_dhcp_option.h in Headers */, + ECF4C8A011434FEA00B7C09B /* tnet_dhcp_option_sip.h in Headers */, + ECF4C8A211434FEA00B7C09B /* tnet_dhcp6.h in Headers */, + ECF4C8A411434FEA00B7C09B /* tnet_dhcp6_duid.h in Headers */, + ECF4C8A611434FEA00B7C09B /* tnet_dhcp6_message.h in Headers */, + ECF4C8A811434FEA00B7C09B /* tnet_dhcp6_option.h in Headers */, + ECF4C8AA11434FEA00B7C09B /* tnet_dns.h in Headers */, + ECF4C8AC11434FEA00B7C09B /* tnet_dns_a.h in Headers */, + ECF4C8AE11434FEA00B7C09B /* tnet_dns_aaaa.h in Headers */, + ECF4C8B011434FEA00B7C09B /* tnet_dns_cname.h in Headers */, + ECF4C8B211434FEA00B7C09B /* tnet_dns_message.h in Headers */, + ECF4C8B411434FEA00B7C09B /* tnet_dns_mx.h in Headers */, + ECF4C8B611434FEA00B7C09B /* tnet_dns_naptr.h in Headers */, + ECF4C8B811434FEA00B7C09B /* tnet_dns_ns.h in Headers */, + ECF4C8BA11434FEA00B7C09B /* tnet_dns_opt.h in Headers */, + ECF4C8BC11434FEA00B7C09B /* tnet_dns_ptr.h in Headers */, + ECF4C8BE11434FEA00B7C09B /* tnet_dns_rr.h in Headers */, + ECF4C8C011434FEA00B7C09B /* tnet_dns_soa.h in Headers */, + ECF4C8C211434FEA00B7C09B /* tnet_dns_srv.h in Headers */, + ECF4C8C411434FEA00B7C09B /* tnet_dns_txt.h in Headers */, + ECF4C8C611434FEA00B7C09B /* tnet_ice.h in Headers */, + ECF4C8C911434FEA00B7C09B /* tnet_stun.h in Headers */, + ECF4C8CB11434FEA00B7C09B /* tnet_stun_attribute.h in Headers */, + ECF4C8CD11434FEA00B7C09B /* tnet_stun_message.h in Headers */, + ECF4C8CE11434FEA00B7C09B /* tinyNET_config.h in Headers */, + ECF4C8D011434FEA00B7C09B /* tnet_tls.h in Headers */, + ECF4C8D211434FEA00B7C09B /* tnet.h in Headers */, + ECF4C8D411434FEA00B7C09B /* tnet_auth.h in Headers */, + ECF4C8D511434FEA00B7C09B /* tnet_hardwares.h in Headers */, + ECF4C8D711434FEA00B7C09B /* tnet_nat.h in Headers */, + ECF4C8D911434FEA00B7C09B /* tnet_poll.h in Headers */, + ECF4C8DA11434FEA00B7C09B /* tnet_proto.h in Headers */, + ECF4C8DC11434FEA00B7C09B /* tnet_socket.h in Headers */, + ECF4C8DE11434FEA00B7C09B /* tnet_transport.h in Headers */, + ECF4C8E111434FEA00B7C09B /* tnet_types.h in Headers */, + ECF4C8E311434FEA00B7C09B /* tnet_utils.h in Headers */, + ECF4C8E511434FEA00B7C09B /* tnet_turn.h in Headers */, + ECF4C8E711434FEA00B7C09B /* tnet_turn_attribute.h in Headers */, + ECF4C8E911434FEA00B7C09B /* tnet_turn_message.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2342,20 +2122,24 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 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 */, + ECF4BF5D11434EFE00B7C09B /* thttp.h in Headers */, + ECF4BF5E11434EFE00B7C09B /* thttp_auth.h in Headers */, + ECF4BF5F11434EFE00B7C09B /* thttp_header.h in Headers */, + ECF4BF6011434EFE00B7C09B /* thttp_header_Authorization.h in Headers */, + ECF4BF6111434EFE00B7C09B /* thttp_header_Content_Length.h in Headers */, + ECF4BF6211434EFE00B7C09B /* thttp_header_Content_Type.h in Headers */, + ECF4BF6311434EFE00B7C09B /* thttp_header_Dummy.h in Headers */, + ECF4BF6411434EFE00B7C09B /* thttp_header_Proxy_Authenticate.h in Headers */, + ECF4BF6511434EFE00B7C09B /* thttp_header_WWW_Authenticate.h in Headers */, + ECF4BF6611434EFE00B7C09B /* thttp_parser_header.h in Headers */, + ECF4BF6711434EFE00B7C09B /* thttp_parser_message.h in Headers */, + ECF4BF6811434EFE00B7C09B /* thttp_parser_url.h in Headers */, + ECF4BF6911434EFE00B7C09B /* thttp_event.h in Headers */, + ECF4BF6A11434EFE00B7C09B /* thttp_message.h in Headers */, + ECF4BF6B11434EFE00B7C09B /* thttp_operation.h in Headers */, + ECF4BF6C11434EFE00B7C09B /* thttp_transport.h in Headers */, + ECF4BF6D11434EFE00B7C09B /* thttp_url.h in Headers */, + ECF4BF6E11434EFE00B7C09B /* tinyhttp_config.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2389,6 +2173,7 @@ ECED689210F99880006B4DC9 /* PBXTargetDependency */, ECED689410F99880006B4DC9 /* PBXTargetDependency */, ECED68C310F99975006B4DC9 /* PBXTargetDependency */, + ECF4C9021143505C00B7C09B /* PBXTargetDependency */, ); name = tinySIP; productName = tinySIP; @@ -2442,6 +2227,7 @@ ); dependencies = ( ECED6AF110F9A68B006B4DC9 /* PBXTargetDependency */, + ECF4C8FD1143502C00B7C09B /* PBXTargetDependency */, ); name = tinyHTTP; productName = tinyHTTP; @@ -2512,134 +2298,137 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 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 */, + ECF4C1AE11434F4B00B7C09B /* tsip_api_invite.c in Sources */, + ECF4C1AF11434F4B00B7C09B /* tsip_api_message.c in Sources */, + ECF4C1B011434F4B00B7C09B /* tsip_api_publish.c in Sources */, + ECF4C1B111434F4B00B7C09B /* tsip_api_register.c in Sources */, + ECF4C1B211434F4B00B7C09B /* tsip_api_subscribe.c in Sources */, + ECF4C1B311434F4B00B7C09B /* tsip_challenge.c in Sources */, + ECF4C1B411434F4B00B7C09B /* tsip_milenage.c in Sources */, + ECF4C1B511434F4B00B7C09B /* tsip_rijndael.c in Sources */, + ECF4C1B611434F4B00B7C09B /* tsip_dialog.c in Sources */, + ECF4C1B711434F4B00B7C09B /* tsip_dialog_invite.client.c in Sources */, + ECF4C1B811434F4B00B7C09B /* tsip_dialog_invite.server.c in Sources */, + ECF4C1B911434F4B00B7C09B /* tsip_dialog_layer.c in Sources */, + ECF4C1BA11434F4B00B7C09B /* tsip_dialog_message.c in Sources */, + ECF4C1BB11434F4B00B7C09B /* tsip_dialog_publish.client.c in Sources */, + ECF4C1BC11434F4B00B7C09B /* tsip_dialog_register.client.c in Sources */, + ECF4C1BD11434F4B00B7C09B /* tsip_dialog_register.server.c in Sources */, + ECF4C1BE11434F4B00B7C09B /* tsip_dialog_subscribe.client.c in Sources */, + ECF4C1BF11434F4B00B7C09B /* tsip_dialog_subscribe.server.c in Sources */, + ECF4C1C011434F4B00B7C09B /* tsip_header.c in Sources */, + ECF4C1C111434F4B00B7C09B /* tsip_header_accept.c in Sources */, + ECF4C1C211434F4B00B7C09B /* tsip_header_Accept_Contact.c in Sources */, + ECF4C1C311434F4B00B7C09B /* tsip_header_Accept_Encoding.c in Sources */, + ECF4C1C411434F4B00B7C09B /* tsip_header_Accept_Language.c in Sources */, + ECF4C1C511434F4B00B7C09B /* tsip_header_Accept_Resource_Priority.c in Sources */, + ECF4C1C611434F4B00B7C09B /* tsip_header_Alert_Info.c in Sources */, + ECF4C1C711434F4B00B7C09B /* tsip_header_Allow.c in Sources */, + ECF4C1C811434F4B00B7C09B /* tsip_header_Allow_Events.c in Sources */, + ECF4C1C911434F4B00B7C09B /* tsip_header_Authentication_Info.c in Sources */, + ECF4C1CA11434F4B00B7C09B /* tsip_header_Authorization.c in Sources */, + ECF4C1CB11434F4B00B7C09B /* tsip_header_Call_ID.c in Sources */, + ECF4C1CC11434F4B00B7C09B /* tsip_header_Call_Info.c in Sources */, + ECF4C1CD11434F4B00B7C09B /* tsip_header_Contact.c in Sources */, + ECF4C1CE11434F4B00B7C09B /* tsip_header_Content_Disposition.c in Sources */, + ECF4C1CF11434F4B00B7C09B /* tsip_header_Content_Encoding.c in Sources */, + ECF4C1D011434F4B00B7C09B /* tsip_header_Content_Language.c in Sources */, + ECF4C1D111434F4B00B7C09B /* tsip_header_Content_Length.c in Sources */, + ECF4C1D211434F4B00B7C09B /* tsip_header_Content_Type.c in Sources */, + ECF4C1D311434F4B00B7C09B /* tsip_header_CSeq.c in Sources */, + ECF4C1D411434F4B00B7C09B /* tsip_header_Date.c in Sources */, + ECF4C1D511434F4B00B7C09B /* tsip_header_Dummy.c in Sources */, + ECF4C1D611434F4B00B7C09B /* tsip_header_Error_Info.c in Sources */, + ECF4C1D711434F4B00B7C09B /* tsip_header_Event.c in Sources */, + ECF4C1D811434F4B00B7C09B /* tsip_header_Expires.c in Sources */, + ECF4C1D911434F4B00B7C09B /* tsip_header_From.c in Sources */, + ECF4C1DA11434F4B00B7C09B /* tsip_header_History_Info.c in Sources */, + ECF4C1DB11434F4B00B7C09B /* tsip_header_Identity.c in Sources */, + ECF4C1DC11434F4B00B7C09B /* tsip_header_Identity_Info.c in Sources */, + ECF4C1DD11434F4B00B7C09B /* tsip_header_In_Reply_To.c in Sources */, + ECF4C1DE11434F4B00B7C09B /* tsip_header_Join.c in Sources */, + ECF4C1DF11434F4B00B7C09B /* tsip_header_Max_Forwards.c in Sources */, + ECF4C1E011434F4B00B7C09B /* tsip_header_MIME_Version.c in Sources */, + ECF4C1E111434F4B00B7C09B /* tsip_header_Min_Expires.c in Sources */, + ECF4C1E211434F4B00B7C09B /* tsip_header_Min_SE.c in Sources */, + ECF4C1E311434F4B00B7C09B /* tsip_header_Organization.c in Sources */, + ECF4C1E411434F4B00B7C09B /* tsip_header_P_Access_Network_Info.c in Sources */, + ECF4C1E511434F4B00B7C09B /* tsip_header_P_Answer_State.c in Sources */, + ECF4C1E611434F4B00B7C09B /* tsip_header_P_Asserted_Identity.c in Sources */, + ECF4C1E711434F4B00B7C09B /* tsip_header_P_Associated_URI.c in Sources */, + ECF4C1E811434F4B00B7C09B /* tsip_header_P_Called_Party_ID.c in Sources */, + ECF4C1E911434F4B00B7C09B /* tsip_header_P_Charging_Function_Addresses.c in Sources */, + ECF4C1EA11434F4B00B7C09B /* tsip_header_P_Charging_Vector.c in Sources */, + ECF4C1EB11434F4B00B7C09B /* tsip_header_P_DCS_Billing_Info.c in Sources */, + ECF4C1EC11434F4B00B7C09B /* tsip_header_P_DCS_LAES.c in Sources */, + ECF4C1ED11434F4B00B7C09B /* tsip_header_P_DCS_OSPS.c in Sources */, + ECF4C1EE11434F4B00B7C09B /* tsip_header_P_DCS_Redirect.c in Sources */, + ECF4C1EF11434F4B00B7C09B /* tsip_header_P_DCS_Trace_Party_ID.c in Sources */, + ECF4C1F011434F4B00B7C09B /* tsip_header_P_Early_Media.c in Sources */, + ECF4C1F111434F4B00B7C09B /* tsip_header_P_Media_Authorization.c in Sources */, + ECF4C1F211434F4B00B7C09B /* tsip_header_P_Preferred_Identity.c in Sources */, + ECF4C1F311434F4B00B7C09B /* tsip_header_P_Profile_Key.c in Sources */, + ECF4C1F411434F4B00B7C09B /* tsip_header_P_User_Database.c in Sources */, + ECF4C1F511434F4B00B7C09B /* tsip_header_P_Visited_Network_ID.c in Sources */, + ECF4C1F611434F4B00B7C09B /* tsip_header_Path.c in Sources */, + ECF4C1F711434F4B00B7C09B /* tsip_header_Priority.c in Sources */, + ECF4C1F811434F4B00B7C09B /* tsip_header_Privacy.c in Sources */, + ECF4C1F911434F4B00B7C09B /* tsip_header_Proxy_Authenticate.c in Sources */, + ECF4C1FA11434F4B00B7C09B /* tsip_header_Proxy_Authorization.c in Sources */, + ECF4C1FB11434F4B00B7C09B /* tsip_header_Proxy_Require.c in Sources */, + ECF4C1FC11434F4B00B7C09B /* tsip_header_RAck.c in Sources */, + ECF4C1FD11434F4B00B7C09B /* tsip_header_Reason.c in Sources */, + ECF4C1FE11434F4B00B7C09B /* tsip_header_Record_Route.c in Sources */, + ECF4C1FF11434F4B00B7C09B /* tsip_header_Refer_Sub.c in Sources */, + ECF4C20011434F4B00B7C09B /* tsip_header_Refer_To.c in Sources */, + ECF4C20111434F4B00B7C09B /* tsip_header_Referred_By.c in Sources */, + ECF4C20211434F4B00B7C09B /* tsip_header_Reject_Contact.c in Sources */, + ECF4C20311434F4B00B7C09B /* tsip_header_Replaces.c in Sources */, + ECF4C20411434F4B00B7C09B /* tsip_header_Reply_To.c in Sources */, + ECF4C20511434F4B00B7C09B /* tsip_header_Request_Disposition.c in Sources */, + ECF4C20611434F4B00B7C09B /* tsip_header_Require.c in Sources */, + ECF4C20711434F4B00B7C09B /* tsip_header_Resource_Priority.c in Sources */, + ECF4C20811434F4B00B7C09B /* tsip_header_Retry_After.c in Sources */, + ECF4C20911434F4B00B7C09B /* tsip_header_Route.c in Sources */, + ECF4C20A11434F4B00B7C09B /* tsip_header_RSeq.c in Sources */, + ECF4C20B11434F4B00B7C09B /* tsip_header_Security_Client.c in Sources */, + ECF4C20C11434F4B00B7C09B /* tsip_header_Security_Server.c in Sources */, + ECF4C20D11434F4B00B7C09B /* tsip_header_Security_Verify.c in Sources */, + ECF4C20E11434F4B00B7C09B /* tsip_header_Server.c in Sources */, + ECF4C20F11434F4B00B7C09B /* tsip_header_Service_Route.c in Sources */, + ECF4C21011434F4B00B7C09B /* tsip_header_Session_Expires.c in Sources */, + ECF4C21111434F4B00B7C09B /* tsip_header_SIP_ETag.c in Sources */, + ECF4C21211434F4B00B7C09B /* tsip_header_SIP_If_Match.c in Sources */, + ECF4C21311434F4B00B7C09B /* tsip_header_Subject.c in Sources */, + ECF4C21411434F4B00B7C09B /* tsip_header_Subscription_State.c in Sources */, + ECF4C21511434F4B00B7C09B /* tsip_header_Supported.c in Sources */, + ECF4C21611434F4B00B7C09B /* tsip_header_Target_Dialog.c in Sources */, + ECF4C21711434F4B00B7C09B /* tsip_header_Timestamp.c in Sources */, + ECF4C21811434F4B00B7C09B /* tsip_header_To.c in Sources */, + ECF4C21911434F4B00B7C09B /* tsip_header_Unsupported.c in Sources */, + ECF4C21A11434F4B00B7C09B /* tsip_header_User_Agent.c in Sources */, + ECF4C21B11434F4B00B7C09B /* tsip_header_Via.c in Sources */, + ECF4C21C11434F4B00B7C09B /* tsip_header_Warning.c in Sources */, + ECF4C21D11434F4B00B7C09B /* tsip_header_WWW_Authenticate.c in Sources */, + ECF4C21F11434F4B00B7C09B /* tsip_parser_header.c in Sources */, + ECF4C22011434F4B00B7C09B /* tsip_parser_message.c in Sources */, + ECF4C22111434F4B00B7C09B /* tsip_parser_uri.c in Sources */, + ECF4C22211434F4B00B7C09B /* tsip_transac.c in Sources */, + ECF4C22311434F4B00B7C09B /* tsip_transac_ict.c in Sources */, + ECF4C22411434F4B00B7C09B /* tsip_transac_ist.c in Sources */, + ECF4C22511434F4B00B7C09B /* tsip_transac_layer.c in Sources */, + ECF4C22611434F4B00B7C09B /* tsip_transac_nict.c in Sources */, + ECF4C22711434F4B00B7C09B /* tsip_transac_nist.c in Sources */, + ECF4C22811434F4B00B7C09B /* tsip_transport.c in Sources */, + ECF4C22911434F4B00B7C09B /* tsip_transport_ipsec.c in Sources */, + ECF4C22A11434F4B00B7C09B /* tsip_transport_layer.c in Sources */, + ECF4C22B11434F4B00B7C09B /* tsip_transport_tls.c in Sources */, + ECF4C22C11434F4B00B7C09B /* tsip.c in Sources */, + ECF4C22D11434F4B00B7C09B /* tsip_event.c in Sources */, + ECF4C22E11434F4B00B7C09B /* tsip_message.c in Sources */, + ECF4C22F11434F4B00B7C09B /* tsip_operation.c in Sources */, + ECF4C23011434F4B00B7C09B /* tsip_timers.c in Sources */, + ECF4C23111434F4B00B7C09B /* tsip_uri.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2647,35 +2436,34 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ECED682410F996F6006B4DC9 /* tsk.c in Sources */, - ECED682610F996F6006B4DC9 /* tsk_base64.c in Sources */, - ECED682810F996F6006B4DC9 /* tsk_binaryutils.c in Sources */, - ECED682A10F996F6006B4DC9 /* tsk_buffer.c in Sources */, - ECED682C10F996F6006B4DC9 /* tsk_condwait.c in Sources */, - ECED682E10F996F6006B4DC9 /* tsk_debug.c in Sources */, - ECED683110F996F6006B4DC9 /* tsk_heap.c in Sources */, - ECED683310F996F6006B4DC9 /* tsk_hmac.c in Sources */, - ECED683510F996F6006B4DC9 /* tsk_list.c in Sources */, - ECED683810F996F6006B4DC9 /* tsk_md5.c in Sources */, - ECED683A10F996F6006B4DC9 /* tsk_memory.c in Sources */, - ECED683C10F996F6006B4DC9 /* tsk_mutex.c in Sources */, - ECED683E10F996F6006B4DC9 /* tsk_object.c in Sources */, - ECED684010F996F6006B4DC9 /* tsk_params.c in Sources */, - ECED684210F996F6006B4DC9 /* tsk_ppfcs16.c in Sources */, - ECED684410F996F6006B4DC9 /* tsk_runnable.c in Sources */, - ECED684610F996F6006B4DC9 /* tsk_safeobj.c in Sources */, - ECED684810F996F6006B4DC9 /* tsk_semaphore.c in Sources */, - ECED684A10F996F6006B4DC9 /* tsk_sha1.c in Sources */, - ECED684C10F996F6006B4DC9 /* tsk_string.c in Sources */, - ECED684E10F996F6006B4DC9 /* tsk_thread.c in Sources */, - ECED685010F996F6006B4DC9 /* tsk_time.c in Sources */, - 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 */, + ECF4C5FC11434F9500B7C09B /* tsk.c in Sources */, + ECF4C5FE11434F9500B7C09B /* tsk_base64.c in Sources */, + ECF4C60011434F9500B7C09B /* tsk_binaryutils.c in Sources */, + ECF4C60211434F9500B7C09B /* tsk_buffer.c in Sources */, + ECF4C60411434F9500B7C09B /* tsk_condwait.c in Sources */, + ECF4C60611434F9500B7C09B /* tsk_debug.c in Sources */, + ECF4C60911434F9500B7C09B /* tsk_fsm.c in Sources */, + ECF4C60B11434F9500B7C09B /* tsk_hmac.c in Sources */, + ECF4C60D11434F9500B7C09B /* tsk_list.c in Sources */, + ECF4C60F11434F9500B7C09B /* tsk_md5.c in Sources */, + ECF4C61111434F9500B7C09B /* tsk_memory.c in Sources */, + ECF4C61311434F9500B7C09B /* tsk_mutex.c in Sources */, + ECF4C61511434F9500B7C09B /* tsk_object.c in Sources */, + ECF4C61711434F9500B7C09B /* tsk_params.c in Sources */, + ECF4C61911434F9500B7C09B /* tsk_ppfcs16.c in Sources */, + ECF4C61B11434F9500B7C09B /* tsk_ppfcs32.c in Sources */, + ECF4C61D11434F9500B7C09B /* tsk_ragel_state.c in Sources */, + ECF4C61F11434F9500B7C09B /* tsk_runnable.c in Sources */, + ECF4C62111434F9500B7C09B /* tsk_safeobj.c in Sources */, + ECF4C62311434F9500B7C09B /* tsk_semaphore.c in Sources */, + ECF4C62511434F9500B7C09B /* tsk_sha1.c in Sources */, + ECF4C62711434F9500B7C09B /* tsk_string.c in Sources */, + ECF4C62911434F9500B7C09B /* tsk_thread.c in Sources */, + ECF4C62B11434F9500B7C09B /* tsk_time.c in Sources */, + ECF4C62D11434F9500B7C09B /* tsk_timer.c in Sources */, + ECF4C62F11434F9500B7C09B /* tsk_url.c in Sources */, + ECF4C63111434F9500B7C09B /* tsk_uuid.c in Sources */, + ECF4C63311434F9500B7C09B /* tsk_xml.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2683,44 +2471,45 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 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 */, + ECF4C89911434FEA00B7C09B /* tnet_dhcp.c in Sources */, + ECF4C89B11434FEA00B7C09B /* tnet_dhcp_message.c in Sources */, + ECF4C89D11434FEA00B7C09B /* tnet_dhcp_option.c in Sources */, + ECF4C89F11434FEA00B7C09B /* tnet_dhcp_option_sip.c in Sources */, + ECF4C8A111434FEA00B7C09B /* tnet_dhcp6.c in Sources */, + ECF4C8A311434FEA00B7C09B /* tnet_dhcp6_duid.c in Sources */, + ECF4C8A511434FEA00B7C09B /* tnet_dhcp6_message.c in Sources */, + ECF4C8A711434FEA00B7C09B /* tnet_dhcp6_option.c in Sources */, + ECF4C8A911434FEA00B7C09B /* tnet_dns.c in Sources */, + ECF4C8AB11434FEA00B7C09B /* tnet_dns_a.c in Sources */, + ECF4C8AD11434FEA00B7C09B /* tnet_dns_aaaa.c in Sources */, + ECF4C8AF11434FEA00B7C09B /* tnet_dns_cname.c in Sources */, + ECF4C8B111434FEA00B7C09B /* tnet_dns_message.c in Sources */, + ECF4C8B311434FEA00B7C09B /* tnet_dns_mx.c in Sources */, + ECF4C8B511434FEA00B7C09B /* tnet_dns_naptr.c in Sources */, + ECF4C8B711434FEA00B7C09B /* tnet_dns_ns.c in Sources */, + ECF4C8B911434FEA00B7C09B /* tnet_dns_opt.c in Sources */, + ECF4C8BB11434FEA00B7C09B /* tnet_dns_ptr.c in Sources */, + ECF4C8BD11434FEA00B7C09B /* tnet_dns_rr.c in Sources */, + ECF4C8BF11434FEA00B7C09B /* tnet_dns_soa.c in Sources */, + ECF4C8C111434FEA00B7C09B /* tnet_dns_srv.c in Sources */, + ECF4C8C311434FEA00B7C09B /* tnet_dns_txt.c in Sources */, + ECF4C8C511434FEA00B7C09B /* tnet_ice.c in Sources */, + ECF4C8C811434FEA00B7C09B /* tnet_stun.c in Sources */, + ECF4C8CA11434FEA00B7C09B /* tnet_stun_attribute.c in Sources */, + ECF4C8CC11434FEA00B7C09B /* tnet_stun_message.c in Sources */, + ECF4C8CF11434FEA00B7C09B /* tnet_tls.c in Sources */, + ECF4C8D111434FEA00B7C09B /* tnet.c in Sources */, + ECF4C8D311434FEA00B7C09B /* tnet_auth.c in Sources */, + ECF4C8D611434FEA00B7C09B /* tnet_nat.c in Sources */, + ECF4C8D811434FEA00B7C09B /* tnet_poll.c in Sources */, + ECF4C8DB11434FEA00B7C09B /* tnet_socket.c in Sources */, + ECF4C8DD11434FEA00B7C09B /* tnet_transport.c in Sources */, + ECF4C8DF11434FEA00B7C09B /* tnet_transport_poll.c in Sources */, + ECF4C8E011434FEA00B7C09B /* tnet_transport_win32.c in Sources */, + ECF4C8E211434FEA00B7C09B /* tnet_utils.c in Sources */, + ECF4C8E411434FEA00B7C09B /* tnet_turn.c in Sources */, + ECF4C8E611434FEA00B7C09B /* tnet_turn_attribute.c in Sources */, + ECF4C8E811434FEA00B7C09B /* tnet_turn_message.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2728,19 +2517,23 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 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 */, + ECF4BF6F11434EFE00B7C09B /* thttp_auth.c in Sources */, + ECF4BF7011434EFE00B7C09B /* thttp_header.c in Sources */, + ECF4BF7111434EFE00B7C09B /* thttp_header_Authorization.c in Sources */, + ECF4BF7211434EFE00B7C09B /* thttp_header_Content_Length.c in Sources */, + ECF4BF7311434EFE00B7C09B /* thttp_header_Content_Type.c in Sources */, + ECF4BF7411434EFE00B7C09B /* thttp_header_Dummy.c in Sources */, + ECF4BF7511434EFE00B7C09B /* thttp_header_Proxy_Authenticate.c in Sources */, + ECF4BF7611434EFE00B7C09B /* thttp_header_WWW_Authenticate.c in Sources */, + ECF4BF7811434EFE00B7C09B /* thttp_parser_header.c in Sources */, + ECF4BF7911434EFE00B7C09B /* thttp_parser_message.c in Sources */, + ECF4BF7A11434EFE00B7C09B /* thttp_parser_url.c in Sources */, + ECF4BF7B11434EFE00B7C09B /* thttp.c in Sources */, + ECF4BF7C11434EFE00B7C09B /* thttp_event.c in Sources */, + ECF4BF7D11434EFE00B7C09B /* thttp_message.c in Sources */, + ECF4BF7E11434EFE00B7C09B /* thttp_operation.c in Sources */, + ECF4BF7F11434EFE00B7C09B /* thttp_transport.c in Sources */, + ECF4BF8011434EFE00B7C09B /* thttp_url.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2813,6 +2606,16 @@ target = ECED689C10F998E4006B4DC9 /* tinyHTTP */; targetProxy = ECED6B0810F9A943006B4DC9 /* PBXContainerItemProxy */; }; + ECF4C8FD1143502C00B7C09B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = ECED686310F997F2006B4DC9 /* tinyNET */; + targetProxy = ECF4C8FC1143502C00B7C09B /* PBXContainerItemProxy */; + }; + ECF4C9021143505C00B7C09B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = ECF46DC011347F8100390CBE /* tinyIPSec */; + targetProxy = ECF4C9011143505C00B7C09B /* PBXContainerItemProxy */; + }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ @@ -2888,6 +2691,10 @@ GCC_MODEL_TUNING = G5; GCC_OPTIMIZATION_LEVEL = 0; INSTALL_PATH = /usr/local/lib; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/../../tinySAK/Debug\"", + ); PREBINDING = NO; PRODUCT_NAME = tinySAK; }; @@ -2903,6 +2710,10 @@ GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_MODEL_TUNING = G5; INSTALL_PATH = /usr/local/lib; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/../../tinySAK/Debug\"", + ); PREBINDING = NO; PRODUCT_NAME = tinySAK; ZERO_LINK = NO;