1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 45;
objects = {
/* Begin PBXBuildFile section */
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 */; };
ECED68C410F99979006B4DC9 /* libtinyHTTP.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED689D10F998E4006B4DC9 /* libtinyHTTP.dylib */; };
ECED6AF210F9A68F006B4DC9 /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED65E610F9968A006B4DC9 /* libtinySAK.dylib */; };
ECED6B0A10F9A94A006B4DC9 /* libtinyHTTP.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED689D10F998E4006B4DC9 /* libtinyHTTP.dylib */; };
ECED6B0B10F9A94A006B4DC9 /* libtinyNET.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED686410F997F2006B4DC9 /* libtinyNET.dylib */; };
ECED6B0C10F9A94A006B4DC9 /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED65E610F9968A006B4DC9 /* libtinySAK.dylib */; };
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 */; };
ECF46DC411347FAA00390CBE /* tipsec.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46D43113476BD00390CBE /* tipsec.c */; };
ECF46DC511347FAB00390CBE /* tipsec_xp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46D4B113476BD00390CBE /* tipsec_xp.c */; };
ECF46DC611347FAC00390CBE /* tipsec_xp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D4C113476BD00390CBE /* tipsec_xp.h */; };
ECF46DC711347FAC00390CBE /* tinyipsec_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D42113476BD00390CBE /* tinyipsec_config.h */; };
ECF46DC811347FAD00390CBE /* tipsec_common.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D46113476BD00390CBE /* tipsec_common.h */; };
ECF46DC911347FAD00390CBE /* tipsec_racoon.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46D47113476BD00390CBE /* tipsec_racoon.c */; };
ECF46DCA11347FAE00390CBE /* tipsec_racoon.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D48113476BD00390CBE /* tipsec_racoon.h */; };
ECF46DCB11347FAE00390CBE /* tipsec.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D44113476BD00390CBE /* tipsec.h */; };
ECF46DCC11347FAF00390CBE /* tipsec_vista.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46D49113476BD00390CBE /* tipsec_vista.c */; };
ECF46DCD11347FB100390CBE /* tipsec_common.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF46D45113476BD00390CBE /* tipsec_common.c */; };
ECF46DCE11347FB100390CBE /* tipsec_vista.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF46D4A113476BD00390CBE /* tipsec_vista.h */; };
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 */
ECED688D10F99866006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED65E510F99689006B4DC9;
remoteInfo = tinySAK;
};
ECED689110F99880006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED65E510F99689006B4DC9;
remoteInfo = tinySAK;
};
ECED689310F99880006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED686310F997F2006B4DC9;
remoteInfo = tinyNET;
};
ECED68C210F99975006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED689C10F998E4006B4DC9;
remoteInfo = tinyHTTP;
};
ECED6AF010F9A68B006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED65E510F99689006B4DC9;
remoteInfo = tinySAK;
};
ECED6B0210F9A943006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = D2AAC0620554660B00DB518D;
remoteInfo = tinySIP;
};
ECED6B0410F9A943006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED65E510F99689006B4DC9;
remoteInfo = tinySAK;
};
ECED6B0610F9A943006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED686310F997F2006B4DC9;
remoteInfo = tinyNET;
};
ECED6B0810F9A943006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED689C10F998E4006B4DC9;
remoteInfo = tinyHTTP;
};
ECF4C8FC1143502C00B7C09B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED686310F997F2006B4DC9;
remoteInfo = tinyNET;
};
ECF4C9011143505C00B7C09B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF46DC011347F8100390CBE;
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; };
ECED65E610F9968A006B4DC9 /* libtinySAK.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinySAK.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
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; };
ECED6B1010F9A971006B4DC9 /* stdafx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = stdafx.c; path = ../../tinySIP/test/test/stdafx.c; sourceTree = SOURCE_ROOT; };
ECED6B1110F9A971006B4DC9 /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stdafx.h; path = ../../tinySIP/test/test/stdafx.h; sourceTree = SOURCE_ROOT; };
ECED6B1210F9A971006B4DC9 /* targetver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = targetver.h; path = ../../tinySIP/test/test/targetver.h; sourceTree = SOURCE_ROOT; };
ECED6B1310F9A971006B4DC9 /* test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = test.c; path = ../../tinySIP/test/test/test.c; sourceTree = SOURCE_ROOT; };
ECED6B1410F9A971006B4DC9 /* test_sipmessages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_sipmessages.h; path = ../../tinySIP/test/test/test_sipmessages.h; sourceTree = SOURCE_ROOT; };
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; };
ECF46D42113476BD00390CBE /* tinyipsec_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyipsec_config.h; sourceTree = "<group>"; };
ECF46D43113476BD00390CBE /* tipsec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec.c; sourceTree = "<group>"; };
ECF46D44113476BD00390CBE /* tipsec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec.h; sourceTree = "<group>"; };
ECF46D45113476BD00390CBE /* tipsec_common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_common.c; sourceTree = "<group>"; };
ECF46D46113476BD00390CBE /* tipsec_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_common.h; sourceTree = "<group>"; };
ECF46D47113476BD00390CBE /* tipsec_racoon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_racoon.c; sourceTree = "<group>"; };
ECF46D48113476BD00390CBE /* tipsec_racoon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_racoon.h; sourceTree = "<group>"; };
ECF46D49113476BD00390CBE /* tipsec_vista.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_vista.c; sourceTree = "<group>"; };
ECF46D4A113476BD00390CBE /* tipsec_vista.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_vista.h; sourceTree = "<group>"; };
ECF46D4B113476BD00390CBE /* tipsec_xp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_xp.c; sourceTree = "<group>"; };
ECF46D4C113476BD00390CBE /* tipsec_xp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_xp.h; sourceTree = "<group>"; };
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 = "<group>"; };
ECF4BF1B11434EFE00B7C09B /* thttp_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_auth.h; sourceTree = "<group>"; };
ECF4BF1D11434EFE00B7C09B /* thttp_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header.h; sourceTree = "<group>"; };
ECF4BF1E11434EFE00B7C09B /* thttp_header_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Authorization.h; sourceTree = "<group>"; };
ECF4BF1F11434EFE00B7C09B /* thttp_header_Content_Length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Content_Length.h; sourceTree = "<group>"; };
ECF4BF2011434EFE00B7C09B /* thttp_header_Content_Type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Content_Type.h; sourceTree = "<group>"; };
ECF4BF2111434EFE00B7C09B /* thttp_header_Dummy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Dummy.h; sourceTree = "<group>"; };
ECF4BF2211434EFE00B7C09B /* thttp_header_Proxy_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Proxy_Authenticate.h; sourceTree = "<group>"; };
ECF4BF2311434EFE00B7C09B /* thttp_header_WWW_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_WWW_Authenticate.h; sourceTree = "<group>"; };
ECF4BF2511434EFE00B7C09B /* thttp_parser_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_header.h; sourceTree = "<group>"; };
ECF4BF2611434EFE00B7C09B /* thttp_parser_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_message.h; sourceTree = "<group>"; };
ECF4BF2711434EFE00B7C09B /* thttp_parser_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_url.h; sourceTree = "<group>"; };
ECF4BF2811434EFE00B7C09B /* thttp_event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_event.h; sourceTree = "<group>"; };
ECF4BF2911434EFE00B7C09B /* thttp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_message.h; sourceTree = "<group>"; };
ECF4BF2A11434EFE00B7C09B /* thttp_operation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_operation.h; sourceTree = "<group>"; };
ECF4BF2B11434EFE00B7C09B /* thttp_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_transport.h; sourceTree = "<group>"; };
ECF4BF2C11434EFE00B7C09B /* thttp_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_url.h; sourceTree = "<group>"; };
ECF4BF2D11434EFE00B7C09B /* tinyhttp_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyhttp_config.h; sourceTree = "<group>"; };
ECF4BF3D11434EFE00B7C09B /* thttp_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_auth.c; sourceTree = "<group>"; };
ECF4BF3F11434EFE00B7C09B /* thttp_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header.c; sourceTree = "<group>"; };
ECF4BF4011434EFE00B7C09B /* thttp_header_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Authorization.c; sourceTree = "<group>"; };
ECF4BF4111434EFE00B7C09B /* thttp_header_Content_Length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Length.c; sourceTree = "<group>"; };
ECF4BF4211434EFE00B7C09B /* thttp_header_Content_Type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Type.c; sourceTree = "<group>"; };
ECF4BF4311434EFE00B7C09B /* thttp_header_Dummy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Dummy.c; sourceTree = "<group>"; };
ECF4BF4411434EFE00B7C09B /* thttp_header_Proxy_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Proxy_Authenticate.c; sourceTree = "<group>"; };
ECF4BF4511434EFE00B7C09B /* thttp_header_WWW_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_WWW_Authenticate.c; sourceTree = "<group>"; };
ECF4BF4811434EFE00B7C09B /* thttp_parser_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_header.c; sourceTree = "<group>"; };
ECF4BF4911434EFE00B7C09B /* thttp_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_message.c; sourceTree = "<group>"; };
ECF4BF4A11434EFE00B7C09B /* thttp_parser_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_url.c; sourceTree = "<group>"; };
ECF4BF4B11434EFE00B7C09B /* thttp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp.c; sourceTree = "<group>"; };
ECF4BF4C11434EFE00B7C09B /* thttp_event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_event.c; sourceTree = "<group>"; };
ECF4BF4D11434EFE00B7C09B /* thttp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_message.c; sourceTree = "<group>"; };
ECF4BF4E11434EFE00B7C09B /* thttp_operation.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_operation.c; sourceTree = "<group>"; };
ECF4BF4F11434EFE00B7C09B /* thttp_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_transport.c; sourceTree = "<group>"; };
ECF4BF5011434EFE00B7C09B /* thttp_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_url.c; sourceTree = "<group>"; };
ECF4BFA111434F4A00B7C09B /* tsip_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api.h; sourceTree = "<group>"; };
ECF4BFA211434F4A00B7C09B /* tsip_api_invite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_invite.h; sourceTree = "<group>"; };
ECF4BFA311434F4A00B7C09B /* tsip_api_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_message.h; sourceTree = "<group>"; };
ECF4BFA411434F4A00B7C09B /* tsip_api_publish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_publish.h; sourceTree = "<group>"; };
ECF4BFA511434F4A00B7C09B /* tsip_api_register.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_register.h; sourceTree = "<group>"; };
ECF4BFA611434F4A00B7C09B /* tsip_api_subscribe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_subscribe.h; sourceTree = "<group>"; };
ECF4BFA811434F4A00B7C09B /* tsip_challenge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_challenge.h; sourceTree = "<group>"; };
ECF4BFA911434F4A00B7C09B /* tsip_milenage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_milenage.h; sourceTree = "<group>"; };
ECF4BFAA11434F4A00B7C09B /* tsip_rijndael.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_rijndael.h; sourceTree = "<group>"; };
ECF4BFAC11434F4A00B7C09B /* tsip_dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog.h; sourceTree = "<group>"; };
ECF4BFAD11434F4A00B7C09B /* tsip_dialog_invite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_invite.h; sourceTree = "<group>"; };
ECF4BFAE11434F4A00B7C09B /* tsip_dialog_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_layer.h; sourceTree = "<group>"; };
ECF4BFAF11434F4A00B7C09B /* tsip_dialog_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_message.h; sourceTree = "<group>"; };
ECF4BFB011434F4A00B7C09B /* tsip_dialog_publish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_publish.h; sourceTree = "<group>"; };
ECF4BFB111434F4A00B7C09B /* tsip_dialog_register.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_register.h; sourceTree = "<group>"; };
ECF4BFB211434F4A00B7C09B /* tsip_dialog_subscribe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_subscribe.h; sourceTree = "<group>"; };
ECF4BFB411434F4A00B7C09B /* tsip_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header.h; sourceTree = "<group>"; };
ECF4BFB511434F4A00B7C09B /* tsip_header_accept.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_accept.h; sourceTree = "<group>"; };
ECF4BFB611434F4A00B7C09B /* tsip_header_Accept_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Contact.h; sourceTree = "<group>"; };
ECF4BFB711434F4A00B7C09B /* tsip_header_Accept_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Encoding.h; sourceTree = "<group>"; };
ECF4BFB811434F4A00B7C09B /* tsip_header_Accept_Language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Language.h; sourceTree = "<group>"; };
ECF4BFB911434F4A00B7C09B /* tsip_header_Accept_Resource_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Resource_Priority.h; sourceTree = "<group>"; };
ECF4BFBA11434F4A00B7C09B /* tsip_header_Alert_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Alert_Info.h; sourceTree = "<group>"; };
ECF4BFBB11434F4A00B7C09B /* tsip_header_Allow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Allow.h; sourceTree = "<group>"; };
ECF4BFBC11434F4A00B7C09B /* tsip_header_Allow_Events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Allow_Events.h; sourceTree = "<group>"; };
ECF4BFBD11434F4A00B7C09B /* tsip_header_Authentication_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Authentication_Info.h; sourceTree = "<group>"; };
ECF4BFBE11434F4A00B7C09B /* tsip_header_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Authorization.h; sourceTree = "<group>"; };
ECF4BFBF11434F4A00B7C09B /* tsip_header_Call_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Call_ID.h; sourceTree = "<group>"; };
ECF4BFC011434F4A00B7C09B /* tsip_header_Call_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Call_Info.h; sourceTree = "<group>"; };
ECF4BFC111434F4A00B7C09B /* tsip_header_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Contact.h; sourceTree = "<group>"; };
ECF4BFC211434F4A00B7C09B /* tsip_header_Content_Disposition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Disposition.h; sourceTree = "<group>"; };
ECF4BFC311434F4A00B7C09B /* tsip_header_Content_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Encoding.h; sourceTree = "<group>"; };
ECF4BFC411434F4A00B7C09B /* tsip_header_Content_Language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Language.h; sourceTree = "<group>"; };
ECF4BFC511434F4A00B7C09B /* tsip_header_Content_Length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Length.h; sourceTree = "<group>"; };
ECF4BFC611434F4A00B7C09B /* tsip_header_Content_Type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Type.h; sourceTree = "<group>"; };
ECF4BFC711434F4A00B7C09B /* tsip_header_CSeq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_CSeq.h; sourceTree = "<group>"; };
ECF4BFC811434F4A00B7C09B /* tsip_header_Date.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Date.h; sourceTree = "<group>"; };
ECF4BFC911434F4A00B7C09B /* tsip_header_Dummy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Dummy.h; sourceTree = "<group>"; };
ECF4BFCA11434F4A00B7C09B /* tsip_header_Error_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Error_Info.h; sourceTree = "<group>"; };
ECF4BFCB11434F4A00B7C09B /* tsip_header_Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Event.h; sourceTree = "<group>"; };
ECF4BFCC11434F4A00B7C09B /* tsip_header_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Expires.h; sourceTree = "<group>"; };
ECF4BFCD11434F4A00B7C09B /* tsip_header_From.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_From.h; sourceTree = "<group>"; };
ECF4BFCE11434F4A00B7C09B /* tsip_header_History_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_History_Info.h; sourceTree = "<group>"; };
ECF4BFCF11434F4A00B7C09B /* tsip_header_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Identity.h; sourceTree = "<group>"; };
ECF4BFD011434F4A00B7C09B /* tsip_header_Identity_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Identity_Info.h; sourceTree = "<group>"; };
ECF4BFD111434F4A00B7C09B /* tsip_header_In_Reply_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_In_Reply_To.h; sourceTree = "<group>"; };
ECF4BFD211434F4A00B7C09B /* tsip_header_Join.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Join.h; sourceTree = "<group>"; };
ECF4BFD311434F4A00B7C09B /* tsip_header_Max_Forwards.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Max_Forwards.h; sourceTree = "<group>"; };
ECF4BFD411434F4A00B7C09B /* tsip_header_MIME_Version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_MIME_Version.h; sourceTree = "<group>"; };
ECF4BFD511434F4A00B7C09B /* tsip_header_Min_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Min_Expires.h; sourceTree = "<group>"; };
ECF4BFD611434F4A00B7C09B /* tsip_header_Min_SE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Min_SE.h; sourceTree = "<group>"; };
ECF4BFD711434F4A00B7C09B /* tsip_header_Organization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Organization.h; sourceTree = "<group>"; };
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 = "<group>"; };
ECF4BFD911434F4A00B7C09B /* tsip_header_P_Answer_State.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Answer_State.h; sourceTree = "<group>"; };
ECF4BFDA11434F4A00B7C09B /* tsip_header_P_Asserted_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Asserted_Identity.h; sourceTree = "<group>"; };
ECF4BFDB11434F4A00B7C09B /* tsip_header_P_Associated_URI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Associated_URI.h; sourceTree = "<group>"; };
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 = "<group>"; };
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 = "<group>"; };
ECF4BFDE11434F4A00B7C09B /* tsip_header_P_Charging_Vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Charging_Vector.h; sourceTree = "<group>"; };
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 = "<group>"; };
ECF4BFE011434F4A00B7C09B /* tsip_header_P_DCS_LAES.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_LAES.h; sourceTree = "<group>"; };
ECF4BFE111434F4A00B7C09B /* tsip_header_P_DCS_OSPS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_OSPS.h; sourceTree = "<group>"; };
ECF4BFE211434F4A00B7C09B /* tsip_header_P_DCS_Redirect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_Redirect.h; sourceTree = "<group>"; };
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 = "<group>"; };
ECF4BFE411434F4A00B7C09B /* tsip_header_P_Early_Media.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Early_Media.h; sourceTree = "<group>"; };
ECF4BFE511434F4A00B7C09B /* tsip_header_P_Media_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Media_Authorization.h; sourceTree = "<group>"; };
ECF4BFE611434F4A00B7C09B /* tsip_header_P_Preferred_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Preferred_Identity.h; sourceTree = "<group>"; };
ECF4BFE711434F4A00B7C09B /* tsip_header_P_Profile_Key.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Profile_Key.h; sourceTree = "<group>"; };
ECF4BFE811434F4A00B7C09B /* tsip_header_P_User_Database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_User_Database.h; sourceTree = "<group>"; };
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 = "<group>"; };
ECF4BFEA11434F4A00B7C09B /* tsip_header_Path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Path.h; sourceTree = "<group>"; };
ECF4BFEB11434F4A00B7C09B /* tsip_header_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Priority.h; sourceTree = "<group>"; };
ECF4BFEC11434F4A00B7C09B /* tsip_header_Privacy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Privacy.h; sourceTree = "<group>"; };
ECF4BFED11434F4A00B7C09B /* tsip_header_Proxy_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Authenticate.h; sourceTree = "<group>"; };
ECF4BFEE11434F4A00B7C09B /* tsip_header_Proxy_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Authorization.h; sourceTree = "<group>"; };
ECF4BFEF11434F4A00B7C09B /* tsip_header_Proxy_Require.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Require.h; sourceTree = "<group>"; };
ECF4BFF011434F4A00B7C09B /* tsip_header_RAck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_RAck.h; sourceTree = "<group>"; };
ECF4BFF111434F4A00B7C09B /* tsip_header_Reason.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reason.h; sourceTree = "<group>"; };
ECF4BFF211434F4A00B7C09B /* tsip_header_Record_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Record_Route.h; sourceTree = "<group>"; };
ECF4BFF311434F4A00B7C09B /* tsip_header_Refer_Sub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Refer_Sub.h; sourceTree = "<group>"; };
ECF4BFF411434F4A00B7C09B /* tsip_header_Refer_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Refer_To.h; sourceTree = "<group>"; };
ECF4BFF511434F4A00B7C09B /* tsip_header_Referred_By.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Referred_By.h; sourceTree = "<group>"; };
ECF4BFF611434F4A00B7C09B /* tsip_header_Reject_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reject_Contact.h; sourceTree = "<group>"; };
ECF4BFF711434F4A00B7C09B /* tsip_header_Replaces.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Replaces.h; sourceTree = "<group>"; };
ECF4BFF811434F4A00B7C09B /* tsip_header_Reply_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reply_To.h; sourceTree = "<group>"; };
ECF4BFF911434F4A00B7C09B /* tsip_header_Request_Disposition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Request_Disposition.h; sourceTree = "<group>"; };
ECF4BFFA11434F4A00B7C09B /* tsip_header_Require.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Require.h; sourceTree = "<group>"; };
ECF4BFFB11434F4A00B7C09B /* tsip_header_Resource_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Resource_Priority.h; sourceTree = "<group>"; };
ECF4BFFC11434F4A00B7C09B /* tsip_header_Retry_After.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Retry_After.h; sourceTree = "<group>"; };
ECF4BFFD11434F4A00B7C09B /* tsip_header_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Route.h; sourceTree = "<group>"; };
ECF4BFFE11434F4A00B7C09B /* tsip_header_RSeq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_RSeq.h; sourceTree = "<group>"; };
ECF4BFFF11434F4A00B7C09B /* tsip_header_Security_Client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Client.h; sourceTree = "<group>"; };
ECF4C00011434F4A00B7C09B /* tsip_header_Security_Server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Server.h; sourceTree = "<group>"; };
ECF4C00111434F4A00B7C09B /* tsip_header_Security_Verify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Verify.h; sourceTree = "<group>"; };
ECF4C00211434F4A00B7C09B /* tsip_header_Server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Server.h; sourceTree = "<group>"; };
ECF4C00311434F4A00B7C09B /* tsip_header_Service_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Service_Route.h; sourceTree = "<group>"; };
ECF4C00411434F4A00B7C09B /* tsip_header_Session_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Session_Expires.h; sourceTree = "<group>"; };
ECF4C00511434F4A00B7C09B /* tsip_header_SIP_ETag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_SIP_ETag.h; sourceTree = "<group>"; };
ECF4C00611434F4A00B7C09B /* tsip_header_SIP_If_Match.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_SIP_If_Match.h; sourceTree = "<group>"; };
ECF4C00711434F4A00B7C09B /* tsip_header_Subject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Subject.h; sourceTree = "<group>"; };
ECF4C00811434F4A00B7C09B /* tsip_header_Subscription_State.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Subscription_State.h; sourceTree = "<group>"; };
ECF4C00911434F4A00B7C09B /* tsip_header_Supported.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Supported.h; sourceTree = "<group>"; };
ECF4C00A11434F4A00B7C09B /* tsip_header_Target_Dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Target_Dialog.h; sourceTree = "<group>"; };
ECF4C00B11434F4A00B7C09B /* tsip_header_Timestamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Timestamp.h; sourceTree = "<group>"; };
ECF4C00C11434F4A00B7C09B /* tsip_header_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_To.h; sourceTree = "<group>"; };
ECF4C00D11434F4A00B7C09B /* tsip_header_Unsupported.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Unsupported.h; sourceTree = "<group>"; };
ECF4C00E11434F4A00B7C09B /* tsip_header_User_Agent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_User_Agent.h; sourceTree = "<group>"; };
ECF4C00F11434F4A00B7C09B /* tsip_header_Via.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Via.h; sourceTree = "<group>"; };
ECF4C01011434F4A00B7C09B /* tsip_header_Warning.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Warning.h; sourceTree = "<group>"; };
ECF4C01111434F4A00B7C09B /* tsip_header_WWW_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_WWW_Authenticate.h; sourceTree = "<group>"; };
ECF4C01211434F4A00B7C09B /* tsip_headers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_headers.h; sourceTree = "<group>"; };
ECF4C01411434F4A00B7C09B /* tsip_parser_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_header.h; sourceTree = "<group>"; };
ECF4C01511434F4A00B7C09B /* tsip_parser_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_message.h; sourceTree = "<group>"; };
ECF4C01611434F4A00B7C09B /* tsip_parser_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_uri.h; sourceTree = "<group>"; };
ECF4C01811434F4A00B7C09B /* tsip_transac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac.h; sourceTree = "<group>"; };
ECF4C01911434F4A00B7C09B /* tsip_transac_ict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ict.h; sourceTree = "<group>"; };
ECF4C01A11434F4A00B7C09B /* tsip_transac_ist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ist.h; sourceTree = "<group>"; };
ECF4C01B11434F4A00B7C09B /* tsip_transac_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_layer.h; sourceTree = "<group>"; };
ECF4C01C11434F4A00B7C09B /* tsip_transac_nict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nict.h; sourceTree = "<group>"; };
ECF4C01D11434F4A00B7C09B /* tsip_transac_nist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nist.h; sourceTree = "<group>"; };
ECF4C01F11434F4A00B7C09B /* tsip_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport.h; sourceTree = "<group>"; };
ECF4C02011434F4A00B7C09B /* tsip_transport_ipsec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_ipsec.h; sourceTree = "<group>"; };
ECF4C02111434F4A00B7C09B /* tsip_transport_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_layer.h; sourceTree = "<group>"; };
ECF4C02211434F4A00B7C09B /* tsip_transport_tls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_tls.h; sourceTree = "<group>"; };
ECF4C02311434F4A00B7C09B /* tsip_event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_event.h; sourceTree = "<group>"; };
ECF4C02411434F4A00B7C09B /* tsip_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_message.h; sourceTree = "<group>"; };
ECF4C02511434F4A00B7C09B /* tsip_operation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_operation.h; sourceTree = "<group>"; };
ECF4C02611434F4A00B7C09B /* tsip_timers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_timers.h; sourceTree = "<group>"; };
ECF4C02711434F4A00B7C09B /* tsip_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_uri.h; sourceTree = "<group>"; };
ECF4C02811434F4A00B7C09B /* tinysip_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinysip_config.h; sourceTree = "<group>"; };
ECF4C02911434F4A00B7C09B /* tsip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip.h; sourceTree = "<group>"; };
ECF4C09311434F4B00B7C09B /* tsip_api_invite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_invite.c; sourceTree = "<group>"; };
ECF4C09411434F4B00B7C09B /* tsip_api_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_message.c; sourceTree = "<group>"; };
ECF4C09511434F4B00B7C09B /* tsip_api_publish.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_publish.c; sourceTree = "<group>"; };
ECF4C09611434F4B00B7C09B /* tsip_api_register.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_register.c; sourceTree = "<group>"; };
ECF4C09711434F4B00B7C09B /* tsip_api_subscribe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_subscribe.c; sourceTree = "<group>"; };
ECF4C09911434F4B00B7C09B /* tsip_challenge.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_challenge.c; sourceTree = "<group>"; };
ECF4C09A11434F4B00B7C09B /* tsip_milenage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_milenage.c; sourceTree = "<group>"; };
ECF4C09B11434F4B00B7C09B /* tsip_rijndael.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_rijndael.c; sourceTree = "<group>"; };
ECF4C09D11434F4B00B7C09B /* tsip_dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog.c; sourceTree = "<group>"; };
ECF4C09E11434F4B00B7C09B /* tsip_dialog_invite.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_invite.client.c; sourceTree = "<group>"; };
ECF4C09F11434F4B00B7C09B /* tsip_dialog_invite.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_invite.server.c; sourceTree = "<group>"; };
ECF4C0A011434F4B00B7C09B /* tsip_dialog_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_layer.c; sourceTree = "<group>"; };
ECF4C0A111434F4B00B7C09B /* tsip_dialog_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_message.c; sourceTree = "<group>"; };
ECF4C0A211434F4B00B7C09B /* tsip_dialog_publish.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_publish.client.c; sourceTree = "<group>"; };
ECF4C0A311434F4B00B7C09B /* tsip_dialog_register.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_register.client.c; sourceTree = "<group>"; };
ECF4C0A411434F4B00B7C09B /* tsip_dialog_register.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_register.server.c; sourceTree = "<group>"; };
ECF4C0A511434F4B00B7C09B /* tsip_dialog_subscribe.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_subscribe.client.c; sourceTree = "<group>"; };
ECF4C0A611434F4B00B7C09B /* tsip_dialog_subscribe.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_subscribe.server.c; sourceTree = "<group>"; };
ECF4C0A811434F4B00B7C09B /* tsip_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header.c; sourceTree = "<group>"; };
ECF4C0A911434F4B00B7C09B /* tsip_header_accept.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_accept.c; sourceTree = "<group>"; };
ECF4C0AA11434F4B00B7C09B /* tsip_header_Accept_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Contact.c; sourceTree = "<group>"; };
ECF4C0AB11434F4B00B7C09B /* tsip_header_Accept_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Encoding.c; sourceTree = "<group>"; };
ECF4C0AC11434F4B00B7C09B /* tsip_header_Accept_Language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Language.c; sourceTree = "<group>"; };
ECF4C0AD11434F4B00B7C09B /* tsip_header_Accept_Resource_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Resource_Priority.c; sourceTree = "<group>"; };
ECF4C0AE11434F4B00B7C09B /* tsip_header_Alert_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Alert_Info.c; sourceTree = "<group>"; };
ECF4C0AF11434F4B00B7C09B /* tsip_header_Allow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Allow.c; sourceTree = "<group>"; };
ECF4C0B011434F4B00B7C09B /* tsip_header_Allow_Events.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Allow_Events.c; sourceTree = "<group>"; };
ECF4C0B111434F4B00B7C09B /* tsip_header_Authentication_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Authentication_Info.c; sourceTree = "<group>"; };
ECF4C0B211434F4B00B7C09B /* tsip_header_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Authorization.c; sourceTree = "<group>"; };
ECF4C0B311434F4B00B7C09B /* tsip_header_Call_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Call_ID.c; sourceTree = "<group>"; };
ECF4C0B411434F4B00B7C09B /* tsip_header_Call_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Call_Info.c; sourceTree = "<group>"; };
ECF4C0B511434F4B00B7C09B /* tsip_header_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Contact.c; sourceTree = "<group>"; };
ECF4C0B611434F4B00B7C09B /* tsip_header_Content_Disposition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Disposition.c; sourceTree = "<group>"; };
ECF4C0B711434F4B00B7C09B /* tsip_header_Content_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Encoding.c; sourceTree = "<group>"; };
ECF4C0B811434F4B00B7C09B /* tsip_header_Content_Language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Language.c; sourceTree = "<group>"; };
ECF4C0B911434F4B00B7C09B /* tsip_header_Content_Length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Length.c; sourceTree = "<group>"; };
ECF4C0BA11434F4B00B7C09B /* tsip_header_Content_Type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Type.c; sourceTree = "<group>"; };
ECF4C0BB11434F4B00B7C09B /* tsip_header_CSeq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_CSeq.c; sourceTree = "<group>"; };
ECF4C0BC11434F4B00B7C09B /* tsip_header_Date.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Date.c; sourceTree = "<group>"; };
ECF4C0BD11434F4B00B7C09B /* tsip_header_Dummy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Dummy.c; sourceTree = "<group>"; };
ECF4C0BE11434F4B00B7C09B /* tsip_header_Error_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Error_Info.c; sourceTree = "<group>"; };
ECF4C0BF11434F4B00B7C09B /* tsip_header_Event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Event.c; sourceTree = "<group>"; };
ECF4C0C011434F4B00B7C09B /* tsip_header_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Expires.c; sourceTree = "<group>"; };
ECF4C0C111434F4B00B7C09B /* tsip_header_From.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_From.c; sourceTree = "<group>"; };
ECF4C0C211434F4B00B7C09B /* tsip_header_History_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_History_Info.c; sourceTree = "<group>"; };
ECF4C0C311434F4B00B7C09B /* tsip_header_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Identity.c; sourceTree = "<group>"; };
ECF4C0C411434F4B00B7C09B /* tsip_header_Identity_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Identity_Info.c; sourceTree = "<group>"; };
ECF4C0C511434F4B00B7C09B /* tsip_header_In_Reply_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_In_Reply_To.c; sourceTree = "<group>"; };
ECF4C0C611434F4B00B7C09B /* tsip_header_Join.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Join.c; sourceTree = "<group>"; };
ECF4C0C711434F4B00B7C09B /* tsip_header_Max_Forwards.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Max_Forwards.c; sourceTree = "<group>"; };
ECF4C0C811434F4B00B7C09B /* tsip_header_MIME_Version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_MIME_Version.c; sourceTree = "<group>"; };
ECF4C0C911434F4B00B7C09B /* tsip_header_Min_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Min_Expires.c; sourceTree = "<group>"; };
ECF4C0CA11434F4B00B7C09B /* tsip_header_Min_SE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Min_SE.c; sourceTree = "<group>"; };
ECF4C0CB11434F4B00B7C09B /* tsip_header_Organization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Organization.c; sourceTree = "<group>"; };
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 = "<group>"; };
ECF4C0CD11434F4B00B7C09B /* tsip_header_P_Answer_State.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Answer_State.c; sourceTree = "<group>"; };
ECF4C0CE11434F4B00B7C09B /* tsip_header_P_Asserted_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Asserted_Identity.c; sourceTree = "<group>"; };
ECF4C0CF11434F4B00B7C09B /* tsip_header_P_Associated_URI.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Associated_URI.c; sourceTree = "<group>"; };
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 = "<group>"; };
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 = "<group>"; };
ECF4C0D211434F4B00B7C09B /* tsip_header_P_Charging_Vector.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Charging_Vector.c; sourceTree = "<group>"; };
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 = "<group>"; };
ECF4C0D411434F4B00B7C09B /* tsip_header_P_DCS_LAES.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_LAES.c; sourceTree = "<group>"; };
ECF4C0D511434F4B00B7C09B /* tsip_header_P_DCS_OSPS.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_OSPS.c; sourceTree = "<group>"; };
ECF4C0D611434F4B00B7C09B /* tsip_header_P_DCS_Redirect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_Redirect.c; sourceTree = "<group>"; };
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 = "<group>"; };
ECF4C0D811434F4B00B7C09B /* tsip_header_P_Early_Media.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Early_Media.c; sourceTree = "<group>"; };
ECF4C0D911434F4B00B7C09B /* tsip_header_P_Media_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Media_Authorization.c; sourceTree = "<group>"; };
ECF4C0DA11434F4B00B7C09B /* tsip_header_P_Preferred_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Preferred_Identity.c; sourceTree = "<group>"; };
ECF4C0DB11434F4B00B7C09B /* tsip_header_P_Profile_Key.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Profile_Key.c; sourceTree = "<group>"; };
ECF4C0DC11434F4B00B7C09B /* tsip_header_P_User_Database.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_User_Database.c; sourceTree = "<group>"; };
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 = "<group>"; };
ECF4C0DE11434F4B00B7C09B /* tsip_header_Path.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Path.c; sourceTree = "<group>"; };
ECF4C0DF11434F4B00B7C09B /* tsip_header_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Priority.c; sourceTree = "<group>"; };
ECF4C0E011434F4B00B7C09B /* tsip_header_Privacy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Privacy.c; sourceTree = "<group>"; };
ECF4C0E111434F4B00B7C09B /* tsip_header_Proxy_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Authenticate.c; sourceTree = "<group>"; };
ECF4C0E211434F4B00B7C09B /* tsip_header_Proxy_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Authorization.c; sourceTree = "<group>"; };
ECF4C0E311434F4B00B7C09B /* tsip_header_Proxy_Require.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Require.c; sourceTree = "<group>"; };
ECF4C0E411434F4B00B7C09B /* tsip_header_RAck.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_RAck.c; sourceTree = "<group>"; };
ECF4C0E511434F4B00B7C09B /* tsip_header_Reason.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reason.c; sourceTree = "<group>"; };
ECF4C0E611434F4B00B7C09B /* tsip_header_Record_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Record_Route.c; sourceTree = "<group>"; };
ECF4C0E711434F4B00B7C09B /* tsip_header_Refer_Sub.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Refer_Sub.c; sourceTree = "<group>"; };
ECF4C0E811434F4B00B7C09B /* tsip_header_Refer_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Refer_To.c; sourceTree = "<group>"; };
ECF4C0E911434F4B00B7C09B /* tsip_header_Referred_By.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Referred_By.c; sourceTree = "<group>"; };
ECF4C0EA11434F4B00B7C09B /* tsip_header_Reject_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reject_Contact.c; sourceTree = "<group>"; };
ECF4C0EB11434F4B00B7C09B /* tsip_header_Replaces.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Replaces.c; sourceTree = "<group>"; };
ECF4C0EC11434F4B00B7C09B /* tsip_header_Reply_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reply_To.c; sourceTree = "<group>"; };
ECF4C0ED11434F4B00B7C09B /* tsip_header_Request_Disposition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Request_Disposition.c; sourceTree = "<group>"; };
ECF4C0EE11434F4B00B7C09B /* tsip_header_Require.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Require.c; sourceTree = "<group>"; };
ECF4C0EF11434F4B00B7C09B /* tsip_header_Resource_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Resource_Priority.c; sourceTree = "<group>"; };
ECF4C0F011434F4B00B7C09B /* tsip_header_Retry_After.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Retry_After.c; sourceTree = "<group>"; };
ECF4C0F111434F4B00B7C09B /* tsip_header_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Route.c; sourceTree = "<group>"; };
ECF4C0F211434F4B00B7C09B /* tsip_header_RSeq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_RSeq.c; sourceTree = "<group>"; };
ECF4C0F311434F4B00B7C09B /* tsip_header_Security_Client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Client.c; sourceTree = "<group>"; };
ECF4C0F411434F4B00B7C09B /* tsip_header_Security_Server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Server.c; sourceTree = "<group>"; };
ECF4C0F511434F4B00B7C09B /* tsip_header_Security_Verify.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Verify.c; sourceTree = "<group>"; };
ECF4C0F611434F4B00B7C09B /* tsip_header_Server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Server.c; sourceTree = "<group>"; };
ECF4C0F711434F4B00B7C09B /* tsip_header_Service_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Service_Route.c; sourceTree = "<group>"; };
ECF4C0F811434F4B00B7C09B /* tsip_header_Session_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Session_Expires.c; sourceTree = "<group>"; };
ECF4C0F911434F4B00B7C09B /* tsip_header_SIP_ETag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_SIP_ETag.c; sourceTree = "<group>"; };
ECF4C0FA11434F4B00B7C09B /* tsip_header_SIP_If_Match.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_SIP_If_Match.c; sourceTree = "<group>"; };
ECF4C0FB11434F4B00B7C09B /* tsip_header_Subject.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Subject.c; sourceTree = "<group>"; };
ECF4C0FC11434F4B00B7C09B /* tsip_header_Subscription_State.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Subscription_State.c; sourceTree = "<group>"; };
ECF4C0FD11434F4B00B7C09B /* tsip_header_Supported.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Supported.c; sourceTree = "<group>"; };
ECF4C0FE11434F4B00B7C09B /* tsip_header_Target_Dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Target_Dialog.c; sourceTree = "<group>"; };
ECF4C0FF11434F4B00B7C09B /* tsip_header_Timestamp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Timestamp.c; sourceTree = "<group>"; };
ECF4C10011434F4B00B7C09B /* tsip_header_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_To.c; sourceTree = "<group>"; };
ECF4C10111434F4B00B7C09B /* tsip_header_Unsupported.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Unsupported.c; sourceTree = "<group>"; };
ECF4C10211434F4B00B7C09B /* tsip_header_User_Agent.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_User_Agent.c; sourceTree = "<group>"; };
ECF4C10311434F4B00B7C09B /* tsip_header_Via.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Via.c; sourceTree = "<group>"; };
ECF4C10411434F4B00B7C09B /* tsip_header_Warning.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Warning.c; sourceTree = "<group>"; };
ECF4C10511434F4B00B7C09B /* tsip_header_WWW_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_WWW_Authenticate.c; sourceTree = "<group>"; };
ECF4C10811434F4B00B7C09B /* tsip_parser_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_header.c; sourceTree = "<group>"; };
ECF4C10911434F4B00B7C09B /* tsip_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_message.c; sourceTree = "<group>"; };
ECF4C10A11434F4B00B7C09B /* tsip_parser_uri.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_uri.c; sourceTree = "<group>"; };
ECF4C10C11434F4B00B7C09B /* tsip_transac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac.c; sourceTree = "<group>"; };
ECF4C10D11434F4B00B7C09B /* tsip_transac_ict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ict.c; sourceTree = "<group>"; };
ECF4C10E11434F4B00B7C09B /* tsip_transac_ist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ist.c; sourceTree = "<group>"; };
ECF4C10F11434F4B00B7C09B /* tsip_transac_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_layer.c; sourceTree = "<group>"; };
ECF4C11011434F4B00B7C09B /* tsip_transac_nict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nict.c; sourceTree = "<group>"; };
ECF4C11111434F4B00B7C09B /* tsip_transac_nist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nist.c; sourceTree = "<group>"; };
ECF4C11311434F4B00B7C09B /* tsip_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport.c; sourceTree = "<group>"; };
ECF4C11411434F4B00B7C09B /* tsip_transport_ipsec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_ipsec.c; sourceTree = "<group>"; };
ECF4C11511434F4B00B7C09B /* tsip_transport_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_layer.c; sourceTree = "<group>"; };
ECF4C11611434F4B00B7C09B /* tsip_transport_tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_tls.c; sourceTree = "<group>"; };
ECF4C11711434F4B00B7C09B /* tsip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip.c; sourceTree = "<group>"; };
ECF4C11811434F4B00B7C09B /* tsip_event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_event.c; sourceTree = "<group>"; };
ECF4C11911434F4B00B7C09B /* tsip_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_message.c; sourceTree = "<group>"; };
ECF4C11A11434F4B00B7C09B /* tsip_operation.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_operation.c; sourceTree = "<group>"; };
ECF4C11B11434F4B00B7C09B /* tsip_timers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_timers.c; sourceTree = "<group>"; };
ECF4C11C11434F4B00B7C09B /* tsip_uri.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_uri.c; sourceTree = "<group>"; };
ECF4C28911434F9300B7C09B /* tinySAK_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinySAK_config.h; sourceTree = "<group>"; };
ECF4C28A11434F9300B7C09B /* tsk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk.c; sourceTree = "<group>"; };
ECF4C28B11434F9300B7C09B /* tsk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk.h; sourceTree = "<group>"; };
ECF4C28C11434F9300B7C09B /* tsk_base64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_base64.c; sourceTree = "<group>"; };
ECF4C28D11434F9300B7C09B /* tsk_base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_base64.h; sourceTree = "<group>"; };
ECF4C28E11434F9300B7C09B /* tsk_binaryutils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_binaryutils.c; sourceTree = "<group>"; };
ECF4C28F11434F9300B7C09B /* tsk_binaryutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_binaryutils.h; sourceTree = "<group>"; };
ECF4C29011434F9300B7C09B /* tsk_buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_buffer.c; sourceTree = "<group>"; };
ECF4C29111434F9300B7C09B /* tsk_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_buffer.h; sourceTree = "<group>"; };
ECF4C29211434F9300B7C09B /* tsk_condwait.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_condwait.c; sourceTree = "<group>"; };
ECF4C29311434F9300B7C09B /* tsk_condwait.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_condwait.h; sourceTree = "<group>"; };
ECF4C29411434F9300B7C09B /* tsk_debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_debug.c; sourceTree = "<group>"; };
ECF4C29511434F9300B7C09B /* tsk_debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_debug.h; sourceTree = "<group>"; };
ECF4C29611434F9300B7C09B /* tsk_errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_errno.h; sourceTree = "<group>"; };
ECF4C29711434F9300B7C09B /* tsk_fsm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_fsm.c; sourceTree = "<group>"; };
ECF4C29811434F9300B7C09B /* tsk_fsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_fsm.h; sourceTree = "<group>"; };
ECF4C29911434F9300B7C09B /* tsk_hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_hmac.c; sourceTree = "<group>"; };
ECF4C29A11434F9300B7C09B /* tsk_hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_hmac.h; sourceTree = "<group>"; };
ECF4C29B11434F9300B7C09B /* tsk_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_list.c; sourceTree = "<group>"; };
ECF4C29C11434F9300B7C09B /* tsk_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_list.h; sourceTree = "<group>"; };
ECF4C29D11434F9300B7C09B /* tsk_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_md5.c; sourceTree = "<group>"; };
ECF4C29E11434F9300B7C09B /* tsk_md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_md5.h; sourceTree = "<group>"; };
ECF4C29F11434F9300B7C09B /* tsk_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_memory.c; sourceTree = "<group>"; };
ECF4C2A011434F9300B7C09B /* tsk_memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_memory.h; sourceTree = "<group>"; };
ECF4C2A111434F9300B7C09B /* tsk_mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_mutex.c; sourceTree = "<group>"; };
ECF4C2A211434F9300B7C09B /* tsk_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_mutex.h; sourceTree = "<group>"; };
ECF4C2A311434F9300B7C09B /* tsk_object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_object.c; sourceTree = "<group>"; };
ECF4C2A411434F9300B7C09B /* tsk_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_object.h; sourceTree = "<group>"; };
ECF4C2A511434F9300B7C09B /* tsk_params.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_params.c; sourceTree = "<group>"; };
ECF4C2A611434F9300B7C09B /* tsk_params.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_params.h; sourceTree = "<group>"; };
ECF4C2A711434F9300B7C09B /* tsk_ppfcs16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ppfcs16.c; sourceTree = "<group>"; };
ECF4C2A811434F9300B7C09B /* tsk_ppfcs16.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ppfcs16.h; sourceTree = "<group>"; };
ECF4C2A911434F9300B7C09B /* tsk_ppfcs32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ppfcs32.c; sourceTree = "<group>"; };
ECF4C2AA11434F9300B7C09B /* tsk_ppfcs32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ppfcs32.h; sourceTree = "<group>"; };
ECF4C2AB11434F9300B7C09B /* tsk_ragel_state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ragel_state.c; sourceTree = "<group>"; };
ECF4C2AC11434F9300B7C09B /* tsk_ragel_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ragel_state.h; sourceTree = "<group>"; };
ECF4C2AD11434F9300B7C09B /* tsk_runnable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_runnable.c; sourceTree = "<group>"; };
ECF4C2AE11434F9300B7C09B /* tsk_runnable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_runnable.h; sourceTree = "<group>"; };
ECF4C2AF11434F9300B7C09B /* tsk_safeobj.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_safeobj.c; sourceTree = "<group>"; };
ECF4C2B011434F9300B7C09B /* tsk_safeobj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_safeobj.h; sourceTree = "<group>"; };
ECF4C2B111434F9300B7C09B /* tsk_semaphore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_semaphore.c; sourceTree = "<group>"; };
ECF4C2B211434F9300B7C09B /* tsk_semaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_semaphore.h; sourceTree = "<group>"; };
ECF4C2B311434F9300B7C09B /* tsk_sha1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_sha1.c; sourceTree = "<group>"; };
ECF4C2B411434F9300B7C09B /* tsk_sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_sha1.h; sourceTree = "<group>"; };
ECF4C2B511434F9300B7C09B /* tsk_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_string.c; sourceTree = "<group>"; };
ECF4C2B611434F9300B7C09B /* tsk_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_string.h; sourceTree = "<group>"; };
ECF4C2B711434F9300B7C09B /* tsk_thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_thread.c; sourceTree = "<group>"; };
ECF4C2B811434F9300B7C09B /* tsk_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_thread.h; sourceTree = "<group>"; };
ECF4C2B911434F9300B7C09B /* tsk_time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_time.c; sourceTree = "<group>"; };
ECF4C2BA11434F9300B7C09B /* tsk_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_time.h; sourceTree = "<group>"; };
ECF4C2BB11434F9300B7C09B /* tsk_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_timer.c; sourceTree = "<group>"; };
ECF4C2BC11434F9300B7C09B /* tsk_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_timer.h; sourceTree = "<group>"; };
ECF4C2BD11434F9300B7C09B /* tsk_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_url.c; sourceTree = "<group>"; };
ECF4C2BE11434F9300B7C09B /* tsk_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_url.h; sourceTree = "<group>"; };
ECF4C2BF11434F9300B7C09B /* tsk_uuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_uuid.c; sourceTree = "<group>"; };
ECF4C2C011434F9300B7C09B /* tsk_uuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_uuid.h; sourceTree = "<group>"; };
ECF4C2C111434F9300B7C09B /* tsk_xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_xml.c; sourceTree = "<group>"; };
ECF4C2C211434F9300B7C09B /* tsk_xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_xml.h; sourceTree = "<group>"; };
ECF4C82E11434FEA00B7C09B /* tnet_dhcp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp.c; sourceTree = "<group>"; };
ECF4C82F11434FEA00B7C09B /* tnet_dhcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp.h; sourceTree = "<group>"; };
ECF4C83011434FEA00B7C09B /* tnet_dhcp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_message.c; sourceTree = "<group>"; };
ECF4C83111434FEA00B7C09B /* tnet_dhcp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_message.h; sourceTree = "<group>"; };
ECF4C83211434FEA00B7C09B /* tnet_dhcp_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option.c; sourceTree = "<group>"; };
ECF4C83311434FEA00B7C09B /* tnet_dhcp_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option.h; sourceTree = "<group>"; };
ECF4C83411434FEA00B7C09B /* tnet_dhcp_option_sip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option_sip.c; sourceTree = "<group>"; };
ECF4C83511434FEA00B7C09B /* tnet_dhcp_option_sip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option_sip.h; sourceTree = "<group>"; };
ECF4C83711434FEA00B7C09B /* tnet_dhcp6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6.c; sourceTree = "<group>"; };
ECF4C83811434FEA00B7C09B /* tnet_dhcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6.h; sourceTree = "<group>"; };
ECF4C83911434FEA00B7C09B /* tnet_dhcp6_duid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_duid.c; sourceTree = "<group>"; };
ECF4C83A11434FEA00B7C09B /* tnet_dhcp6_duid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_duid.h; sourceTree = "<group>"; };
ECF4C83B11434FEA00B7C09B /* tnet_dhcp6_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_message.c; sourceTree = "<group>"; };
ECF4C83C11434FEA00B7C09B /* tnet_dhcp6_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_message.h; sourceTree = "<group>"; };
ECF4C83D11434FEA00B7C09B /* tnet_dhcp6_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_option.c; sourceTree = "<group>"; };
ECF4C83E11434FEA00B7C09B /* tnet_dhcp6_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_option.h; sourceTree = "<group>"; };
ECF4C84011434FEA00B7C09B /* tnet_dns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns.c; sourceTree = "<group>"; };
ECF4C84111434FEA00B7C09B /* tnet_dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns.h; sourceTree = "<group>"; };
ECF4C84211434FEA00B7C09B /* tnet_dns_a.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_a.c; sourceTree = "<group>"; };
ECF4C84311434FEA00B7C09B /* tnet_dns_a.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_a.h; sourceTree = "<group>"; };
ECF4C84411434FEA00B7C09B /* tnet_dns_aaaa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_aaaa.c; sourceTree = "<group>"; };
ECF4C84511434FEA00B7C09B /* tnet_dns_aaaa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_aaaa.h; sourceTree = "<group>"; };
ECF4C84611434FEA00B7C09B /* tnet_dns_cname.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_cname.c; sourceTree = "<group>"; };
ECF4C84711434FEA00B7C09B /* tnet_dns_cname.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_cname.h; sourceTree = "<group>"; };
ECF4C84811434FEA00B7C09B /* tnet_dns_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_message.c; sourceTree = "<group>"; };
ECF4C84911434FEA00B7C09B /* tnet_dns_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_message.h; sourceTree = "<group>"; };
ECF4C84A11434FEA00B7C09B /* tnet_dns_mx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_mx.c; sourceTree = "<group>"; };
ECF4C84B11434FEA00B7C09B /* tnet_dns_mx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_mx.h; sourceTree = "<group>"; };
ECF4C84C11434FEA00B7C09B /* tnet_dns_naptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_naptr.c; sourceTree = "<group>"; };
ECF4C84D11434FEA00B7C09B /* tnet_dns_naptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_naptr.h; sourceTree = "<group>"; };
ECF4C84E11434FEA00B7C09B /* tnet_dns_ns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ns.c; sourceTree = "<group>"; };
ECF4C84F11434FEA00B7C09B /* tnet_dns_ns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ns.h; sourceTree = "<group>"; };
ECF4C85011434FEA00B7C09B /* tnet_dns_opt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_opt.c; sourceTree = "<group>"; };
ECF4C85111434FEA00B7C09B /* tnet_dns_opt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_opt.h; sourceTree = "<group>"; };
ECF4C85211434FEA00B7C09B /* tnet_dns_ptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ptr.c; sourceTree = "<group>"; };
ECF4C85311434FEA00B7C09B /* tnet_dns_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ptr.h; sourceTree = "<group>"; };
ECF4C85411434FEA00B7C09B /* tnet_dns_rr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_rr.c; sourceTree = "<group>"; };
ECF4C85511434FEA00B7C09B /* tnet_dns_rr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_rr.h; sourceTree = "<group>"; };
ECF4C85611434FEA00B7C09B /* tnet_dns_soa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_soa.c; sourceTree = "<group>"; };
ECF4C85711434FEA00B7C09B /* tnet_dns_soa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_soa.h; sourceTree = "<group>"; };
ECF4C85811434FEA00B7C09B /* tnet_dns_srv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_srv.c; sourceTree = "<group>"; };
ECF4C85911434FEA00B7C09B /* tnet_dns_srv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_srv.h; sourceTree = "<group>"; };
ECF4C85A11434FEA00B7C09B /* tnet_dns_txt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_txt.c; sourceTree = "<group>"; };
ECF4C85B11434FEA00B7C09B /* tnet_dns_txt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_txt.h; sourceTree = "<group>"; };
ECF4C85D11434FEA00B7C09B /* tnet_ice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_ice.c; sourceTree = "<group>"; };
ECF4C85E11434FEA00B7C09B /* tnet_ice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_ice.h; sourceTree = "<group>"; };
ECF4C86211434FEA00B7C09B /* tnet_stun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun.c; sourceTree = "<group>"; };
ECF4C86311434FEA00B7C09B /* tnet_stun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun.h; sourceTree = "<group>"; };
ECF4C86411434FEA00B7C09B /* tnet_stun_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_attribute.c; sourceTree = "<group>"; };
ECF4C86511434FEA00B7C09B /* tnet_stun_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_attribute.h; sourceTree = "<group>"; };
ECF4C86611434FEA00B7C09B /* tnet_stun_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_message.c; sourceTree = "<group>"; };
ECF4C86711434FEA00B7C09B /* tnet_stun_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_message.h; sourceTree = "<group>"; };
ECF4C86811434FEA00B7C09B /* tinyNET_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyNET_config.h; sourceTree = "<group>"; };
ECF4C86A11434FEA00B7C09B /* tnet_tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_tls.c; sourceTree = "<group>"; };
ECF4C86B11434FEA00B7C09B /* tnet_tls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_tls.h; sourceTree = "<group>"; };
ECF4C86C11434FEA00B7C09B /* tnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet.c; sourceTree = "<group>"; };
ECF4C86D11434FEA00B7C09B /* tnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet.h; sourceTree = "<group>"; };
ECF4C86E11434FEA00B7C09B /* tnet_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_auth.c; sourceTree = "<group>"; };
ECF4C86F11434FEA00B7C09B /* tnet_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_auth.h; sourceTree = "<group>"; };
ECF4C87011434FEA00B7C09B /* tnet_hardwares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_hardwares.h; sourceTree = "<group>"; };
ECF4C87111434FEA00B7C09B /* tnet_nat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_nat.c; sourceTree = "<group>"; };
ECF4C87211434FEA00B7C09B /* tnet_nat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_nat.h; sourceTree = "<group>"; };
ECF4C87311434FEA00B7C09B /* tnet_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_poll.c; sourceTree = "<group>"; };
ECF4C87411434FEA00B7C09B /* tnet_poll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_poll.h; sourceTree = "<group>"; };
ECF4C87511434FEA00B7C09B /* tnet_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_proto.h; sourceTree = "<group>"; };
ECF4C87611434FEA00B7C09B /* tnet_socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_socket.c; sourceTree = "<group>"; };
ECF4C87711434FEA00B7C09B /* tnet_socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_socket.h; sourceTree = "<group>"; };
ECF4C87811434FEA00B7C09B /* tnet_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport.c; sourceTree = "<group>"; };
ECF4C87911434FEA00B7C09B /* tnet_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_transport.h; sourceTree = "<group>"; };
ECF4C87A11434FEA00B7C09B /* tnet_transport_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_poll.c; sourceTree = "<group>"; };
ECF4C87B11434FEA00B7C09B /* tnet_transport_win32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_win32.c; sourceTree = "<group>"; };
ECF4C87C11434FEA00B7C09B /* tnet_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_types.h; sourceTree = "<group>"; };
ECF4C87D11434FEA00B7C09B /* tnet_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_utils.c; sourceTree = "<group>"; };
ECF4C87E11434FEA00B7C09B /* tnet_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_utils.h; sourceTree = "<group>"; };
ECF4C88011434FEA00B7C09B /* tnet_turn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn.c; sourceTree = "<group>"; };
ECF4C88111434FEA00B7C09B /* tnet_turn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn.h; sourceTree = "<group>"; };
ECF4C88211434FEA00B7C09B /* tnet_turn_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_attribute.c; sourceTree = "<group>"; };
ECF4C88311434FEA00B7C09B /* tnet_turn_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_attribute.h; sourceTree = "<group>"; };
ECF4C88411434FEA00B7C09B /* tnet_turn_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_message.c; sourceTree = "<group>"; };
ECF4C88511434FEA00B7C09B /* tnet_turn_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_message.h; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
D289988505E68E00004EDB86 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECED689510F99886006B4DC9 /* libtinyNET.dylib in Frameworks */,
ECED689610F99886006B4DC9 /* libtinySAK.dylib in Frameworks */,
ECED68C410F99979006B4DC9 /* libtinyHTTP.dylib in Frameworks */,
ECF4C9031143506000B7C09B /* libtinyIPSec.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECED65E410F99689006B4DC9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
ECED686210F997F2006B4DC9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECED688F10F9986A006B4DC9 /* libtinySAK.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECED689B10F998E4006B4DC9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECED6AF210F9A68F006B4DC9 /* libtinySAK.dylib in Frameworks */,
ECF4C8FE1143503700B7C09B /* libtinyNET.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECED6AFC10F9A93A006B4DC9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECED6B0A10F9A94A006B4DC9 /* libtinyHTTP.dylib in Frameworks */,
ECED6B0B10F9A94A006B4DC9 /* libtinyNET.dylib in Frameworks */,
ECED6B0C10F9A94A006B4DC9 /* libtinySAK.dylib in Frameworks */,
ECED6B0D10F9A94A006B4DC9 /* libtinySIP.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF46DBF11347F8100390CBE /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
08FB7794FE84155DC02AAC07 /* tinySIP */ = {
isa = PBXGroup;
children = (
ECF4C82111434FEA00B7C09B /* tinyNET */,
ECF4C23B11434F9300B7C09B /* tinySAK */,
ECF4BF8911434F4A00B7C09B /* tinySIP */,
ECF4BF0F11434EFE00B7C09B /* tinyHTTP */,
ECF46D40113476BD00390CBE /* tinyIPSec */,
ECED6B0E10F9A953006B4DC9 /* test */,
1AB674ADFE9D54B511CA2CBB /* Products */,
);
name = tinySIP;
sourceTree = "<group>";
};
1AB674ADFE9D54B511CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
D2AAC0630554660B00DB518D /* libtinySIP.dylib */,
ECED65E610F9968A006B4DC9 /* libtinySAK.dylib */,
ECED686410F997F2006B4DC9 /* libtinyNET.dylib */,
ECED689D10F998E4006B4DC9 /* libtinyHTTP.dylib */,
ECED6AFE10F9A93A006B4DC9 /* test */,
ECF46DC111347F8100390CBE /* libtinyIPSec.dylib */,
);
name = Products;
sourceTree = "<group>";
};
ECED6B0E10F9A953006B4DC9 /* test */ = {
isa = PBXGroup;
children = (
ECED6B1010F9A971006B4DC9 /* stdafx.c */,
ECED6B1110F9A971006B4DC9 /* stdafx.h */,
ECED6B1210F9A971006B4DC9 /* targetver.h */,
ECED6B1310F9A971006B4DC9 /* test.c */,
ECED6B1410F9A971006B4DC9 /* test_sipmessages.h */,
ECED6B1510F9A971006B4DC9 /* test_stack.h */,
ECED6B1610F9A971006B4DC9 /* test_transac.h */,
ECED6B1710F9A971006B4DC9 /* test_uri.h */,
);
name = test;
sourceTree = "<group>";
};
ECF46D40113476BD00390CBE /* tinyIPSec */ = {
isa = PBXGroup;
children = (
ECF46D41113476BD00390CBE /* src */,
);
name = tinyIPSec;
path = ../../tinyIPSec;
sourceTree = SOURCE_ROOT;
};
ECF46D41113476BD00390CBE /* src */ = {
isa = PBXGroup;
children = (
ECF46D42113476BD00390CBE /* tinyipsec_config.h */,
ECF46D43113476BD00390CBE /* tipsec.c */,
ECF46D44113476BD00390CBE /* tipsec.h */,
ECF46D45113476BD00390CBE /* tipsec_common.c */,
ECF46D46113476BD00390CBE /* tipsec_common.h */,
ECF46D47113476BD00390CBE /* tipsec_racoon.c */,
ECF46D48113476BD00390CBE /* tipsec_racoon.h */,
ECF46D49113476BD00390CBE /* tipsec_vista.c */,
ECF46D4A113476BD00390CBE /* tipsec_vista.h */,
ECF46D4B113476BD00390CBE /* tipsec_xp.c */,
ECF46D4C113476BD00390CBE /* tipsec_xp.h */,
);
path = src;
sourceTree = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
ECF4BF1A11434EFE00B7C09B /* auth */ = {
isa = PBXGroup;
children = (
ECF4BF1B11434EFE00B7C09B /* thttp_auth.h */,
);
path = auth;
sourceTree = "<group>";
};
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 = "<group>";
};
ECF4BF2411434EFE00B7C09B /* parsers */ = {
isa = PBXGroup;
children = (
ECF4BF2511434EFE00B7C09B /* thttp_parser_header.h */,
ECF4BF2611434EFE00B7C09B /* thttp_parser_message.h */,
ECF4BF2711434EFE00B7C09B /* thttp_parser_url.h */,
);
path = parsers;
sourceTree = "<group>";
};
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 = "<group>";
};
ECF4BF3C11434EFE00B7C09B /* auth */ = {
isa = PBXGroup;
children = (
ECF4BF3D11434EFE00B7C09B /* thttp_auth.c */,
);
path = auth;
sourceTree = "<group>";
};
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 = "<group>";
};
ECF4BF4711434EFE00B7C09B /* parsers */ = {
isa = PBXGroup;
children = (
ECF4BF4811434EFE00B7C09B /* thttp_parser_header.c */,
ECF4BF4911434EFE00B7C09B /* thttp_parser_message.c */,
ECF4BF4A11434EFE00B7C09B /* thttp_parser_url.c */,
);
path = parsers;
sourceTree = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
ECF4BFA711434F4A00B7C09B /* authentication */ = {
isa = PBXGroup;
children = (
ECF4BFA811434F4A00B7C09B /* tsip_challenge.h */,
ECF4BFA911434F4A00B7C09B /* tsip_milenage.h */,
ECF4BFAA11434F4A00B7C09B /* tsip_rijndael.h */,
);
path = authentication;
sourceTree = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
ECF4C01311434F4A00B7C09B /* parsers */ = {
isa = PBXGroup;
children = (
ECF4C01411434F4A00B7C09B /* tsip_parser_header.h */,
ECF4C01511434F4A00B7C09B /* tsip_parser_message.h */,
ECF4C01611434F4A00B7C09B /* tsip_parser_uri.h */,
);
path = parsers;
sourceTree = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
ECF4C09811434F4B00B7C09B /* authentication */ = {
isa = PBXGroup;
children = (
ECF4C09911434F4B00B7C09B /* tsip_challenge.c */,
ECF4C09A11434F4B00B7C09B /* tsip_milenage.c */,
ECF4C09B11434F4B00B7C09B /* tsip_rijndael.c */,
);
path = authentication;
sourceTree = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
ECF4C10711434F4B00B7C09B /* parsers */ = {
isa = PBXGroup;
children = (
ECF4C10811434F4B00B7C09B /* tsip_parser_header.c */,
ECF4C10911434F4B00B7C09B /* tsip_parser_message.c */,
ECF4C10A11434F4B00B7C09B /* tsip_parser_uri.c */,
);
path = parsers;
sourceTree = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
ECF4C85C11434FEA00B7C09B /* ice */ = {
isa = PBXGroup;
children = (
ECF4C85D11434FEA00B7C09B /* tnet_ice.c */,
ECF4C85E11434FEA00B7C09B /* tnet_ice.h */,
);
path = ice;
sourceTree = "<group>";
};
ECF4C86011434FEA00B7C09B /* parsers */ = {
isa = PBXGroup;
children = (
);
path = parsers;
sourceTree = "<group>";
};
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 = "<group>";
};
ECF4C86911434FEA00B7C09B /* tls */ = {
isa = PBXGroup;
children = (
ECF4C86A11434FEA00B7C09B /* tnet_tls.c */,
ECF4C86B11434FEA00B7C09B /* tnet_tls.h */,
);
path = tls;
sourceTree = "<group>";
};
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 = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
D2AAC0600554660B00DB518D /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
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;
};
ECED65E210F99689006B4DC9 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
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;
};
ECED686010F997F2006B4DC9 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
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;
};
ECED689910F998E4006B4DC9 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
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;
};
ECF46DBD11347F8100390CBE /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECF46DC611347FAC00390CBE /* tipsec_xp.h in Headers */,
ECF46DC711347FAC00390CBE /* tinyipsec_config.h in Headers */,
ECF46DC811347FAD00390CBE /* tipsec_common.h in Headers */,
ECF46DCA11347FAE00390CBE /* tipsec_racoon.h in Headers */,
ECF46DCB11347FAE00390CBE /* tipsec.h in Headers */,
ECF46DCE11347FB100390CBE /* tipsec_vista.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
D2AAC0620554660B00DB518D /* tinySIP */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1DEB914A08733D8E0010E9CD /* Build configuration list for PBXNativeTarget "tinySIP" */;
buildPhases = (
D2AAC0600554660B00DB518D /* Headers */,
D2AAC0610554660B00DB518D /* Sources */,
D289988505E68E00004EDB86 /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECED689210F99880006B4DC9 /* PBXTargetDependency */,
ECED689410F99880006B4DC9 /* PBXTargetDependency */,
ECED68C310F99975006B4DC9 /* PBXTargetDependency */,
ECF4C9021143505C00B7C09B /* PBXTargetDependency */,
);
name = tinySIP;
productName = tinySIP;
productReference = D2AAC0630554660B00DB518D /* libtinySIP.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECED65E510F99689006B4DC9 /* tinySAK */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECED67EA10F996A8006B4DC9 /* Build configuration list for PBXNativeTarget "tinySAK" */;
buildPhases = (
ECED65E210F99689006B4DC9 /* Headers */,
ECED65E310F99689006B4DC9 /* Sources */,
ECED65E410F99689006B4DC9 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = tinySAK;
productName = tinySAK;
productReference = ECED65E610F9968A006B4DC9 /* libtinySAK.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECED686310F997F2006B4DC9 /* tinyNET */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECED688910F99812006B4DC9 /* Build configuration list for PBXNativeTarget "tinyNET" */;
buildPhases = (
ECED686010F997F2006B4DC9 /* Headers */,
ECED686110F997F2006B4DC9 /* Sources */,
ECED686210F997F2006B4DC9 /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECED688E10F99866006B4DC9 /* PBXTargetDependency */,
);
name = tinyNET;
productName = tinyNET;
productReference = ECED686410F997F2006B4DC9 /* libtinyNET.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECED689C10F998E4006B4DC9 /* tinyHTTP */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECED68A110F998EB006B4DC9 /* Build configuration list for PBXNativeTarget "tinyHTTP" */;
buildPhases = (
ECED689910F998E4006B4DC9 /* Headers */,
ECED689A10F998E4006B4DC9 /* Sources */,
ECED689B10F998E4006B4DC9 /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECED6AF110F9A68B006B4DC9 /* PBXTargetDependency */,
ECF4C8FD1143502C00B7C09B /* PBXTargetDependency */,
);
name = tinyHTTP;
productName = tinyHTTP;
productReference = ECED689D10F998E4006B4DC9 /* libtinyHTTP.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECED6AFD10F9A93A006B4DC9 /* test */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECED6B0F10F9A953006B4DC9 /* Build configuration list for PBXNativeTarget "test" */;
buildPhases = (
ECED6AFB10F9A93A006B4DC9 /* Sources */,
ECED6AFC10F9A93A006B4DC9 /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECED6B0310F9A943006B4DC9 /* PBXTargetDependency */,
ECED6B0510F9A943006B4DC9 /* PBXTargetDependency */,
ECED6B0710F9A943006B4DC9 /* PBXTargetDependency */,
ECED6B0910F9A943006B4DC9 /* PBXTargetDependency */,
);
name = test;
productName = test;
productReference = ECED6AFE10F9A93A006B4DC9 /* test */;
productType = "com.apple.product-type.tool";
};
ECF46DC011347F8100390CBE /* tinyIPSec */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECF46DD911347FCD00390CBE /* Build configuration list for PBXNativeTarget "tinyIPSec" */;
buildPhases = (
ECF46DBD11347F8100390CBE /* Headers */,
ECF46DBE11347F8100390CBE /* Sources */,
ECF46DBF11347F8100390CBE /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = tinyIPSec;
productName = tinyIPSec;
productReference = ECF46DC111347F8100390CBE /* libtinyIPSec.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
08FB7793FE84155DC02AAC07 /* Project object */ = {
isa = PBXProject;
buildConfigurationList = 1DEB914E08733D8E0010E9CD /* Build configuration list for PBXProject "tinySIP" */;
compatibilityVersion = "Xcode 3.1";
hasScannedForEncodings = 1;
mainGroup = 08FB7794FE84155DC02AAC07 /* tinySIP */;
projectDirPath = "";
projectRoot = "";
targets = (
D2AAC0620554660B00DB518D /* tinySIP */,
ECED65E510F99689006B4DC9 /* tinySAK */,
ECED686310F997F2006B4DC9 /* tinyNET */,
ECED689C10F998E4006B4DC9 /* tinyHTTP */,
ECED6AFD10F9A93A006B4DC9 /* test */,
ECF46DC011347F8100390CBE /* tinyIPSec */,
);
};
/* End PBXProject section */
/* Begin PBXSourcesBuildPhase section */
D2AAC0610554660B00DB518D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
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;
};
ECED65E310F99689006B4DC9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
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;
};
ECED686110F997F2006B4DC9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
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;
};
ECED689A10F998E4006B4DC9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
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;
};
ECED6AFB10F9A93A006B4DC9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECED6B1810F9A971006B4DC9 /* stdafx.c in Sources */,
ECED6B1910F9A971006B4DC9 /* test.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF46DBE11347F8100390CBE /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECF46DC411347FAA00390CBE /* tipsec.c in Sources */,
ECF46DC511347FAB00390CBE /* tipsec_xp.c in Sources */,
ECF46DC911347FAD00390CBE /* tipsec_racoon.c in Sources */,
ECF46DCC11347FAF00390CBE /* tipsec_vista.c in Sources */,
ECF46DCD11347FB100390CBE /* tipsec_common.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
ECED688E10F99866006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECED65E510F99689006B4DC9 /* tinySAK */;
targetProxy = ECED688D10F99866006B4DC9 /* PBXContainerItemProxy */;
};
ECED689210F99880006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECED65E510F99689006B4DC9 /* tinySAK */;
targetProxy = ECED689110F99880006B4DC9 /* PBXContainerItemProxy */;
};
ECED689410F99880006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECED686310F997F2006B4DC9 /* tinyNET */;
targetProxy = ECED689310F99880006B4DC9 /* PBXContainerItemProxy */;
};
ECED68C310F99975006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECED689C10F998E4006B4DC9 /* tinyHTTP */;
targetProxy = ECED68C210F99975006B4DC9 /* PBXContainerItemProxy */;
};
ECED6AF110F9A68B006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECED65E510F99689006B4DC9 /* tinySAK */;
targetProxy = ECED6AF010F9A68B006B4DC9 /* PBXContainerItemProxy */;
};
ECED6B0310F9A943006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = D2AAC0620554660B00DB518D /* tinySIP */;
targetProxy = ECED6B0210F9A943006B4DC9 /* PBXContainerItemProxy */;
};
ECED6B0510F9A943006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECED65E510F99689006B4DC9 /* tinySAK */;
targetProxy = ECED6B0410F9A943006B4DC9 /* PBXContainerItemProxy */;
};
ECED6B0710F9A943006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECED686310F997F2006B4DC9 /* tinyNET */;
targetProxy = ECED6B0610F9A943006B4DC9 /* PBXContainerItemProxy */;
};
ECED6B0910F9A943006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
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 */
1DEB914B08733D8E0010E9CD /* 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/tinyNET/src,
../../../doubango/tinySIP/include,
../../../doubango/tinyHTTP/include,
);
INSTALL_PATH = /usr/local/lib;
OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
PRODUCT_NAME = tinySIP;
};
name = Debug;
};
1DEB914C08733D8E0010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
EXECUTABLE_PREFIX = lib;
GCC_MODEL_TUNING = G5;
INSTALL_PATH = /usr/local/lib;
PRODUCT_NAME = tinySIP;
};
name = Release;
};
1DEB914F08733D8E0010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = ../../../doubango/tinyHTTP/include;
ONLY_ACTIVE_ARCH = YES;
PREBINDING = NO;
SDKROOT = macosx10.5;
};
name = Debug;
};
1DEB915008733D8E0010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
SDKROOT = macosx10.5;
};
name = Release;
};
ECED65E710F9968A006B4DC9 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
EXECUTABLE_PREFIX = lib;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
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;
};
name = Debug;
};
ECED65E810F9968A006B4DC9 /* 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;
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/../../tinySAK/Debug\"",
);
PREBINDING = NO;
PRODUCT_NAME = tinySAK;
ZERO_LINK = NO;
};
name = Release;
};
ECED686510F997F3006B4DC9 /* 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/tinyNET/src,
../../../doubango/tinySAK/src,
);
INSTALL_PATH = /usr/local/lib;
PREBINDING = NO;
PRODUCT_NAME = tinyNET;
};
name = Debug;
};
ECED686610F997F3006B4DC9 /* 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;
};
ECED689E10F998E4006B4DC9 /* 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;
INSTALL_PATH = /usr/local/lib;
PREBINDING = NO;
PRODUCT_NAME = tinyHTTP;
};
name = Debug;
};
ECED689F10F998E4006B4DC9 /* 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 = tinyHTTP;
ZERO_LINK = NO;
};
name = Release;
};
ECED6B0010F9A93A006B4DC9 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
HEADER_SEARCH_PATHS = (
../../../doubango/tinyHTTP/include,
../../../doubango/tinySAK/src,
../../../doubango/tinySIP/include,
../../../doubango/tinyNET/src,
);
INSTALL_PATH = /usr/local/bin;
PREBINDING = NO;
PRODUCT_NAME = test;
};
name = Debug;
};
ECED6B0110F9A93A006B4DC9 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
GCC_MODEL_TUNING = G5;
INSTALL_PATH = /usr/local/bin;
PREBINDING = NO;
PRODUCT_NAME = test;
ZERO_LINK = NO;
};
name = Release;
};
ECF46DC211347F8200390CBE /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
EXECUTABLE_PREFIX = lib;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
HEADER_SEARCH_PATHS = ../../../doubango/tinySAK/src;
INSTALL_PATH = /usr/local/lib;
PREBINDING = NO;
PRODUCT_NAME = tinyIPSec;
};
name = Debug;
};
ECF46DC311347F8200390CBE /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
EXECUTABLE_PREFIX = lib;
GCC_ENABLE_FIX_AND_CONTINUE = NO;
GCC_MODEL_TUNING = G5;
INSTALL_PATH = /usr/local/lib;
PREBINDING = NO;
PRODUCT_NAME = tinyIPSec;
ZERO_LINK = NO;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1DEB914A08733D8E0010E9CD /* Build configuration list for PBXNativeTarget "tinySIP" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB914B08733D8E0010E9CD /* Debug */,
1DEB914C08733D8E0010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
1DEB914E08733D8E0010E9CD /* Build configuration list for PBXProject "tinySIP" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB914F08733D8E0010E9CD /* Debug */,
1DEB915008733D8E0010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECED67EA10F996A8006B4DC9 /* Build configuration list for PBXNativeTarget "tinySAK" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECED65E710F9968A006B4DC9 /* Debug */,
ECED65E810F9968A006B4DC9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECED688910F99812006B4DC9 /* Build configuration list for PBXNativeTarget "tinyNET" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECED686510F997F3006B4DC9 /* Debug */,
ECED686610F997F3006B4DC9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECED68A110F998EB006B4DC9 /* Build configuration list for PBXNativeTarget "tinyHTTP" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECED689E10F998E4006B4DC9 /* Debug */,
ECED689F10F998E4006B4DC9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECED6B0F10F9A953006B4DC9 /* Build configuration list for PBXNativeTarget "test" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECED6B0010F9A93A006B4DC9 /* Debug */,
ECED6B0110F9A93A006B4DC9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECF46DD911347FCD00390CBE /* Build configuration list for PBXNativeTarget "tinyIPSec" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECF46DC211347F8200390CBE /* Debug */,
ECF46DC311347F8200390CBE /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
}
|