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
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 45;
objects = {
/* Begin PBXBuildFile section */
8DD76FB00486AB0100D96B5E /* tinyDEMO.1 in CopyFiles */ = {isa = PBXBuildFile; fileRef = C6A0FF2C0290799A04C91782 /* tinyDEMO.1 */; };
ECF0DBAE118CC094001A3D6F /* tinySAK_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D745118CC091001A3D6F /* tinySAK_config.h */; };
ECF0DBAF118CC094001A3D6F /* tsk.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D746118CC091001A3D6F /* tsk.c */; };
ECF0DBB0118CC094001A3D6F /* tsk.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D747118CC091001A3D6F /* tsk.h */; };
ECF0DBB1118CC094001A3D6F /* tsk_base64.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D748118CC091001A3D6F /* tsk_base64.c */; };
ECF0DBB2118CC094001A3D6F /* tsk_base64.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D749118CC091001A3D6F /* tsk_base64.h */; };
ECF0DBB3118CC094001A3D6F /* tsk_binaryutils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D74A118CC091001A3D6F /* tsk_binaryutils.c */; };
ECF0DBB4118CC094001A3D6F /* tsk_binaryutils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D74B118CC091001A3D6F /* tsk_binaryutils.h */; };
ECF0DBB5118CC094001A3D6F /* tsk_buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D74C118CC091001A3D6F /* tsk_buffer.c */; };
ECF0DBB6118CC094001A3D6F /* tsk_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D74D118CC091001A3D6F /* tsk_buffer.h */; };
ECF0DBB7118CC094001A3D6F /* tsk_common.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D74E118CC091001A3D6F /* tsk_common.h */; };
ECF0DBB8118CC094001A3D6F /* tsk_condwait.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D74F118CC091001A3D6F /* tsk_condwait.c */; };
ECF0DBB9118CC094001A3D6F /* tsk_condwait.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D750118CC091001A3D6F /* tsk_condwait.h */; };
ECF0DBBA118CC094001A3D6F /* tsk_debug.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D751118CC091001A3D6F /* tsk_debug.c */; };
ECF0DBBB118CC094001A3D6F /* tsk_debug.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D752118CC091001A3D6F /* tsk_debug.h */; };
ECF0DBBC118CC094001A3D6F /* tsk_errno.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D753118CC091001A3D6F /* tsk_errno.h */; };
ECF0DBBD118CC094001A3D6F /* tsk_fsm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D754118CC091001A3D6F /* tsk_fsm.c */; };
ECF0DBBE118CC094001A3D6F /* tsk_fsm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D755118CC091001A3D6F /* tsk_fsm.h */; };
ECF0DBBF118CC094001A3D6F /* tsk_hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D756118CC091001A3D6F /* tsk_hmac.c */; };
ECF0DBC0118CC094001A3D6F /* tsk_hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D757118CC091001A3D6F /* tsk_hmac.h */; };
ECF0DBC1118CC094001A3D6F /* tsk_list.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D758118CC091001A3D6F /* tsk_list.c */; };
ECF0DBC2118CC094001A3D6F /* tsk_list.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D759118CC091001A3D6F /* tsk_list.h */; };
ECF0DBC3118CC094001A3D6F /* tsk_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D75A118CC091001A3D6F /* tsk_md5.c */; };
ECF0DBC4118CC094001A3D6F /* tsk_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D75B118CC091001A3D6F /* tsk_md5.h */; };
ECF0DBC5118CC094001A3D6F /* tsk_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D75C118CC091001A3D6F /* tsk_memory.c */; };
ECF0DBC6118CC094001A3D6F /* tsk_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D75D118CC091001A3D6F /* tsk_memory.h */; };
ECF0DBC7118CC094001A3D6F /* tsk_mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D75E118CC091001A3D6F /* tsk_mutex.c */; };
ECF0DBC8118CC094001A3D6F /* tsk_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D75F118CC091001A3D6F /* tsk_mutex.h */; };
ECF0DBC9118CC094001A3D6F /* tsk_object.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D760118CC091001A3D6F /* tsk_object.c */; };
ECF0DBCA118CC094001A3D6F /* tsk_object.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D761118CC091001A3D6F /* tsk_object.h */; };
ECF0DBCB118CC094001A3D6F /* tsk_options.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D762118CC091001A3D6F /* tsk_options.c */; };
ECF0DBCC118CC094001A3D6F /* tsk_options.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D763118CC091001A3D6F /* tsk_options.h */; };
ECF0DBCD118CC094001A3D6F /* tsk_params.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D764118CC091001A3D6F /* tsk_params.c */; };
ECF0DBCE118CC094001A3D6F /* tsk_params.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D765118CC091001A3D6F /* tsk_params.h */; };
ECF0DBCF118CC094001A3D6F /* tsk_ppfcs16.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D766118CC091001A3D6F /* tsk_ppfcs16.c */; };
ECF0DBD0118CC094001A3D6F /* tsk_ppfcs16.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D767118CC091001A3D6F /* tsk_ppfcs16.h */; };
ECF0DBD1118CC094001A3D6F /* tsk_ppfcs32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D768118CC091001A3D6F /* tsk_ppfcs32.c */; };
ECF0DBD2118CC094001A3D6F /* tsk_ppfcs32.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D769118CC091001A3D6F /* tsk_ppfcs32.h */; };
ECF0DBD3118CC094001A3D6F /* tsk_ragel_state.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D76A118CC091001A3D6F /* tsk_ragel_state.c */; };
ECF0DBD4118CC094001A3D6F /* tsk_ragel_state.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D76B118CC091001A3D6F /* tsk_ragel_state.h */; };
ECF0DBD5118CC094001A3D6F /* tsk_runnable.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D76C118CC091001A3D6F /* tsk_runnable.c */; };
ECF0DBD6118CC094001A3D6F /* tsk_runnable.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D76D118CC091001A3D6F /* tsk_runnable.h */; };
ECF0DBD7118CC094001A3D6F /* tsk_safeobj.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D76E118CC091001A3D6F /* tsk_safeobj.c */; };
ECF0DBD8118CC094001A3D6F /* tsk_safeobj.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D76F118CC091001A3D6F /* tsk_safeobj.h */; };
ECF0DBD9118CC094001A3D6F /* tsk_semaphore.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D770118CC091001A3D6F /* tsk_semaphore.c */; };
ECF0DBDA118CC094001A3D6F /* tsk_semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D771118CC091001A3D6F /* tsk_semaphore.h */; };
ECF0DBDB118CC094001A3D6F /* tsk_sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D772118CC091001A3D6F /* tsk_sha1.c */; };
ECF0DBDC118CC094001A3D6F /* tsk_sha1.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D773118CC091001A3D6F /* tsk_sha1.h */; };
ECF0DBDD118CC094001A3D6F /* tsk_string.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D774118CC091001A3D6F /* tsk_string.c */; };
ECF0DBDE118CC094001A3D6F /* tsk_string.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D775118CC091001A3D6F /* tsk_string.h */; };
ECF0DBDF118CC094001A3D6F /* tsk_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D776118CC091001A3D6F /* tsk_thread.c */; };
ECF0DBE0118CC094001A3D6F /* tsk_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D777118CC091001A3D6F /* tsk_thread.h */; };
ECF0DBE1118CC094001A3D6F /* tsk_time.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D778118CC091001A3D6F /* tsk_time.c */; };
ECF0DBE2118CC094001A3D6F /* tsk_time.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D779118CC091001A3D6F /* tsk_time.h */; };
ECF0DBE3118CC094001A3D6F /* tsk_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D77A118CC091001A3D6F /* tsk_timer.c */; };
ECF0DBE4118CC094001A3D6F /* tsk_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D77B118CC091001A3D6F /* tsk_timer.h */; };
ECF0DBE5118CC094001A3D6F /* tsk_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D77C118CC091001A3D6F /* tsk_url.c */; };
ECF0DBE6118CC094001A3D6F /* tsk_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D77D118CC091001A3D6F /* tsk_url.h */; };
ECF0DBE7118CC094001A3D6F /* tsk_uuid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D77E118CC091001A3D6F /* tsk_uuid.c */; };
ECF0DBE8118CC094001A3D6F /* tsk_uuid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D77F118CC091001A3D6F /* tsk_uuid.h */; };
ECF0DBE9118CC094001A3D6F /* tsk_xml.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0D780118CC091001A3D6F /* tsk_xml.c */; };
ECF0DBEA118CC094001A3D6F /* tsk_xml.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0D781118CC091001A3D6F /* tsk_xml.h */; };
ECF0DEE3118CC19E001A3D6F /* tnet_dhcp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE72118CC19E001A3D6F /* tnet_dhcp.c */; };
ECF0DEE4118CC19E001A3D6F /* tnet_dhcp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE73118CC19E001A3D6F /* tnet_dhcp.h */; };
ECF0DEE5118CC19E001A3D6F /* tnet_dhcp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE74118CC19E001A3D6F /* tnet_dhcp_message.c */; };
ECF0DEE6118CC19E001A3D6F /* tnet_dhcp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE75118CC19E001A3D6F /* tnet_dhcp_message.h */; };
ECF0DEE7118CC19E001A3D6F /* tnet_dhcp_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE76118CC19E001A3D6F /* tnet_dhcp_option.c */; };
ECF0DEE8118CC19E001A3D6F /* tnet_dhcp_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE77118CC19E001A3D6F /* tnet_dhcp_option.h */; };
ECF0DEE9118CC19E001A3D6F /* tnet_dhcp_option_sip.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE78118CC19E001A3D6F /* tnet_dhcp_option_sip.c */; };
ECF0DEEA118CC19E001A3D6F /* tnet_dhcp_option_sip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE79118CC19E001A3D6F /* tnet_dhcp_option_sip.h */; };
ECF0DEEB118CC19E001A3D6F /* tnet_dhcp6.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE7B118CC19E001A3D6F /* tnet_dhcp6.c */; };
ECF0DEEC118CC19E001A3D6F /* tnet_dhcp6.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE7C118CC19E001A3D6F /* tnet_dhcp6.h */; };
ECF0DEED118CC19E001A3D6F /* tnet_dhcp6_duid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE7D118CC19E001A3D6F /* tnet_dhcp6_duid.c */; };
ECF0DEEE118CC19E001A3D6F /* tnet_dhcp6_duid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE7E118CC19E001A3D6F /* tnet_dhcp6_duid.h */; };
ECF0DEEF118CC19E001A3D6F /* tnet_dhcp6_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE7F118CC19E001A3D6F /* tnet_dhcp6_message.c */; };
ECF0DEF0118CC19E001A3D6F /* tnet_dhcp6_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE80118CC19E001A3D6F /* tnet_dhcp6_message.h */; };
ECF0DEF1118CC19E001A3D6F /* tnet_dhcp6_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE81118CC19E001A3D6F /* tnet_dhcp6_option.c */; };
ECF0DEF2118CC19E001A3D6F /* tnet_dhcp6_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE82118CC19E001A3D6F /* tnet_dhcp6_option.h */; };
ECF0DEF3118CC19E001A3D6F /* tnet_dns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE84118CC19E001A3D6F /* tnet_dns.c */; };
ECF0DEF4118CC19E001A3D6F /* tnet_dns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE85118CC19E001A3D6F /* tnet_dns.h */; };
ECF0DEF5118CC19E001A3D6F /* tnet_dns_a.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE86118CC19E001A3D6F /* tnet_dns_a.c */; };
ECF0DEF6118CC19E001A3D6F /* tnet_dns_a.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE87118CC19E001A3D6F /* tnet_dns_a.h */; };
ECF0DEF7118CC19E001A3D6F /* tnet_dns_aaaa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE88118CC19E001A3D6F /* tnet_dns_aaaa.c */; };
ECF0DEF8118CC19E001A3D6F /* tnet_dns_aaaa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE89118CC19E001A3D6F /* tnet_dns_aaaa.h */; };
ECF0DEF9118CC19E001A3D6F /* tnet_dns_cname.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE8A118CC19E001A3D6F /* tnet_dns_cname.c */; };
ECF0DEFA118CC19E001A3D6F /* tnet_dns_cname.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE8B118CC19E001A3D6F /* tnet_dns_cname.h */; };
ECF0DEFB118CC19E001A3D6F /* tnet_dns_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE8C118CC19E001A3D6F /* tnet_dns_message.c */; };
ECF0DEFC118CC19E001A3D6F /* tnet_dns_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE8D118CC19E001A3D6F /* tnet_dns_message.h */; };
ECF0DEFD118CC19E001A3D6F /* tnet_dns_mx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE8E118CC19E001A3D6F /* tnet_dns_mx.c */; };
ECF0DEFE118CC19E001A3D6F /* tnet_dns_mx.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE8F118CC19E001A3D6F /* tnet_dns_mx.h */; };
ECF0DEFF118CC19E001A3D6F /* tnet_dns_naptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE90118CC19E001A3D6F /* tnet_dns_naptr.c */; };
ECF0DF00118CC19E001A3D6F /* tnet_dns_naptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE91118CC19E001A3D6F /* tnet_dns_naptr.h */; };
ECF0DF01118CC19E001A3D6F /* tnet_dns_ns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE92118CC19E001A3D6F /* tnet_dns_ns.c */; };
ECF0DF02118CC19E001A3D6F /* tnet_dns_ns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE93118CC19E001A3D6F /* tnet_dns_ns.h */; };
ECF0DF03118CC19E001A3D6F /* tnet_dns_opt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE94118CC19E001A3D6F /* tnet_dns_opt.c */; };
ECF0DF04118CC19E001A3D6F /* tnet_dns_opt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE95118CC19E001A3D6F /* tnet_dns_opt.h */; };
ECF0DF05118CC19E001A3D6F /* tnet_dns_ptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE96118CC19E001A3D6F /* tnet_dns_ptr.c */; };
ECF0DF06118CC19E001A3D6F /* tnet_dns_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE97118CC19E001A3D6F /* tnet_dns_ptr.h */; };
ECF0DF07118CC19E001A3D6F /* tnet_dns_regexp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE98118CC19E001A3D6F /* tnet_dns_regexp.c */; };
ECF0DF08118CC19E001A3D6F /* tnet_dns_regexp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE99118CC19E001A3D6F /* tnet_dns_regexp.h */; };
ECF0DF09118CC19E001A3D6F /* tnet_dns_resolvconf.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE9A118CC19E001A3D6F /* tnet_dns_resolvconf.c */; };
ECF0DF0A118CC19E001A3D6F /* tnet_dns_resolvconf.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE9B118CC19E001A3D6F /* tnet_dns_resolvconf.h */; };
ECF0DF0B118CC19E001A3D6F /* tnet_dns_rr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE9C118CC19E001A3D6F /* tnet_dns_rr.c */; };
ECF0DF0C118CC19E001A3D6F /* tnet_dns_rr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE9D118CC19E001A3D6F /* tnet_dns_rr.h */; };
ECF0DF0D118CC19E001A3D6F /* tnet_dns_soa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DE9E118CC19E001A3D6F /* tnet_dns_soa.c */; };
ECF0DF0E118CC19E001A3D6F /* tnet_dns_soa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DE9F118CC19E001A3D6F /* tnet_dns_soa.h */; };
ECF0DF0F118CC19E001A3D6F /* tnet_dns_srv.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEA0118CC19E001A3D6F /* tnet_dns_srv.c */; };
ECF0DF10118CC19E001A3D6F /* tnet_dns_srv.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEA1118CC19E001A3D6F /* tnet_dns_srv.h */; };
ECF0DF11118CC19E001A3D6F /* tnet_dns_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEA2118CC19E001A3D6F /* tnet_dns_txt.c */; };
ECF0DF12118CC19E001A3D6F /* tnet_dns_txt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEA3118CC19E001A3D6F /* tnet_dns_txt.h */; };
ECF0DF13118CC19E001A3D6F /* tnet_ice.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEA5118CC19E001A3D6F /* tnet_ice.c */; };
ECF0DF14118CC19E001A3D6F /* tnet_ice.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEA6118CC19E001A3D6F /* tnet_ice.h */; };
ECF0DF15118CC19E001A3D6F /* tnet_stun.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEA8118CC19E001A3D6F /* tnet_stun.c */; };
ECF0DF16118CC19E001A3D6F /* tnet_stun.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEA9118CC19E001A3D6F /* tnet_stun.h */; };
ECF0DF17118CC19E001A3D6F /* tnet_stun_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEAA118CC19E001A3D6F /* tnet_stun_attribute.c */; };
ECF0DF18118CC19E001A3D6F /* tnet_stun_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEAB118CC19E001A3D6F /* tnet_stun_attribute.h */; };
ECF0DF19118CC19E001A3D6F /* tnet_stun_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEAC118CC19E001A3D6F /* tnet_stun_message.c */; };
ECF0DF1A118CC19E001A3D6F /* tnet_stun_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEAD118CC19E001A3D6F /* tnet_stun_message.h */; };
ECF0DF1B118CC19E001A3D6F /* tinynet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEAE118CC19E001A3D6F /* tinynet.h */; };
ECF0DF1C118CC19E001A3D6F /* tinyNET_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEAF118CC19E001A3D6F /* tinyNET_config.h */; };
ECF0DF1D118CC19E001A3D6F /* tnet_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEB1118CC19E001A3D6F /* tnet_tls.c */; };
ECF0DF1E118CC19E001A3D6F /* tnet_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEB2118CC19E001A3D6F /* tnet_tls.h */; };
ECF0DF1F118CC19E001A3D6F /* tnet.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEB3118CC19E001A3D6F /* tnet.c */; };
ECF0DF20118CC19E001A3D6F /* tnet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEB4118CC19E001A3D6F /* tnet.h */; };
ECF0DF21118CC19E001A3D6F /* tnet_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEB5118CC19E001A3D6F /* tnet_auth.c */; };
ECF0DF22118CC19E001A3D6F /* tnet_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEB6118CC19E001A3D6F /* tnet_auth.h */; };
ECF0DF23118CC19E001A3D6F /* tnet_endianness.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEB7118CC19E001A3D6F /* tnet_endianness.c */; };
ECF0DF24118CC19E001A3D6F /* tnet_endianness.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEB8118CC19E001A3D6F /* tnet_endianness.h */; };
ECF0DF25118CC19E001A3D6F /* tnet_hardwares.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEB9118CC19E001A3D6F /* tnet_hardwares.h */; };
ECF0DF26118CC19E001A3D6F /* tnet_nat.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEBA118CC19E001A3D6F /* tnet_nat.c */; };
ECF0DF27118CC19E001A3D6F /* tnet_nat.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEBB118CC19E001A3D6F /* tnet_nat.h */; };
ECF0DF28118CC19E001A3D6F /* tnet_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEBC118CC19E001A3D6F /* tnet_poll.c */; };
ECF0DF29118CC19E001A3D6F /* tnet_poll.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEBD118CC19E001A3D6F /* tnet_poll.h */; };
ECF0DF2A118CC19E001A3D6F /* tnet_proto.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEBE118CC19E001A3D6F /* tnet_proto.h */; };
ECF0DF2B118CC19E001A3D6F /* tnet_socket.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEBF118CC19E001A3D6F /* tnet_socket.c */; };
ECF0DF2C118CC19E001A3D6F /* tnet_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEC0118CC19E001A3D6F /* tnet_socket.h */; };
ECF0DF2D118CC19E001A3D6F /* tnet_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEC1118CC19E001A3D6F /* tnet_transport.c */; };
ECF0DF2E118CC19E001A3D6F /* tnet_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEC2118CC19E001A3D6F /* tnet_transport.h */; };
ECF0DF2F118CC19E001A3D6F /* tnet_transport_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEC3118CC19E001A3D6F /* tnet_transport_poll.c */; };
ECF0DF30118CC19E001A3D6F /* tnet_transport_win32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEC4118CC19E001A3D6F /* tnet_transport_win32.c */; };
ECF0DF31118CC19E001A3D6F /* tnet_types.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEC5118CC19E001A3D6F /* tnet_types.h */; };
ECF0DF32118CC19E001A3D6F /* tnet_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEC6118CC19E001A3D6F /* tnet_utils.c */; };
ECF0DF33118CC19E001A3D6F /* tnet_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DEC7118CC19E001A3D6F /* tnet_utils.h */; };
ECF0DF34118CC19E001A3D6F /* tnet_turn.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DEC9118CC19E001A3D6F /* tnet_turn.c */; };
ECF0DF35118CC19E001A3D6F /* tnet_turn.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DECA118CC19E001A3D6F /* tnet_turn.h */; };
ECF0DF36118CC19E001A3D6F /* tnet_turn_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DECB118CC19E001A3D6F /* tnet_turn_attribute.c */; };
ECF0DF37118CC19E001A3D6F /* tnet_turn_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DECC118CC19E001A3D6F /* tnet_turn_attribute.h */; };
ECF0DF38118CC19E001A3D6F /* tnet_turn_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DECD118CC19E001A3D6F /* tnet_turn_message.c */; };
ECF0DF39118CC19E001A3D6F /* tnet_turn_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DECE118CC19E001A3D6F /* tnet_turn_message.h */; };
ECF0DF4C118CC1FD001A3D6F /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6CC118CC01D001A3D6F /* libtinySAK.dylib */; };
ECF0DF5E118CC245001A3D6F /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6CC118CC01D001A3D6F /* libtinySAK.dylib */; };
ECF0DF93118CC270001A3D6F /* tsms_rpdu.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF6A118CC270001A3D6F /* tsms_rpdu.h */; };
ECF0DF94118CC270001A3D6F /* tsms_tpdu_command.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF6C118CC270001A3D6F /* tsms_tpdu_command.h */; };
ECF0DF95118CC270001A3D6F /* tsms_tpdu_deliver.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF6D118CC270001A3D6F /* tsms_tpdu_deliver.h */; };
ECF0DF96118CC270001A3D6F /* tsms_tpdu_report.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF6E118CC270001A3D6F /* tsms_tpdu_report.h */; };
ECF0DF97118CC270001A3D6F /* tsms_tpdu_status_report.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF6F118CC270001A3D6F /* tsms_tpdu_status_report.h */; };
ECF0DF98118CC270001A3D6F /* tsms_tpdu_submit.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF70118CC270001A3D6F /* tsms_tpdu_submit.h */; };
ECF0DF99118CC270001A3D6F /* tsms.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF71118CC270001A3D6F /* tsms.h */; };
ECF0DF9A118CC270001A3D6F /* tsms_address.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF72118CC270001A3D6F /* tsms_address.h */; };
ECF0DF9B118CC270001A3D6F /* tsms_common.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF73118CC270001A3D6F /* tsms_common.h */; };
ECF0DF9C118CC270001A3D6F /* tsms_etsi_gsm_03_38.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF74118CC270001A3D6F /* tsms_etsi_gsm_03_38.h */; };
ECF0DF9D118CC270001A3D6F /* tsms_packing.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF75118CC270001A3D6F /* tsms_packing.h */; };
ECF0DF9E118CC270001A3D6F /* tinysms.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF76118CC270001A3D6F /* tinysms.h */; };
ECF0DF9F118CC270001A3D6F /* tinysms_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DF77118CC270001A3D6F /* tinysms_config.h */; };
ECF0DFA0118CC270001A3D6F /* tsms_rpdu.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DF7B118CC270001A3D6F /* tsms_rpdu.c */; };
ECF0DFA1118CC270001A3D6F /* tsms_tpdu_command.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DF7D118CC270001A3D6F /* tsms_tpdu_command.c */; };
ECF0DFA2118CC270001A3D6F /* tsms_tpdu_deliver.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DF7E118CC270001A3D6F /* tsms_tpdu_deliver.c */; };
ECF0DFA3118CC270001A3D6F /* tsms_tpdu_report.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DF7F118CC270001A3D6F /* tsms_tpdu_report.c */; };
ECF0DFA4118CC270001A3D6F /* tsms_tpdu_status_report.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DF80118CC270001A3D6F /* tsms_tpdu_status_report.c */; };
ECF0DFA5118CC270001A3D6F /* tsms_tpdu_submit.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DF81118CC270001A3D6F /* tsms_tpdu_submit.c */; };
ECF0DFA6118CC270001A3D6F /* tsms.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DF82118CC270001A3D6F /* tsms.c */; };
ECF0DFA7118CC270001A3D6F /* tsms_address.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DF83118CC270001A3D6F /* tsms_address.c */; };
ECF0DFA8118CC270001A3D6F /* tsms_common.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DF84118CC270001A3D6F /* tsms_common.c */; };
ECF0DFA9118CC270001A3D6F /* tsms_packing.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DF85118CC270001A3D6F /* tsms_packing.c */; };
ECF0E014118CC4B6001A3D6F /* thttp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFC3118CC4B6001A3D6F /* thttp.h */; };
ECF0E015118CC4B6001A3D6F /* thttp_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFC6118CC4B6001A3D6F /* thttp_auth.h */; };
ECF0E016118CC4B6001A3D6F /* thttp_challenge.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFC7118CC4B6001A3D6F /* thttp_challenge.h */; };
ECF0E017118CC4B6001A3D6F /* thttp_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFC9118CC4B6001A3D6F /* thttp_header.h */; };
ECF0E018118CC4B6001A3D6F /* thttp_header_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFCA118CC4B6001A3D6F /* thttp_header_Authorization.h */; };
ECF0E019118CC4B6001A3D6F /* thttp_header_Content_Length.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFCB118CC4B6001A3D6F /* thttp_header_Content_Length.h */; };
ECF0E01A118CC4B6001A3D6F /* thttp_header_Content_Type.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFCC118CC4B6001A3D6F /* thttp_header_Content_Type.h */; };
ECF0E01B118CC4B6001A3D6F /* thttp_header_Dummy.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFCD118CC4B6001A3D6F /* thttp_header_Dummy.h */; };
ECF0E01C118CC4B6001A3D6F /* thttp_header_ETag.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFCE118CC4B6001A3D6F /* thttp_header_ETag.h */; };
ECF0E01D118CC4B6001A3D6F /* thttp_header_Transfer_Encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFCF118CC4B6001A3D6F /* thttp_header_Transfer_Encoding.h */; };
ECF0E01E118CC4B6001A3D6F /* thttp_header_WWW_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFD0118CC4B6001A3D6F /* thttp_header_WWW_Authenticate.h */; };
ECF0E01F118CC4B6001A3D6F /* thttp_parser_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFD2118CC4B6001A3D6F /* thttp_parser_header.h */; };
ECF0E020118CC4B6001A3D6F /* thttp_parser_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFD3118CC4B6001A3D6F /* thttp_parser_message.h */; };
ECF0E021118CC4B6001A3D6F /* thttp_parser_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFD4118CC4B6001A3D6F /* thttp_parser_url.h */; };
ECF0E022118CC4B6001A3D6F /* thttp_action.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFD5118CC4B6001A3D6F /* thttp_action.h */; };
ECF0E023118CC4B6001A3D6F /* thttp_dialog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFD6118CC4B6001A3D6F /* thttp_dialog.h */; };
ECF0E024118CC4B6001A3D6F /* thttp_event.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFD7118CC4B6001A3D6F /* thttp_event.h */; };
ECF0E025118CC4B6001A3D6F /* thttp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFD8118CC4B6001A3D6F /* thttp_message.h */; };
ECF0E026118CC4B6001A3D6F /* thttp_session.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFD9118CC4B6001A3D6F /* thttp_session.h */; };
ECF0E027118CC4B6001A3D6F /* thttp_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFDA118CC4B6001A3D6F /* thttp_url.h */; };
ECF0E028118CC4B6001A3D6F /* tinyhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFDB118CC4B6001A3D6F /* tinyhttp.h */; };
ECF0E029118CC4B6001A3D6F /* tinyhttp_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0DFDC118CC4B6001A3D6F /* tinyhttp_config.h */; };
ECF0E02A118CC4B6001A3D6F /* thttp_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFEF118CC4B6001A3D6F /* thttp_auth.c */; };
ECF0E02B118CC4B6001A3D6F /* thttp_challenge.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFF0118CC4B6001A3D6F /* thttp_challenge.c */; };
ECF0E02C118CC4B6001A3D6F /* thttp_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFF2118CC4B6001A3D6F /* thttp_header.c */; };
ECF0E02D118CC4B6001A3D6F /* thttp_header_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFF3118CC4B6001A3D6F /* thttp_header_Authorization.c */; };
ECF0E02E118CC4B6001A3D6F /* thttp_header_Content_Length.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFF4118CC4B6001A3D6F /* thttp_header_Content_Length.c */; };
ECF0E02F118CC4B6001A3D6F /* thttp_header_Content_Type.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFF5118CC4B6001A3D6F /* thttp_header_Content_Type.c */; };
ECF0E030118CC4B6001A3D6F /* thttp_header_Dummy.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFF6118CC4B6001A3D6F /* thttp_header_Dummy.c */; };
ECF0E031118CC4B6001A3D6F /* thttp_header_ETag.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFF7118CC4B6001A3D6F /* thttp_header_ETag.c */; };
ECF0E032118CC4B6001A3D6F /* thttp_header_Transfer_Encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFF8118CC4B6001A3D6F /* thttp_header_Transfer_Encoding.c */; };
ECF0E033118CC4B6001A3D6F /* thttp_header_WWW_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFF9118CC4B6001A3D6F /* thttp_header_WWW_Authenticate.c */; };
ECF0E035118CC4B6001A3D6F /* thttp_parser_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFFC118CC4B6001A3D6F /* thttp_parser_header.c */; };
ECF0E036118CC4B6001A3D6F /* thttp_parser_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFFD118CC4B6001A3D6F /* thttp_parser_message.c */; };
ECF0E037118CC4B6001A3D6F /* thttp_parser_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFFE118CC4B6001A3D6F /* thttp_parser_url.c */; };
ECF0E038118CC4B6001A3D6F /* thttp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0DFFF118CC4B6001A3D6F /* thttp.c */; };
ECF0E039118CC4B6001A3D6F /* thttp_action.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E000118CC4B6001A3D6F /* thttp_action.c */; };
ECF0E03A118CC4B6001A3D6F /* thttp_dialog.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E001118CC4B6001A3D6F /* thttp_dialog.c */; };
ECF0E03B118CC4B6001A3D6F /* thttp_event.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E002118CC4B6001A3D6F /* thttp_event.c */; };
ECF0E03C118CC4B6001A3D6F /* thttp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E003118CC4B6001A3D6F /* thttp_message.c */; };
ECF0E03D118CC4B6001A3D6F /* thttp_session.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E004118CC4B6001A3D6F /* thttp_session.c */; };
ECF0E03E118CC4B6001A3D6F /* thttp_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E005118CC4B6001A3D6F /* thttp_url.c */; };
ECF0E04C118CC534001A3D6F /* libtinyNET.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6D3118CC02E001A3D6F /* libtinyNET.dylib */; };
ECF0E04D118CC534001A3D6F /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6CC118CC01D001A3D6F /* libtinySAK.dylib */; };
ECF0E059118CC59F001A3D6F /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6CC118CC01D001A3D6F /* libtinySAK.dylib */; };
ECF0E073118CC5B6001A3D6F /* tinyipsec_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E060118CC5B6001A3D6F /* tinyipsec_config.h */; };
ECF0E074118CC5B6001A3D6F /* tipsec.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E061118CC5B6001A3D6F /* tipsec.c */; };
ECF0E075118CC5B6001A3D6F /* tipsec.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E062118CC5B6001A3D6F /* tipsec.h */; };
ECF0E076118CC5B6001A3D6F /* tipsec_common.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E063118CC5B6001A3D6F /* tipsec_common.c */; };
ECF0E077118CC5B6001A3D6F /* tipsec_common.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E064118CC5B6001A3D6F /* tipsec_common.h */; };
ECF0E078118CC5B6001A3D6F /* tipsec_racoon.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E065118CC5B6001A3D6F /* tipsec_racoon.c */; };
ECF0E079118CC5B6001A3D6F /* tipsec_racoon.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E066118CC5B6001A3D6F /* tipsec_racoon.h */; };
ECF0E07A118CC5B6001A3D6F /* tipsec_vista.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E067118CC5B6001A3D6F /* tipsec_vista.c */; };
ECF0E07B118CC5B6001A3D6F /* tipsec_vista.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E068118CC5B6001A3D6F /* tipsec_vista.h */; };
ECF0E07C118CC5B6001A3D6F /* tipsec_xp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E069118CC5B6001A3D6F /* tipsec_xp.c */; };
ECF0E07D118CC5B6001A3D6F /* tipsec_xp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E06A118CC5B6001A3D6F /* tipsec_xp.h */; };
ECF0E0DA118CC667001A3D6F /* tsdp_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E08D118CC667001A3D6F /* tsdp_header.h */; };
ECF0E0DB118CC667001A3D6F /* tsdp_header_A.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E08E118CC667001A3D6F /* tsdp_header_A.h */; };
ECF0E0DC118CC667001A3D6F /* tsdp_header_B.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E08F118CC667001A3D6F /* tsdp_header_B.h */; };
ECF0E0DD118CC667001A3D6F /* tsdp_header_C.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E090118CC667001A3D6F /* tsdp_header_C.h */; };
ECF0E0DE118CC667001A3D6F /* tsdp_header_Dummy.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E091118CC667001A3D6F /* tsdp_header_Dummy.h */; };
ECF0E0DF118CC667001A3D6F /* tsdp_header_E.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E092118CC667001A3D6F /* tsdp_header_E.h */; };
ECF0E0E0118CC667001A3D6F /* tsdp_header_I.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E093118CC667001A3D6F /* tsdp_header_I.h */; };
ECF0E0E1118CC667001A3D6F /* tsdp_header_K.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E094118CC667001A3D6F /* tsdp_header_K.h */; };
ECF0E0E2118CC667001A3D6F /* tsdp_header_M.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E095118CC667001A3D6F /* tsdp_header_M.h */; };
ECF0E0E3118CC667001A3D6F /* tsdp_header_O.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E096118CC667001A3D6F /* tsdp_header_O.h */; };
ECF0E0E4118CC667001A3D6F /* tsdp_header_P.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E097118CC667001A3D6F /* tsdp_header_P.h */; };
ECF0E0E5118CC667001A3D6F /* tsdp_header_R.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E098118CC667001A3D6F /* tsdp_header_R.h */; };
ECF0E0E6118CC667001A3D6F /* tsdp_header_S.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E099118CC667001A3D6F /* tsdp_header_S.h */; };
ECF0E0E7118CC667001A3D6F /* tsdp_header_T.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E09A118CC667001A3D6F /* tsdp_header_T.h */; };
ECF0E0E8118CC667001A3D6F /* tsdp_header_U.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E09B118CC667001A3D6F /* tsdp_header_U.h */; };
ECF0E0E9118CC667001A3D6F /* tsdp_header_V.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E09C118CC667001A3D6F /* tsdp_header_V.h */; };
ECF0E0EA118CC667001A3D6F /* tsdp_header_Z.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E09D118CC667001A3D6F /* tsdp_header_Z.h */; };
ECF0E0EB118CC667001A3D6F /* tsdp_parser_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E09F118CC667001A3D6F /* tsdp_parser_header.h */; };
ECF0E0EC118CC667001A3D6F /* tsdp_parser_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E0A0118CC667001A3D6F /* tsdp_parser_message.h */; };
ECF0E0ED118CC667001A3D6F /* tsdp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E0A1118CC667001A3D6F /* tsdp_message.h */; };
ECF0E0EE118CC667001A3D6F /* tinysdp_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E0A2118CC667001A3D6F /* tinysdp_config.h */; };
ECF0E0EF118CC667001A3D6F /* tsdp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E0A3118CC667001A3D6F /* tsdp.h */; };
ECF0E0F0118CC667001A3D6F /* tsdp_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0BA118CC667001A3D6F /* tsdp_header.c */; };
ECF0E0F1118CC667001A3D6F /* tsdp_header_A.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0BB118CC667001A3D6F /* tsdp_header_A.c */; };
ECF0E0F2118CC667001A3D6F /* tsdp_header_B.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0BC118CC667001A3D6F /* tsdp_header_B.c */; };
ECF0E0F3118CC667001A3D6F /* tsdp_header_C.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0BD118CC667001A3D6F /* tsdp_header_C.c */; };
ECF0E0F4118CC667001A3D6F /* tsdp_header_Dummy.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0BE118CC667001A3D6F /* tsdp_header_Dummy.c */; };
ECF0E0F5118CC667001A3D6F /* tsdp_header_E.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0BF118CC667001A3D6F /* tsdp_header_E.c */; };
ECF0E0F6118CC667001A3D6F /* tsdp_header_I.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0C0118CC667001A3D6F /* tsdp_header_I.c */; };
ECF0E0F7118CC667001A3D6F /* tsdp_header_K.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0C1118CC667001A3D6F /* tsdp_header_K.c */; };
ECF0E0F8118CC667001A3D6F /* tsdp_header_M.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0C2118CC667001A3D6F /* tsdp_header_M.c */; };
ECF0E0F9118CC667001A3D6F /* tsdp_header_O.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0C3118CC667001A3D6F /* tsdp_header_O.c */; };
ECF0E0FA118CC667001A3D6F /* tsdp_header_P.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0C4118CC667001A3D6F /* tsdp_header_P.c */; };
ECF0E0FB118CC667001A3D6F /* tsdp_header_R.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0C5118CC667001A3D6F /* tsdp_header_R.c */; };
ECF0E0FC118CC667001A3D6F /* tsdp_header_S.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0C6118CC667001A3D6F /* tsdp_header_S.c */; };
ECF0E0FD118CC667001A3D6F /* tsdp_header_T.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0C7118CC667001A3D6F /* tsdp_header_T.c */; };
ECF0E0FE118CC667001A3D6F /* tsdp_header_U.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0C8118CC667001A3D6F /* tsdp_header_U.c */; };
ECF0E0FF118CC667001A3D6F /* tsdp_header_V.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0C9118CC667001A3D6F /* tsdp_header_V.c */; };
ECF0E100118CC667001A3D6F /* tsdp_header_Z.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0CA118CC667001A3D6F /* tsdp_header_Z.c */; };
ECF0E101118CC667001A3D6F /* tsdp_parser_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0CC118CC667001A3D6F /* tsdp_parser_message.c */; };
ECF0E102118CC667001A3D6F /* tsdp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0CD118CC667001A3D6F /* tsdp.c */; };
ECF0E103118CC667001A3D6F /* tsdp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E0CE118CC667001A3D6F /* tsdp_message.c */; };
ECF0E10C118CC694001A3D6F /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6CC118CC01D001A3D6F /* libtinySAK.dylib */; };
ECF0E2B6118CC6C7001A3D6F /* tsip_api_invite.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E126118CC6C6001A3D6F /* tsip_api_invite.h */; };
ECF0E2B7118CC6C7001A3D6F /* tsip_api_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E127118CC6C6001A3D6F /* tsip_api_message.h */; };
ECF0E2B8118CC6C7001A3D6F /* tsip_api_publish.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E128118CC6C6001A3D6F /* tsip_api_publish.h */; };
ECF0E2B9118CC6C7001A3D6F /* tsip_api_register.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E129118CC6C6001A3D6F /* tsip_api_register.h */; };
ECF0E2BA118CC6C7001A3D6F /* tsip_api_subscribe.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E12A118CC6C6001A3D6F /* tsip_api_subscribe.h */; };
ECF0E2BB118CC6C7001A3D6F /* tsip_challenge.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E12C118CC6C6001A3D6F /* tsip_challenge.h */; };
ECF0E2BC118CC6C7001A3D6F /* tsip_milenage.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E12D118CC6C6001A3D6F /* tsip_milenage.h */; };
ECF0E2BD118CC6C7001A3D6F /* tsip_rijndael.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E12E118CC6C6001A3D6F /* tsip_rijndael.h */; };
ECF0E2BE118CC6C7001A3D6F /* tsip_dialog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E130118CC6C6001A3D6F /* tsip_dialog.h */; };
ECF0E2BF118CC6C7001A3D6F /* tsip_dialog_invite.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E131118CC6C6001A3D6F /* tsip_dialog_invite.h */; };
ECF0E2C0118CC6C7001A3D6F /* tsip_dialog_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E132118CC6C6001A3D6F /* tsip_dialog_layer.h */; };
ECF0E2C1118CC6C7001A3D6F /* tsip_dialog_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E133118CC6C6001A3D6F /* tsip_dialog_message.h */; };
ECF0E2C2118CC6C7001A3D6F /* tsip_dialog_publish.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E134118CC6C6001A3D6F /* tsip_dialog_publish.h */; };
ECF0E2C3118CC6C7001A3D6F /* tsip_dialog_register.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E135118CC6C6001A3D6F /* tsip_dialog_register.h */; };
ECF0E2C4118CC6C7001A3D6F /* tsip_dialog_subscribe.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E136118CC6C6001A3D6F /* tsip_dialog_subscribe.h */; };
ECF0E2C5118CC6C7001A3D6F /* tsip_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E138118CC6C6001A3D6F /* tsip_header.h */; };
ECF0E2C6118CC6C7001A3D6F /* tsip_header_accept.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E139118CC6C6001A3D6F /* tsip_header_accept.h */; };
ECF0E2C7118CC6C7001A3D6F /* tsip_header_Accept_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E13A118CC6C6001A3D6F /* tsip_header_Accept_Contact.h */; };
ECF0E2C8118CC6C7001A3D6F /* tsip_header_Accept_Encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E13B118CC6C6001A3D6F /* tsip_header_Accept_Encoding.h */; };
ECF0E2C9118CC6C7001A3D6F /* tsip_header_Accept_Language.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E13C118CC6C6001A3D6F /* tsip_header_Accept_Language.h */; };
ECF0E2CA118CC6C7001A3D6F /* tsip_header_Accept_Resource_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E13D118CC6C6001A3D6F /* tsip_header_Accept_Resource_Priority.h */; };
ECF0E2CB118CC6C7001A3D6F /* tsip_header_Alert_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E13E118CC6C6001A3D6F /* tsip_header_Alert_Info.h */; };
ECF0E2CC118CC6C7001A3D6F /* tsip_header_Allow.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E13F118CC6C6001A3D6F /* tsip_header_Allow.h */; };
ECF0E2CD118CC6C7001A3D6F /* tsip_header_Allow_Events.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E140118CC6C6001A3D6F /* tsip_header_Allow_Events.h */; };
ECF0E2CE118CC6C7001A3D6F /* tsip_header_Authentication_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E141118CC6C6001A3D6F /* tsip_header_Authentication_Info.h */; };
ECF0E2CF118CC6C7001A3D6F /* tsip_header_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E142118CC6C6001A3D6F /* tsip_header_Authorization.h */; };
ECF0E2D0118CC6C7001A3D6F /* tsip_header_Call_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E143118CC6C6001A3D6F /* tsip_header_Call_ID.h */; };
ECF0E2D1118CC6C7001A3D6F /* tsip_header_Call_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E144118CC6C6001A3D6F /* tsip_header_Call_Info.h */; };
ECF0E2D2118CC6C7001A3D6F /* tsip_header_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E145118CC6C6001A3D6F /* tsip_header_Contact.h */; };
ECF0E2D3118CC6C7001A3D6F /* tsip_header_Content_Disposition.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E146118CC6C6001A3D6F /* tsip_header_Content_Disposition.h */; };
ECF0E2D4118CC6C7001A3D6F /* tsip_header_Content_Encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E147118CC6C6001A3D6F /* tsip_header_Content_Encoding.h */; };
ECF0E2D5118CC6C7001A3D6F /* tsip_header_Content_Language.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E148118CC6C6001A3D6F /* tsip_header_Content_Language.h */; };
ECF0E2D6118CC6C7001A3D6F /* tsip_header_Content_Length.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E149118CC6C6001A3D6F /* tsip_header_Content_Length.h */; };
ECF0E2D7118CC6C7001A3D6F /* tsip_header_Content_Type.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E14A118CC6C6001A3D6F /* tsip_header_Content_Type.h */; };
ECF0E2D8118CC6C7001A3D6F /* tsip_header_CSeq.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E14B118CC6C6001A3D6F /* tsip_header_CSeq.h */; };
ECF0E2D9118CC6C7001A3D6F /* tsip_header_Date.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E14C118CC6C6001A3D6F /* tsip_header_Date.h */; };
ECF0E2DA118CC6C7001A3D6F /* tsip_header_Dummy.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E14D118CC6C6001A3D6F /* tsip_header_Dummy.h */; };
ECF0E2DB118CC6C7001A3D6F /* tsip_header_Error_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E14E118CC6C6001A3D6F /* tsip_header_Error_Info.h */; };
ECF0E2DC118CC6C7001A3D6F /* tsip_header_Event.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E14F118CC6C6001A3D6F /* tsip_header_Event.h */; };
ECF0E2DD118CC6C7001A3D6F /* tsip_header_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E150118CC6C6001A3D6F /* tsip_header_Expires.h */; };
ECF0E2DE118CC6C7001A3D6F /* tsip_header_From.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E151118CC6C6001A3D6F /* tsip_header_From.h */; };
ECF0E2DF118CC6C7001A3D6F /* tsip_header_History_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E152118CC6C6001A3D6F /* tsip_header_History_Info.h */; };
ECF0E2E0118CC6C7001A3D6F /* tsip_header_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E153118CC6C6001A3D6F /* tsip_header_Identity.h */; };
ECF0E2E1118CC6C7001A3D6F /* tsip_header_Identity_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E154118CC6C6001A3D6F /* tsip_header_Identity_Info.h */; };
ECF0E2E2118CC6C7001A3D6F /* tsip_header_In_Reply_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E155118CC6C6001A3D6F /* tsip_header_In_Reply_To.h */; };
ECF0E2E3118CC6C7001A3D6F /* tsip_header_Join.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E156118CC6C6001A3D6F /* tsip_header_Join.h */; };
ECF0E2E4118CC6C7001A3D6F /* tsip_header_Max_Forwards.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E157118CC6C6001A3D6F /* tsip_header_Max_Forwards.h */; };
ECF0E2E5118CC6C7001A3D6F /* tsip_header_MIME_Version.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E158118CC6C6001A3D6F /* tsip_header_MIME_Version.h */; };
ECF0E2E6118CC6C7001A3D6F /* tsip_header_Min_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E159118CC6C6001A3D6F /* tsip_header_Min_Expires.h */; };
ECF0E2E7118CC6C7001A3D6F /* tsip_header_Min_SE.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E15A118CC6C6001A3D6F /* tsip_header_Min_SE.h */; };
ECF0E2E8118CC6C7001A3D6F /* tsip_header_Organization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E15B118CC6C6001A3D6F /* tsip_header_Organization.h */; };
ECF0E2E9118CC6C7001A3D6F /* tsip_header_P_Access_Network_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E15C118CC6C6001A3D6F /* tsip_header_P_Access_Network_Info.h */; };
ECF0E2EA118CC6C7001A3D6F /* tsip_header_P_Answer_State.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E15D118CC6C6001A3D6F /* tsip_header_P_Answer_State.h */; };
ECF0E2EB118CC6C7001A3D6F /* tsip_header_P_Asserted_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E15E118CC6C6001A3D6F /* tsip_header_P_Asserted_Identity.h */; };
ECF0E2EC118CC6C7001A3D6F /* tsip_header_P_Associated_URI.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E15F118CC6C6001A3D6F /* tsip_header_P_Associated_URI.h */; };
ECF0E2ED118CC6C7001A3D6F /* tsip_header_P_Called_Party_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E160118CC6C6001A3D6F /* tsip_header_P_Called_Party_ID.h */; };
ECF0E2EE118CC6C7001A3D6F /* tsip_header_P_Charging_Function_Addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E161118CC6C6001A3D6F /* tsip_header_P_Charging_Function_Addresses.h */; };
ECF0E2EF118CC6C7001A3D6F /* tsip_header_P_Charging_Vector.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E162118CC6C6001A3D6F /* tsip_header_P_Charging_Vector.h */; };
ECF0E2F0118CC6C7001A3D6F /* tsip_header_P_DCS_Billing_Info.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E163118CC6C6001A3D6F /* tsip_header_P_DCS_Billing_Info.h */; };
ECF0E2F1118CC6C7001A3D6F /* tsip_header_P_DCS_LAES.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E164118CC6C6001A3D6F /* tsip_header_P_DCS_LAES.h */; };
ECF0E2F2118CC6C7001A3D6F /* tsip_header_P_DCS_OSPS.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E165118CC6C6001A3D6F /* tsip_header_P_DCS_OSPS.h */; };
ECF0E2F3118CC6C7001A3D6F /* tsip_header_P_DCS_Redirect.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E166118CC6C6001A3D6F /* tsip_header_P_DCS_Redirect.h */; };
ECF0E2F4118CC6C7001A3D6F /* tsip_header_P_DCS_Trace_Party_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E167118CC6C6001A3D6F /* tsip_header_P_DCS_Trace_Party_ID.h */; };
ECF0E2F5118CC6C7001A3D6F /* tsip_header_P_Early_Media.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E168118CC6C6001A3D6F /* tsip_header_P_Early_Media.h */; };
ECF0E2F6118CC6C7001A3D6F /* tsip_header_P_Media_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E169118CC6C6001A3D6F /* tsip_header_P_Media_Authorization.h */; };
ECF0E2F7118CC6C7001A3D6F /* tsip_header_P_Preferred_Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E16A118CC6C6001A3D6F /* tsip_header_P_Preferred_Identity.h */; };
ECF0E2F8118CC6C7001A3D6F /* tsip_header_P_Profile_Key.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E16B118CC6C6001A3D6F /* tsip_header_P_Profile_Key.h */; };
ECF0E2F9118CC6C7001A3D6F /* tsip_header_P_User_Database.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E16C118CC6C6001A3D6F /* tsip_header_P_User_Database.h */; };
ECF0E2FA118CC6C7001A3D6F /* tsip_header_P_Visited_Network_ID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E16D118CC6C6001A3D6F /* tsip_header_P_Visited_Network_ID.h */; };
ECF0E2FB118CC6C7001A3D6F /* tsip_header_Path.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E16E118CC6C6001A3D6F /* tsip_header_Path.h */; };
ECF0E2FC118CC6C7001A3D6F /* tsip_header_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E16F118CC6C6001A3D6F /* tsip_header_Priority.h */; };
ECF0E2FD118CC6C7001A3D6F /* tsip_header_Privacy.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E170118CC6C6001A3D6F /* tsip_header_Privacy.h */; };
ECF0E2FE118CC6C7001A3D6F /* tsip_header_Proxy_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E171118CC6C6001A3D6F /* tsip_header_Proxy_Authenticate.h */; };
ECF0E2FF118CC6C7001A3D6F /* tsip_header_Proxy_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E172118CC6C6001A3D6F /* tsip_header_Proxy_Authorization.h */; };
ECF0E300118CC6C7001A3D6F /* tsip_header_Proxy_Require.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E173118CC6C6001A3D6F /* tsip_header_Proxy_Require.h */; };
ECF0E301118CC6C7001A3D6F /* tsip_header_RAck.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E174118CC6C6001A3D6F /* tsip_header_RAck.h */; };
ECF0E302118CC6C7001A3D6F /* tsip_header_Reason.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E175118CC6C6001A3D6F /* tsip_header_Reason.h */; };
ECF0E303118CC6C7001A3D6F /* tsip_header_Record_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E176118CC6C6001A3D6F /* tsip_header_Record_Route.h */; };
ECF0E304118CC6C7001A3D6F /* tsip_header_Refer_Sub.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E177118CC6C6001A3D6F /* tsip_header_Refer_Sub.h */; };
ECF0E305118CC6C7001A3D6F /* tsip_header_Refer_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E178118CC6C6001A3D6F /* tsip_header_Refer_To.h */; };
ECF0E306118CC6C7001A3D6F /* tsip_header_Referred_By.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E179118CC6C6001A3D6F /* tsip_header_Referred_By.h */; };
ECF0E307118CC6C7001A3D6F /* tsip_header_Reject_Contact.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E17A118CC6C6001A3D6F /* tsip_header_Reject_Contact.h */; };
ECF0E308118CC6C7001A3D6F /* tsip_header_Replaces.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E17B118CC6C6001A3D6F /* tsip_header_Replaces.h */; };
ECF0E309118CC6C7001A3D6F /* tsip_header_Reply_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E17C118CC6C6001A3D6F /* tsip_header_Reply_To.h */; };
ECF0E30A118CC6C7001A3D6F /* tsip_header_Request_Disposition.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E17D118CC6C6001A3D6F /* tsip_header_Request_Disposition.h */; };
ECF0E30B118CC6C7001A3D6F /* tsip_header_Require.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E17E118CC6C7001A3D6F /* tsip_header_Require.h */; };
ECF0E30C118CC6C7001A3D6F /* tsip_header_Resource_Priority.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E17F118CC6C7001A3D6F /* tsip_header_Resource_Priority.h */; };
ECF0E30D118CC6C7001A3D6F /* tsip_header_Retry_After.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E180118CC6C7001A3D6F /* tsip_header_Retry_After.h */; };
ECF0E30E118CC6C7001A3D6F /* tsip_header_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E181118CC6C7001A3D6F /* tsip_header_Route.h */; };
ECF0E30F118CC6C7001A3D6F /* tsip_header_RSeq.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E182118CC6C7001A3D6F /* tsip_header_RSeq.h */; };
ECF0E310118CC6C7001A3D6F /* tsip_header_Security_Client.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E183118CC6C7001A3D6F /* tsip_header_Security_Client.h */; };
ECF0E311118CC6C7001A3D6F /* tsip_header_Security_Server.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E184118CC6C7001A3D6F /* tsip_header_Security_Server.h */; };
ECF0E312118CC6C7001A3D6F /* tsip_header_Security_Verify.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E185118CC6C7001A3D6F /* tsip_header_Security_Verify.h */; };
ECF0E313118CC6C7001A3D6F /* tsip_header_Server.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E186118CC6C7001A3D6F /* tsip_header_Server.h */; };
ECF0E314118CC6C7001A3D6F /* tsip_header_Service_Route.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E187118CC6C7001A3D6F /* tsip_header_Service_Route.h */; };
ECF0E315118CC6C7001A3D6F /* tsip_header_Session_Expires.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E188118CC6C7001A3D6F /* tsip_header_Session_Expires.h */; };
ECF0E316118CC6C7001A3D6F /* tsip_header_SIP_ETag.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E189118CC6C7001A3D6F /* tsip_header_SIP_ETag.h */; };
ECF0E317118CC6C7001A3D6F /* tsip_header_SIP_If_Match.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E18A118CC6C7001A3D6F /* tsip_header_SIP_If_Match.h */; };
ECF0E318118CC6C7001A3D6F /* tsip_header_Subject.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E18B118CC6C7001A3D6F /* tsip_header_Subject.h */; };
ECF0E319118CC6C7001A3D6F /* tsip_header_Subscription_State.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E18C118CC6C7001A3D6F /* tsip_header_Subscription_State.h */; };
ECF0E31A118CC6C7001A3D6F /* tsip_header_Supported.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E18D118CC6C7001A3D6F /* tsip_header_Supported.h */; };
ECF0E31B118CC6C7001A3D6F /* tsip_header_Target_Dialog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E18E118CC6C7001A3D6F /* tsip_header_Target_Dialog.h */; };
ECF0E31C118CC6C7001A3D6F /* tsip_header_Timestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E18F118CC6C7001A3D6F /* tsip_header_Timestamp.h */; };
ECF0E31D118CC6C7001A3D6F /* tsip_header_To.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E190118CC6C7001A3D6F /* tsip_header_To.h */; };
ECF0E31E118CC6C7001A3D6F /* tsip_header_Unsupported.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E191118CC6C7001A3D6F /* tsip_header_Unsupported.h */; };
ECF0E31F118CC6C7001A3D6F /* tsip_header_User_Agent.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E192118CC6C7001A3D6F /* tsip_header_User_Agent.h */; };
ECF0E320118CC6C7001A3D6F /* tsip_header_Via.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E193118CC6C7001A3D6F /* tsip_header_Via.h */; };
ECF0E321118CC6C7001A3D6F /* tsip_header_Warning.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E194118CC6C7001A3D6F /* tsip_header_Warning.h */; };
ECF0E322118CC6C7001A3D6F /* tsip_header_WWW_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E195118CC6C7001A3D6F /* tsip_header_WWW_Authenticate.h */; };
ECF0E323118CC6C7001A3D6F /* tsip_headers.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E196118CC6C7001A3D6F /* tsip_headers.h */; };
ECF0E324118CC6C7001A3D6F /* tsip_msession.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E198118CC6C7001A3D6F /* tsip_msession.h */; };
ECF0E325118CC6C7001A3D6F /* tsip_parser_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E19A118CC6C7001A3D6F /* tsip_parser_header.h */; };
ECF0E326118CC6C7001A3D6F /* tsip_parser_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E19B118CC6C7001A3D6F /* tsip_parser_message.h */; };
ECF0E327118CC6C7001A3D6F /* tsip_parser_uri.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E19C118CC6C7001A3D6F /* tsip_parser_uri.h */; };
ECF0E328118CC6C7001A3D6F /* tsip_transac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E19E118CC6C7001A3D6F /* tsip_transac.h */; };
ECF0E329118CC6C7001A3D6F /* tsip_transac_ict.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E19F118CC6C7001A3D6F /* tsip_transac_ict.h */; };
ECF0E32A118CC6C7001A3D6F /* tsip_transac_ist.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1A0118CC6C7001A3D6F /* tsip_transac_ist.h */; };
ECF0E32B118CC6C7001A3D6F /* tsip_transac_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1A1118CC6C7001A3D6F /* tsip_transac_layer.h */; };
ECF0E32C118CC6C7001A3D6F /* tsip_transac_nict.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1A2118CC6C7001A3D6F /* tsip_transac_nict.h */; };
ECF0E32D118CC6C7001A3D6F /* tsip_transac_nist.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1A3118CC6C7001A3D6F /* tsip_transac_nist.h */; };
ECF0E32E118CC6C7001A3D6F /* tsip_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1A5118CC6C7001A3D6F /* tsip_transport.h */; };
ECF0E32F118CC6C7001A3D6F /* tsip_transport_ipsec.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1A6118CC6C7001A3D6F /* tsip_transport_ipsec.h */; };
ECF0E330118CC6C7001A3D6F /* tsip_transport_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1A7118CC6C7001A3D6F /* tsip_transport_layer.h */; };
ECF0E331118CC6C7001A3D6F /* tsip_transport_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1A8118CC6C7001A3D6F /* tsip_transport_tls.h */; };
ECF0E332118CC6C7001A3D6F /* tsip_action.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1A9118CC6C7001A3D6F /* tsip_action.h */; };
ECF0E333118CC6C7001A3D6F /* tsip_event.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1AA118CC6C7001A3D6F /* tsip_event.h */; };
ECF0E334118CC6C7001A3D6F /* tsip_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1AB118CC6C7001A3D6F /* tsip_message.h */; };
ECF0E335118CC6C7001A3D6F /* tsip_ssession.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1AC118CC6C7001A3D6F /* tsip_ssession.h */; };
ECF0E336118CC6C7001A3D6F /* tsip_timers.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1AD118CC6C7001A3D6F /* tsip_timers.h */; };
ECF0E337118CC6C7001A3D6F /* tsip_uri.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1AE118CC6C7001A3D6F /* tsip_uri.h */; };
ECF0E338118CC6C7001A3D6F /* tinysip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1AF118CC6C7001A3D6F /* tinysip.h */; };
ECF0E339118CC6C7001A3D6F /* tinysip_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1B0118CC6C7001A3D6F /* tinysip_config.h */; };
ECF0E33A118CC6C7001A3D6F /* tsip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF0E1B1118CC6C7001A3D6F /* tsip.h */; };
ECF0E33B118CC6C7001A3D6F /* tsip_api_invite.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E21B118CC6C7001A3D6F /* tsip_api_invite.c */; };
ECF0E33C118CC6C7001A3D6F /* tsip_api_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E21C118CC6C7001A3D6F /* tsip_api_message.c */; };
ECF0E33D118CC6C7001A3D6F /* tsip_api_publish.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E21D118CC6C7001A3D6F /* tsip_api_publish.c */; };
ECF0E33E118CC6C7001A3D6F /* tsip_api_register.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E21E118CC6C7001A3D6F /* tsip_api_register.c */; };
ECF0E33F118CC6C7001A3D6F /* tsip_api_subscribe.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E21F118CC6C7001A3D6F /* tsip_api_subscribe.c */; };
ECF0E340118CC6C7001A3D6F /* tsip_challenge.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E221118CC6C7001A3D6F /* tsip_challenge.c */; };
ECF0E341118CC6C7001A3D6F /* tsip_milenage.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E222118CC6C7001A3D6F /* tsip_milenage.c */; };
ECF0E342118CC6C7001A3D6F /* tsip_rijndael.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E223118CC6C7001A3D6F /* tsip_rijndael.c */; };
ECF0E343118CC6C7001A3D6F /* tsip_dialog.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E225118CC6C7001A3D6F /* tsip_dialog.c */; };
ECF0E344118CC6C7001A3D6F /* tsip_dialog_invite.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E226118CC6C7001A3D6F /* tsip_dialog_invite.c */; };
ECF0E345118CC6C7001A3D6F /* tsip_dialog_invite.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E227118CC6C7001A3D6F /* tsip_dialog_invite.client.c */; };
ECF0E346118CC6C7001A3D6F /* tsip_dialog_invite.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E228118CC6C7001A3D6F /* tsip_dialog_invite.server.c */; };
ECF0E347118CC6C7001A3D6F /* tsip_dialog_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E229118CC6C7001A3D6F /* tsip_dialog_layer.c */; };
ECF0E348118CC6C7001A3D6F /* tsip_dialog_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E22A118CC6C7001A3D6F /* tsip_dialog_message.c */; };
ECF0E349118CC6C7001A3D6F /* tsip_dialog_publish.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E22B118CC6C7001A3D6F /* tsip_dialog_publish.client.c */; };
ECF0E34A118CC6C7001A3D6F /* tsip_dialog_register.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E22C118CC6C7001A3D6F /* tsip_dialog_register.client.c */; };
ECF0E34B118CC6C7001A3D6F /* tsip_dialog_register.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E22D118CC6C7001A3D6F /* tsip_dialog_register.server.c */; };
ECF0E34C118CC6C7001A3D6F /* tsip_dialog_subscribe.client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E22E118CC6C7001A3D6F /* tsip_dialog_subscribe.client.c */; };
ECF0E34D118CC6C7001A3D6F /* tsip_dialog_subscribe.server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E22F118CC6C7001A3D6F /* tsip_dialog_subscribe.server.c */; };
ECF0E34E118CC6C7001A3D6F /* tsip_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E231118CC6C7001A3D6F /* tsip_header.c */; };
ECF0E34F118CC6C7001A3D6F /* tsip_header_accept.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E232118CC6C7001A3D6F /* tsip_header_accept.c */; };
ECF0E350118CC6C7001A3D6F /* tsip_header_Accept_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E233118CC6C7001A3D6F /* tsip_header_Accept_Contact.c */; };
ECF0E351118CC6C7001A3D6F /* tsip_header_Accept_Encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E234118CC6C7001A3D6F /* tsip_header_Accept_Encoding.c */; };
ECF0E352118CC6C7001A3D6F /* tsip_header_Accept_Language.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E235118CC6C7001A3D6F /* tsip_header_Accept_Language.c */; };
ECF0E353118CC6C7001A3D6F /* tsip_header_Accept_Resource_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E236118CC6C7001A3D6F /* tsip_header_Accept_Resource_Priority.c */; };
ECF0E354118CC6C7001A3D6F /* tsip_header_Alert_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E237118CC6C7001A3D6F /* tsip_header_Alert_Info.c */; };
ECF0E355118CC6C7001A3D6F /* tsip_header_Allow.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E238118CC6C7001A3D6F /* tsip_header_Allow.c */; };
ECF0E356118CC6C7001A3D6F /* tsip_header_Allow_Events.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E239118CC6C7001A3D6F /* tsip_header_Allow_Events.c */; };
ECF0E357118CC6C7001A3D6F /* tsip_header_Authentication_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E23A118CC6C7001A3D6F /* tsip_header_Authentication_Info.c */; };
ECF0E358118CC6C7001A3D6F /* tsip_header_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E23B118CC6C7001A3D6F /* tsip_header_Authorization.c */; };
ECF0E359118CC6C7001A3D6F /* tsip_header_Call_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E23C118CC6C7001A3D6F /* tsip_header_Call_ID.c */; };
ECF0E35A118CC6C7001A3D6F /* tsip_header_Call_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E23D118CC6C7001A3D6F /* tsip_header_Call_Info.c */; };
ECF0E35B118CC6C7001A3D6F /* tsip_header_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E23E118CC6C7001A3D6F /* tsip_header_Contact.c */; };
ECF0E35C118CC6C7001A3D6F /* tsip_header_Content_Disposition.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E23F118CC6C7001A3D6F /* tsip_header_Content_Disposition.c */; };
ECF0E35D118CC6C7001A3D6F /* tsip_header_Content_Encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E240118CC6C7001A3D6F /* tsip_header_Content_Encoding.c */; };
ECF0E35E118CC6C7001A3D6F /* tsip_header_Content_Language.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E241118CC6C7001A3D6F /* tsip_header_Content_Language.c */; };
ECF0E35F118CC6C7001A3D6F /* tsip_header_Content_Length.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E242118CC6C7001A3D6F /* tsip_header_Content_Length.c */; };
ECF0E360118CC6C7001A3D6F /* tsip_header_Content_Type.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E243118CC6C7001A3D6F /* tsip_header_Content_Type.c */; };
ECF0E361118CC6C7001A3D6F /* tsip_header_CSeq.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E244118CC6C7001A3D6F /* tsip_header_CSeq.c */; };
ECF0E362118CC6C7001A3D6F /* tsip_header_Date.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E245118CC6C7001A3D6F /* tsip_header_Date.c */; };
ECF0E363118CC6C7001A3D6F /* tsip_header_Dummy.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E246118CC6C7001A3D6F /* tsip_header_Dummy.c */; };
ECF0E364118CC6C7001A3D6F /* tsip_header_Error_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E247118CC6C7001A3D6F /* tsip_header_Error_Info.c */; };
ECF0E365118CC6C7001A3D6F /* tsip_header_Event.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E248118CC6C7001A3D6F /* tsip_header_Event.c */; };
ECF0E366118CC6C7001A3D6F /* tsip_header_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E249118CC6C7001A3D6F /* tsip_header_Expires.c */; };
ECF0E367118CC6C7001A3D6F /* tsip_header_From.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E24A118CC6C7001A3D6F /* tsip_header_From.c */; };
ECF0E368118CC6C7001A3D6F /* tsip_header_History_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E24B118CC6C7001A3D6F /* tsip_header_History_Info.c */; };
ECF0E369118CC6C7001A3D6F /* tsip_header_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E24C118CC6C7001A3D6F /* tsip_header_Identity.c */; };
ECF0E36A118CC6C7001A3D6F /* tsip_header_Identity_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E24D118CC6C7001A3D6F /* tsip_header_Identity_Info.c */; };
ECF0E36B118CC6C7001A3D6F /* tsip_header_In_Reply_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E24E118CC6C7001A3D6F /* tsip_header_In_Reply_To.c */; };
ECF0E36C118CC6C7001A3D6F /* tsip_header_Join.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E24F118CC6C7001A3D6F /* tsip_header_Join.c */; };
ECF0E36D118CC6C7001A3D6F /* tsip_header_Max_Forwards.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E250118CC6C7001A3D6F /* tsip_header_Max_Forwards.c */; };
ECF0E36E118CC6C7001A3D6F /* tsip_header_MIME_Version.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E251118CC6C7001A3D6F /* tsip_header_MIME_Version.c */; };
ECF0E36F118CC6C7001A3D6F /* tsip_header_Min_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E252118CC6C7001A3D6F /* tsip_header_Min_Expires.c */; };
ECF0E370118CC6C7001A3D6F /* tsip_header_Min_SE.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E253118CC6C7001A3D6F /* tsip_header_Min_SE.c */; };
ECF0E371118CC6C7001A3D6F /* tsip_header_Organization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E254118CC6C7001A3D6F /* tsip_header_Organization.c */; };
ECF0E372118CC6C7001A3D6F /* tsip_header_P_Access_Network_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E255118CC6C7001A3D6F /* tsip_header_P_Access_Network_Info.c */; };
ECF0E373118CC6C7001A3D6F /* tsip_header_P_Answer_State.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E256118CC6C7001A3D6F /* tsip_header_P_Answer_State.c */; };
ECF0E374118CC6C7001A3D6F /* tsip_header_P_Asserted_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E257118CC6C7001A3D6F /* tsip_header_P_Asserted_Identity.c */; };
ECF0E375118CC6C7001A3D6F /* tsip_header_P_Associated_URI.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E258118CC6C7001A3D6F /* tsip_header_P_Associated_URI.c */; };
ECF0E376118CC6C7001A3D6F /* tsip_header_P_Called_Party_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E259118CC6C7001A3D6F /* tsip_header_P_Called_Party_ID.c */; };
ECF0E377118CC6C7001A3D6F /* tsip_header_P_Charging_Function_Addresses.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E25A118CC6C7001A3D6F /* tsip_header_P_Charging_Function_Addresses.c */; };
ECF0E378118CC6C7001A3D6F /* tsip_header_P_Charging_Vector.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E25B118CC6C7001A3D6F /* tsip_header_P_Charging_Vector.c */; };
ECF0E379118CC6C7001A3D6F /* tsip_header_P_DCS_Billing_Info.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E25C118CC6C7001A3D6F /* tsip_header_P_DCS_Billing_Info.c */; };
ECF0E37A118CC6C7001A3D6F /* tsip_header_P_DCS_LAES.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E25D118CC6C7001A3D6F /* tsip_header_P_DCS_LAES.c */; };
ECF0E37B118CC6C7001A3D6F /* tsip_header_P_DCS_OSPS.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E25E118CC6C7001A3D6F /* tsip_header_P_DCS_OSPS.c */; };
ECF0E37C118CC6C7001A3D6F /* tsip_header_P_DCS_Redirect.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E25F118CC6C7001A3D6F /* tsip_header_P_DCS_Redirect.c */; };
ECF0E37D118CC6C7001A3D6F /* tsip_header_P_DCS_Trace_Party_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E260118CC6C7001A3D6F /* tsip_header_P_DCS_Trace_Party_ID.c */; };
ECF0E37E118CC6C7001A3D6F /* tsip_header_P_Early_Media.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E261118CC6C7001A3D6F /* tsip_header_P_Early_Media.c */; };
ECF0E37F118CC6C7001A3D6F /* tsip_header_P_Media_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E262118CC6C7001A3D6F /* tsip_header_P_Media_Authorization.c */; };
ECF0E380118CC6C7001A3D6F /* tsip_header_P_Preferred_Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E263118CC6C7001A3D6F /* tsip_header_P_Preferred_Identity.c */; };
ECF0E381118CC6C7001A3D6F /* tsip_header_P_Profile_Key.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E264118CC6C7001A3D6F /* tsip_header_P_Profile_Key.c */; };
ECF0E382118CC6C7001A3D6F /* tsip_header_P_User_Database.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E265118CC6C7001A3D6F /* tsip_header_P_User_Database.c */; };
ECF0E383118CC6C7001A3D6F /* tsip_header_P_Visited_Network_ID.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E266118CC6C7001A3D6F /* tsip_header_P_Visited_Network_ID.c */; };
ECF0E384118CC6C7001A3D6F /* tsip_header_Path.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E267118CC6C7001A3D6F /* tsip_header_Path.c */; };
ECF0E385118CC6C7001A3D6F /* tsip_header_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E268118CC6C7001A3D6F /* tsip_header_Priority.c */; };
ECF0E386118CC6C7001A3D6F /* tsip_header_Privacy.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E269118CC6C7001A3D6F /* tsip_header_Privacy.c */; };
ECF0E387118CC6C7001A3D6F /* tsip_header_Proxy_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E26A118CC6C7001A3D6F /* tsip_header_Proxy_Authenticate.c */; };
ECF0E388118CC6C7001A3D6F /* tsip_header_Proxy_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E26B118CC6C7001A3D6F /* tsip_header_Proxy_Authorization.c */; };
ECF0E389118CC6C7001A3D6F /* tsip_header_Proxy_Require.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E26C118CC6C7001A3D6F /* tsip_header_Proxy_Require.c */; };
ECF0E38A118CC6C7001A3D6F /* tsip_header_RAck.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E26D118CC6C7001A3D6F /* tsip_header_RAck.c */; };
ECF0E38B118CC6C7001A3D6F /* tsip_header_Reason.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E26E118CC6C7001A3D6F /* tsip_header_Reason.c */; };
ECF0E38C118CC6C7001A3D6F /* tsip_header_Record_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E26F118CC6C7001A3D6F /* tsip_header_Record_Route.c */; };
ECF0E38D118CC6C7001A3D6F /* tsip_header_Refer_Sub.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E270118CC6C7001A3D6F /* tsip_header_Refer_Sub.c */; };
ECF0E38E118CC6C7001A3D6F /* tsip_header_Refer_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E271118CC6C7001A3D6F /* tsip_header_Refer_To.c */; };
ECF0E38F118CC6C7001A3D6F /* tsip_header_Referred_By.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E272118CC6C7001A3D6F /* tsip_header_Referred_By.c */; };
ECF0E390118CC6C7001A3D6F /* tsip_header_Reject_Contact.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E273118CC6C7001A3D6F /* tsip_header_Reject_Contact.c */; };
ECF0E391118CC6C7001A3D6F /* tsip_header_Replaces.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E274118CC6C7001A3D6F /* tsip_header_Replaces.c */; };
ECF0E392118CC6C7001A3D6F /* tsip_header_Reply_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E275118CC6C7001A3D6F /* tsip_header_Reply_To.c */; };
ECF0E393118CC6C7001A3D6F /* tsip_header_Request_Disposition.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E276118CC6C7001A3D6F /* tsip_header_Request_Disposition.c */; };
ECF0E394118CC6C7001A3D6F /* tsip_header_Require.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E277118CC6C7001A3D6F /* tsip_header_Require.c */; };
ECF0E395118CC6C7001A3D6F /* tsip_header_Resource_Priority.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E278118CC6C7001A3D6F /* tsip_header_Resource_Priority.c */; };
ECF0E396118CC6C7001A3D6F /* tsip_header_Retry_After.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E279118CC6C7001A3D6F /* tsip_header_Retry_After.c */; };
ECF0E397118CC6C7001A3D6F /* tsip_header_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E27A118CC6C7001A3D6F /* tsip_header_Route.c */; };
ECF0E398118CC6C7001A3D6F /* tsip_header_RSeq.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E27B118CC6C7001A3D6F /* tsip_header_RSeq.c */; };
ECF0E399118CC6C7001A3D6F /* tsip_header_Security_Client.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E27C118CC6C7001A3D6F /* tsip_header_Security_Client.c */; };
ECF0E39A118CC6C7001A3D6F /* tsip_header_Security_Server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E27D118CC6C7001A3D6F /* tsip_header_Security_Server.c */; };
ECF0E39B118CC6C7001A3D6F /* tsip_header_Security_Verify.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E27E118CC6C7001A3D6F /* tsip_header_Security_Verify.c */; };
ECF0E39C118CC6C7001A3D6F /* tsip_header_Server.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E27F118CC6C7001A3D6F /* tsip_header_Server.c */; };
ECF0E39D118CC6C7001A3D6F /* tsip_header_Service_Route.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E280118CC6C7001A3D6F /* tsip_header_Service_Route.c */; };
ECF0E39E118CC6C7001A3D6F /* tsip_header_Session_Expires.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E281118CC6C7001A3D6F /* tsip_header_Session_Expires.c */; };
ECF0E39F118CC6C7001A3D6F /* tsip_header_SIP_ETag.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E282118CC6C7001A3D6F /* tsip_header_SIP_ETag.c */; };
ECF0E3A0118CC6C7001A3D6F /* tsip_header_SIP_If_Match.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E283118CC6C7001A3D6F /* tsip_header_SIP_If_Match.c */; };
ECF0E3A1118CC6C7001A3D6F /* tsip_header_Subject.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E284118CC6C7001A3D6F /* tsip_header_Subject.c */; };
ECF0E3A2118CC6C7001A3D6F /* tsip_header_Subscription_State.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E285118CC6C7001A3D6F /* tsip_header_Subscription_State.c */; };
ECF0E3A3118CC6C7001A3D6F /* tsip_header_Supported.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E286118CC6C7001A3D6F /* tsip_header_Supported.c */; };
ECF0E3A4118CC6C7001A3D6F /* tsip_header_Target_Dialog.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E287118CC6C7001A3D6F /* tsip_header_Target_Dialog.c */; };
ECF0E3A5118CC6C7001A3D6F /* tsip_header_Timestamp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E288118CC6C7001A3D6F /* tsip_header_Timestamp.c */; };
ECF0E3A6118CC6C7001A3D6F /* tsip_header_To.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E289118CC6C7001A3D6F /* tsip_header_To.c */; };
ECF0E3A7118CC6C7001A3D6F /* tsip_header_Unsupported.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E28A118CC6C7001A3D6F /* tsip_header_Unsupported.c */; };
ECF0E3A8118CC6C7001A3D6F /* tsip_header_User_Agent.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E28B118CC6C7001A3D6F /* tsip_header_User_Agent.c */; };
ECF0E3A9118CC6C7001A3D6F /* tsip_header_Via.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E28C118CC6C7001A3D6F /* tsip_header_Via.c */; };
ECF0E3AA118CC6C7001A3D6F /* tsip_header_Warning.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E28D118CC6C7001A3D6F /* tsip_header_Warning.c */; };
ECF0E3AB118CC6C7001A3D6F /* tsip_header_WWW_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E28E118CC6C7001A3D6F /* tsip_header_WWW_Authenticate.c */; };
ECF0E3AC118CC6C7001A3D6F /* tsip_msession.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E290118CC6C7001A3D6F /* tsip_msession.c */; };
ECF0E3AD118CC6C7001A3D6F /* tsip_parser_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E292118CC6C7001A3D6F /* tsip_parser_header.c */; };
ECF0E3AE118CC6C7001A3D6F /* tsip_parser_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E293118CC6C7001A3D6F /* tsip_parser_message.c */; };
ECF0E3AF118CC6C7001A3D6F /* tsip_parser_uri.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E294118CC6C7001A3D6F /* tsip_parser_uri.c */; };
ECF0E3B0118CC6C7001A3D6F /* tsip_transac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E296118CC6C7001A3D6F /* tsip_transac.c */; };
ECF0E3B1118CC6C7001A3D6F /* tsip_transac_ict.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E297118CC6C7001A3D6F /* tsip_transac_ict.c */; };
ECF0E3B2118CC6C7001A3D6F /* tsip_transac_ist.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E298118CC6C7001A3D6F /* tsip_transac_ist.c */; };
ECF0E3B3118CC6C7001A3D6F /* tsip_transac_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E299118CC6C7001A3D6F /* tsip_transac_layer.c */; };
ECF0E3B4118CC6C7001A3D6F /* tsip_transac_nict.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E29A118CC6C7001A3D6F /* tsip_transac_nict.c */; };
ECF0E3B5118CC6C7001A3D6F /* tsip_transac_nist.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E29B118CC6C7001A3D6F /* tsip_transac_nist.c */; };
ECF0E3B6118CC6C7001A3D6F /* tsip_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E29D118CC6C7001A3D6F /* tsip_transport.c */; };
ECF0E3B7118CC6C7001A3D6F /* tsip_transport_ipsec.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E29E118CC6C7001A3D6F /* tsip_transport_ipsec.c */; };
ECF0E3B8118CC6C7001A3D6F /* tsip_transport_layer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E29F118CC6C7001A3D6F /* tsip_transport_layer.c */; };
ECF0E3B9118CC6C7001A3D6F /* tsip_transport_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E2A0118CC6C7001A3D6F /* tsip_transport_tls.c */; };
ECF0E3BA118CC6C7001A3D6F /* tsip.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E2A1118CC6C7001A3D6F /* tsip.c */; };
ECF0E3BB118CC6C7001A3D6F /* tsip_action.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E2A2118CC6C7001A3D6F /* tsip_action.c */; };
ECF0E3BC118CC6C7001A3D6F /* tsip_event.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E2A3118CC6C7001A3D6F /* tsip_event.c */; };
ECF0E3BD118CC6C7001A3D6F /* tsip_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E2A4118CC6C7001A3D6F /* tsip_message.c */; };
ECF0E3BE118CC6C7001A3D6F /* tsip_ssession.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E2A5118CC6C7001A3D6F /* tsip_ssession.c */; };
ECF0E3BF118CC6C7001A3D6F /* tsip_timers.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E2A6118CC6C7001A3D6F /* tsip_timers.c */; };
ECF0E3C0118CC6C7001A3D6F /* tsip_uri.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E2A7118CC6C7001A3D6F /* tsip_uri.c */; };
ECF0E3D5118CCBEB001A3D6F /* libtinyHTTP.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6DA118CC042001A3D6F /* libtinyHTTP.dylib */; };
ECF0E3D6118CCBEB001A3D6F /* libtinyIPSec.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0E054118CC592001A3D6F /* libtinyIPSec.dylib */; };
ECF0E3D7118CCBEB001A3D6F /* libtinyNET.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6D3118CC02E001A3D6F /* libtinyNET.dylib */; };
ECF0E3D8118CCBEB001A3D6F /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6CC118CC01D001A3D6F /* libtinySAK.dylib */; };
ECF0E3F9118CCC26001A3D6F /* cmd.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E3DA118CCC26001A3D6F /* cmd.c */; };
ECF0E3FA118CCC26001A3D6F /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E3DC118CCC26001A3D6F /* common.c */; };
ECF0E3FB118CCC26001A3D6F /* dssl.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E3E6118CCC26001A3D6F /* dssl.c */; };
ECF0E3FC118CCC26001A3D6F /* invite.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E3E9118CCC26001A3D6F /* invite.c */; };
ECF0E3FD118CCC26001A3D6F /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E3EB118CCC26001A3D6F /* main.c */; };
ECF0E3FE118CCC26001A3D6F /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E3EE118CCC26001A3D6F /* message.c */; };
ECF0E3FF118CCC26001A3D6F /* publish.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E3F0118CCC26001A3D6F /* publish.c */; };
ECF0E400118CCC26001A3D6F /* register.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E3F4118CCC26001A3D6F /* register.c */; };
ECF0E401118CCC26001A3D6F /* subscribe.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF0E3F7118CCC26001A3D6F /* subscribe.c */; };
ECF0E408118CCCBD001A3D6F /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6CC118CC01D001A3D6F /* libtinySAK.dylib */; };
ECF0E409118CCCBD001A3D6F /* libtinySIP.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6EF118CC06F001A3D6F /* libtinySIP.dylib */; };
ECF0E40A118CCCBD001A3D6F /* libtinySMS.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0DF59118CC238001A3D6F /* libtinySMS.dylib */; };
ECF0E40F118CCD04001A3D6F /* libtinyNET.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF0D6D3118CC02E001A3D6F /* libtinyNET.dylib */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
ECF0DF4A118CC1F7001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6CB118CC01D001A3D6F;
remoteInfo = tinySAK;
};
ECF0DF5C118CC241001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6CB118CC01D001A3D6F;
remoteInfo = tinySAK;
};
ECF0E048118CC52B001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6CB118CC01D001A3D6F;
remoteInfo = tinySAK;
};
ECF0E04A118CC52B001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6D2118CC02E001A3D6F;
remoteInfo = tinyNET;
};
ECF0E057118CC59B001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6CB118CC01D001A3D6F;
remoteInfo = tinySAK;
};
ECF0E10A118CC68F001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6CB118CC01D001A3D6F;
remoteInfo = tinySAK;
};
ECF0E3CD118CCBE0001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6CB118CC01D001A3D6F;
remoteInfo = tinySAK;
};
ECF0E3CF118CCBE0001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6D2118CC02E001A3D6F;
remoteInfo = tinyNET;
};
ECF0E3D1118CCBE0001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6D9118CC042001A3D6F;
remoteInfo = tinyHTTP;
};
ECF0E3D3118CCBE0001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0E053118CC592001A3D6F;
remoteInfo = tinyIPSec;
};
ECF0E402118CCCB5001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6CB118CC01D001A3D6F;
remoteInfo = tinySAK;
};
ECF0E404118CCCB5001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6EE118CC06F001A3D6F;
remoteInfo = tinySIP;
};
ECF0E406118CCCB5001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0DF58118CC238001A3D6F;
remoteInfo = tinySMS;
};
ECF0E40D118CCCFF001A3D6F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF0D6D2118CC02E001A3D6F;
remoteInfo = tinyNET;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
8DD76FAF0486AB0100D96B5E /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 8;
dstPath = /usr/share/man/man1/;
dstSubfolderSpec = 0;
files = (
8DD76FB00486AB0100D96B5E /* tinyDEMO.1 in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 1;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
8DD76FB20486AB0100D96B5E /* tinyDEMO */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = tinyDEMO; sourceTree = BUILT_PRODUCTS_DIR; };
C6A0FF2C0290799A04C91782 /* tinyDEMO.1 */ = {isa = PBXFileReference; lastKnownFileType = text.man; path = tinyDEMO.1; sourceTree = "<group>"; };
ECF0D6CC118CC01D001A3D6F /* libtinySAK.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinySAK.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECF0D6D3118CC02E001A3D6F /* libtinyNET.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyNET.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECF0D6DA118CC042001A3D6F /* libtinyHTTP.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyHTTP.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECF0D6E1118CC053001A3D6F /* libtinySDP.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinySDP.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECF0D6E8118CC060001A3D6F /* libtinyMEDIA.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyMEDIA.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECF0D6EF118CC06F001A3D6F /* libtinySIP.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinySIP.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECF0D744118CC091001A3D6F /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = "<group>"; };
ECF0D745118CC091001A3D6F /* tinySAK_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinySAK_config.h; sourceTree = "<group>"; };
ECF0D746118CC091001A3D6F /* tsk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk.c; sourceTree = "<group>"; };
ECF0D747118CC091001A3D6F /* tsk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk.h; sourceTree = "<group>"; };
ECF0D748118CC091001A3D6F /* tsk_base64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_base64.c; sourceTree = "<group>"; };
ECF0D749118CC091001A3D6F /* tsk_base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_base64.h; sourceTree = "<group>"; };
ECF0D74A118CC091001A3D6F /* tsk_binaryutils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_binaryutils.c; sourceTree = "<group>"; };
ECF0D74B118CC091001A3D6F /* tsk_binaryutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_binaryutils.h; sourceTree = "<group>"; };
ECF0D74C118CC091001A3D6F /* tsk_buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_buffer.c; sourceTree = "<group>"; };
ECF0D74D118CC091001A3D6F /* tsk_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_buffer.h; sourceTree = "<group>"; };
ECF0D74E118CC091001A3D6F /* tsk_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_common.h; sourceTree = "<group>"; };
ECF0D74F118CC091001A3D6F /* tsk_condwait.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_condwait.c; sourceTree = "<group>"; };
ECF0D750118CC091001A3D6F /* tsk_condwait.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_condwait.h; sourceTree = "<group>"; };
ECF0D751118CC091001A3D6F /* tsk_debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_debug.c; sourceTree = "<group>"; };
ECF0D752118CC091001A3D6F /* tsk_debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_debug.h; sourceTree = "<group>"; };
ECF0D753118CC091001A3D6F /* tsk_errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_errno.h; sourceTree = "<group>"; };
ECF0D754118CC091001A3D6F /* tsk_fsm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_fsm.c; sourceTree = "<group>"; };
ECF0D755118CC091001A3D6F /* tsk_fsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_fsm.h; sourceTree = "<group>"; };
ECF0D756118CC091001A3D6F /* tsk_hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_hmac.c; sourceTree = "<group>"; };
ECF0D757118CC091001A3D6F /* tsk_hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_hmac.h; sourceTree = "<group>"; };
ECF0D758118CC091001A3D6F /* tsk_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_list.c; sourceTree = "<group>"; };
ECF0D759118CC091001A3D6F /* tsk_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_list.h; sourceTree = "<group>"; };
ECF0D75A118CC091001A3D6F /* tsk_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_md5.c; sourceTree = "<group>"; };
ECF0D75B118CC091001A3D6F /* tsk_md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_md5.h; sourceTree = "<group>"; };
ECF0D75C118CC091001A3D6F /* tsk_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_memory.c; sourceTree = "<group>"; };
ECF0D75D118CC091001A3D6F /* tsk_memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_memory.h; sourceTree = "<group>"; };
ECF0D75E118CC091001A3D6F /* tsk_mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_mutex.c; sourceTree = "<group>"; };
ECF0D75F118CC091001A3D6F /* tsk_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_mutex.h; sourceTree = "<group>"; };
ECF0D760118CC091001A3D6F /* tsk_object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_object.c; sourceTree = "<group>"; };
ECF0D761118CC091001A3D6F /* tsk_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_object.h; sourceTree = "<group>"; };
ECF0D762118CC091001A3D6F /* tsk_options.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_options.c; sourceTree = "<group>"; };
ECF0D763118CC091001A3D6F /* tsk_options.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_options.h; sourceTree = "<group>"; };
ECF0D764118CC091001A3D6F /* tsk_params.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_params.c; sourceTree = "<group>"; };
ECF0D765118CC091001A3D6F /* tsk_params.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_params.h; sourceTree = "<group>"; };
ECF0D766118CC091001A3D6F /* tsk_ppfcs16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ppfcs16.c; sourceTree = "<group>"; };
ECF0D767118CC091001A3D6F /* tsk_ppfcs16.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ppfcs16.h; sourceTree = "<group>"; };
ECF0D768118CC091001A3D6F /* tsk_ppfcs32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ppfcs32.c; sourceTree = "<group>"; };
ECF0D769118CC091001A3D6F /* tsk_ppfcs32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ppfcs32.h; sourceTree = "<group>"; };
ECF0D76A118CC091001A3D6F /* tsk_ragel_state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_ragel_state.c; sourceTree = "<group>"; };
ECF0D76B118CC091001A3D6F /* tsk_ragel_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_ragel_state.h; sourceTree = "<group>"; };
ECF0D76C118CC091001A3D6F /* tsk_runnable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_runnable.c; sourceTree = "<group>"; };
ECF0D76D118CC091001A3D6F /* tsk_runnable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_runnable.h; sourceTree = "<group>"; };
ECF0D76E118CC091001A3D6F /* tsk_safeobj.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_safeobj.c; sourceTree = "<group>"; };
ECF0D76F118CC091001A3D6F /* tsk_safeobj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_safeobj.h; sourceTree = "<group>"; };
ECF0D770118CC091001A3D6F /* tsk_semaphore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_semaphore.c; sourceTree = "<group>"; };
ECF0D771118CC091001A3D6F /* tsk_semaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_semaphore.h; sourceTree = "<group>"; };
ECF0D772118CC091001A3D6F /* tsk_sha1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_sha1.c; sourceTree = "<group>"; };
ECF0D773118CC091001A3D6F /* tsk_sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_sha1.h; sourceTree = "<group>"; };
ECF0D774118CC091001A3D6F /* tsk_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_string.c; sourceTree = "<group>"; };
ECF0D775118CC091001A3D6F /* tsk_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_string.h; sourceTree = "<group>"; };
ECF0D776118CC091001A3D6F /* tsk_thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_thread.c; sourceTree = "<group>"; };
ECF0D777118CC091001A3D6F /* tsk_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_thread.h; sourceTree = "<group>"; };
ECF0D778118CC091001A3D6F /* tsk_time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_time.c; sourceTree = "<group>"; };
ECF0D779118CC091001A3D6F /* tsk_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_time.h; sourceTree = "<group>"; };
ECF0D77A118CC091001A3D6F /* tsk_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_timer.c; sourceTree = "<group>"; };
ECF0D77B118CC091001A3D6F /* tsk_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_timer.h; sourceTree = "<group>"; };
ECF0D77C118CC091001A3D6F /* tsk_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_url.c; sourceTree = "<group>"; };
ECF0D77D118CC091001A3D6F /* tsk_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_url.h; sourceTree = "<group>"; };
ECF0D77E118CC091001A3D6F /* tsk_uuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_uuid.c; sourceTree = "<group>"; };
ECF0D77F118CC091001A3D6F /* tsk_uuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_uuid.h; sourceTree = "<group>"; };
ECF0D780118CC091001A3D6F /* tsk_xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsk_xml.c; sourceTree = "<group>"; };
ECF0D781118CC091001A3D6F /* tsk_xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsk_xml.h; sourceTree = "<group>"; };
ECF0DE72118CC19E001A3D6F /* tnet_dhcp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp.c; sourceTree = "<group>"; };
ECF0DE73118CC19E001A3D6F /* tnet_dhcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp.h; sourceTree = "<group>"; };
ECF0DE74118CC19E001A3D6F /* tnet_dhcp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_message.c; sourceTree = "<group>"; };
ECF0DE75118CC19E001A3D6F /* tnet_dhcp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_message.h; sourceTree = "<group>"; };
ECF0DE76118CC19E001A3D6F /* tnet_dhcp_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option.c; sourceTree = "<group>"; };
ECF0DE77118CC19E001A3D6F /* tnet_dhcp_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option.h; sourceTree = "<group>"; };
ECF0DE78118CC19E001A3D6F /* tnet_dhcp_option_sip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option_sip.c; sourceTree = "<group>"; };
ECF0DE79118CC19E001A3D6F /* tnet_dhcp_option_sip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option_sip.h; sourceTree = "<group>"; };
ECF0DE7B118CC19E001A3D6F /* tnet_dhcp6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6.c; sourceTree = "<group>"; };
ECF0DE7C118CC19E001A3D6F /* tnet_dhcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6.h; sourceTree = "<group>"; };
ECF0DE7D118CC19E001A3D6F /* tnet_dhcp6_duid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_duid.c; sourceTree = "<group>"; };
ECF0DE7E118CC19E001A3D6F /* tnet_dhcp6_duid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_duid.h; sourceTree = "<group>"; };
ECF0DE7F118CC19E001A3D6F /* tnet_dhcp6_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_message.c; sourceTree = "<group>"; };
ECF0DE80118CC19E001A3D6F /* tnet_dhcp6_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_message.h; sourceTree = "<group>"; };
ECF0DE81118CC19E001A3D6F /* tnet_dhcp6_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_option.c; sourceTree = "<group>"; };
ECF0DE82118CC19E001A3D6F /* tnet_dhcp6_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_option.h; sourceTree = "<group>"; };
ECF0DE84118CC19E001A3D6F /* tnet_dns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns.c; sourceTree = "<group>"; };
ECF0DE85118CC19E001A3D6F /* tnet_dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns.h; sourceTree = "<group>"; };
ECF0DE86118CC19E001A3D6F /* tnet_dns_a.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_a.c; sourceTree = "<group>"; };
ECF0DE87118CC19E001A3D6F /* tnet_dns_a.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_a.h; sourceTree = "<group>"; };
ECF0DE88118CC19E001A3D6F /* tnet_dns_aaaa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_aaaa.c; sourceTree = "<group>"; };
ECF0DE89118CC19E001A3D6F /* tnet_dns_aaaa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_aaaa.h; sourceTree = "<group>"; };
ECF0DE8A118CC19E001A3D6F /* tnet_dns_cname.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_cname.c; sourceTree = "<group>"; };
ECF0DE8B118CC19E001A3D6F /* tnet_dns_cname.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_cname.h; sourceTree = "<group>"; };
ECF0DE8C118CC19E001A3D6F /* tnet_dns_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_message.c; sourceTree = "<group>"; };
ECF0DE8D118CC19E001A3D6F /* tnet_dns_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_message.h; sourceTree = "<group>"; };
ECF0DE8E118CC19E001A3D6F /* tnet_dns_mx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_mx.c; sourceTree = "<group>"; };
ECF0DE8F118CC19E001A3D6F /* tnet_dns_mx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_mx.h; sourceTree = "<group>"; };
ECF0DE90118CC19E001A3D6F /* tnet_dns_naptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_naptr.c; sourceTree = "<group>"; };
ECF0DE91118CC19E001A3D6F /* tnet_dns_naptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_naptr.h; sourceTree = "<group>"; };
ECF0DE92118CC19E001A3D6F /* tnet_dns_ns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ns.c; sourceTree = "<group>"; };
ECF0DE93118CC19E001A3D6F /* tnet_dns_ns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ns.h; sourceTree = "<group>"; };
ECF0DE94118CC19E001A3D6F /* tnet_dns_opt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_opt.c; sourceTree = "<group>"; };
ECF0DE95118CC19E001A3D6F /* tnet_dns_opt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_opt.h; sourceTree = "<group>"; };
ECF0DE96118CC19E001A3D6F /* tnet_dns_ptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ptr.c; sourceTree = "<group>"; };
ECF0DE97118CC19E001A3D6F /* tnet_dns_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ptr.h; sourceTree = "<group>"; };
ECF0DE98118CC19E001A3D6F /* tnet_dns_regexp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_regexp.c; sourceTree = "<group>"; };
ECF0DE99118CC19E001A3D6F /* tnet_dns_regexp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_regexp.h; sourceTree = "<group>"; };
ECF0DE9A118CC19E001A3D6F /* tnet_dns_resolvconf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_resolvconf.c; sourceTree = "<group>"; };
ECF0DE9B118CC19E001A3D6F /* tnet_dns_resolvconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_resolvconf.h; sourceTree = "<group>"; };
ECF0DE9C118CC19E001A3D6F /* tnet_dns_rr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_rr.c; sourceTree = "<group>"; };
ECF0DE9D118CC19E001A3D6F /* tnet_dns_rr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_rr.h; sourceTree = "<group>"; };
ECF0DE9E118CC19E001A3D6F /* tnet_dns_soa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_soa.c; sourceTree = "<group>"; };
ECF0DE9F118CC19E001A3D6F /* tnet_dns_soa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_soa.h; sourceTree = "<group>"; };
ECF0DEA0118CC19E001A3D6F /* tnet_dns_srv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_srv.c; sourceTree = "<group>"; };
ECF0DEA1118CC19E001A3D6F /* tnet_dns_srv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_srv.h; sourceTree = "<group>"; };
ECF0DEA2118CC19E001A3D6F /* tnet_dns_txt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_txt.c; sourceTree = "<group>"; };
ECF0DEA3118CC19E001A3D6F /* tnet_dns_txt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_txt.h; sourceTree = "<group>"; };
ECF0DEA5118CC19E001A3D6F /* tnet_ice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_ice.c; sourceTree = "<group>"; };
ECF0DEA6118CC19E001A3D6F /* tnet_ice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_ice.h; sourceTree = "<group>"; };
ECF0DEA8118CC19E001A3D6F /* tnet_stun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun.c; sourceTree = "<group>"; };
ECF0DEA9118CC19E001A3D6F /* tnet_stun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun.h; sourceTree = "<group>"; };
ECF0DEAA118CC19E001A3D6F /* tnet_stun_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_attribute.c; sourceTree = "<group>"; };
ECF0DEAB118CC19E001A3D6F /* tnet_stun_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_attribute.h; sourceTree = "<group>"; };
ECF0DEAC118CC19E001A3D6F /* tnet_stun_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_message.c; sourceTree = "<group>"; };
ECF0DEAD118CC19E001A3D6F /* tnet_stun_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_message.h; sourceTree = "<group>"; };
ECF0DEAE118CC19E001A3D6F /* tinynet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinynet.h; sourceTree = "<group>"; };
ECF0DEAF118CC19E001A3D6F /* tinyNET_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyNET_config.h; sourceTree = "<group>"; };
ECF0DEB1118CC19E001A3D6F /* tnet_tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_tls.c; sourceTree = "<group>"; };
ECF0DEB2118CC19E001A3D6F /* tnet_tls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_tls.h; sourceTree = "<group>"; };
ECF0DEB3118CC19E001A3D6F /* tnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet.c; sourceTree = "<group>"; };
ECF0DEB4118CC19E001A3D6F /* tnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet.h; sourceTree = "<group>"; };
ECF0DEB5118CC19E001A3D6F /* tnet_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_auth.c; sourceTree = "<group>"; };
ECF0DEB6118CC19E001A3D6F /* tnet_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_auth.h; sourceTree = "<group>"; };
ECF0DEB7118CC19E001A3D6F /* tnet_endianness.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_endianness.c; sourceTree = "<group>"; };
ECF0DEB8118CC19E001A3D6F /* tnet_endianness.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_endianness.h; sourceTree = "<group>"; };
ECF0DEB9118CC19E001A3D6F /* tnet_hardwares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_hardwares.h; sourceTree = "<group>"; };
ECF0DEBA118CC19E001A3D6F /* tnet_nat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_nat.c; sourceTree = "<group>"; };
ECF0DEBB118CC19E001A3D6F /* tnet_nat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_nat.h; sourceTree = "<group>"; };
ECF0DEBC118CC19E001A3D6F /* tnet_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_poll.c; sourceTree = "<group>"; };
ECF0DEBD118CC19E001A3D6F /* tnet_poll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_poll.h; sourceTree = "<group>"; };
ECF0DEBE118CC19E001A3D6F /* tnet_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_proto.h; sourceTree = "<group>"; };
ECF0DEBF118CC19E001A3D6F /* tnet_socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_socket.c; sourceTree = "<group>"; };
ECF0DEC0118CC19E001A3D6F /* tnet_socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_socket.h; sourceTree = "<group>"; };
ECF0DEC1118CC19E001A3D6F /* tnet_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport.c; sourceTree = "<group>"; };
ECF0DEC2118CC19E001A3D6F /* tnet_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_transport.h; sourceTree = "<group>"; };
ECF0DEC3118CC19E001A3D6F /* tnet_transport_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_poll.c; sourceTree = "<group>"; };
ECF0DEC4118CC19E001A3D6F /* tnet_transport_win32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_win32.c; sourceTree = "<group>"; };
ECF0DEC5118CC19E001A3D6F /* tnet_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_types.h; sourceTree = "<group>"; };
ECF0DEC6118CC19E001A3D6F /* tnet_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_utils.c; sourceTree = "<group>"; };
ECF0DEC7118CC19E001A3D6F /* tnet_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_utils.h; sourceTree = "<group>"; };
ECF0DEC9118CC19E001A3D6F /* tnet_turn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn.c; sourceTree = "<group>"; };
ECF0DECA118CC19E001A3D6F /* tnet_turn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn.h; sourceTree = "<group>"; };
ECF0DECB118CC19E001A3D6F /* tnet_turn_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_attribute.c; sourceTree = "<group>"; };
ECF0DECC118CC19E001A3D6F /* tnet_turn_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_attribute.h; sourceTree = "<group>"; };
ECF0DECD118CC19E001A3D6F /* tnet_turn_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_message.c; sourceTree = "<group>"; };
ECF0DECE118CC19E001A3D6F /* tnet_turn_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_message.h; sourceTree = "<group>"; };
ECF0DF59118CC238001A3D6F /* libtinySMS.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinySMS.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECF0DF6A118CC270001A3D6F /* tsms_rpdu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsms_rpdu.h; sourceTree = "<group>"; };
ECF0DF6C118CC270001A3D6F /* tsms_tpdu_command.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsms_tpdu_command.h; sourceTree = "<group>"; };
ECF0DF6D118CC270001A3D6F /* tsms_tpdu_deliver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsms_tpdu_deliver.h; sourceTree = "<group>"; };
ECF0DF6E118CC270001A3D6F /* tsms_tpdu_report.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsms_tpdu_report.h; sourceTree = "<group>"; };
ECF0DF6F118CC270001A3D6F /* tsms_tpdu_status_report.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsms_tpdu_status_report.h; sourceTree = "<group>"; };
ECF0DF70118CC270001A3D6F /* tsms_tpdu_submit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsms_tpdu_submit.h; sourceTree = "<group>"; };
ECF0DF71118CC270001A3D6F /* tsms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsms.h; sourceTree = "<group>"; };
ECF0DF72118CC270001A3D6F /* tsms_address.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsms_address.h; sourceTree = "<group>"; };
ECF0DF73118CC270001A3D6F /* tsms_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsms_common.h; sourceTree = "<group>"; };
ECF0DF74118CC270001A3D6F /* tsms_etsi_gsm_03_38.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsms_etsi_gsm_03_38.h; sourceTree = "<group>"; };
ECF0DF75118CC270001A3D6F /* tsms_packing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsms_packing.h; sourceTree = "<group>"; };
ECF0DF76118CC270001A3D6F /* tinysms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinysms.h; sourceTree = "<group>"; };
ECF0DF77118CC270001A3D6F /* tinysms_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinysms_config.h; sourceTree = "<group>"; };
ECF0DF7B118CC270001A3D6F /* tsms_rpdu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsms_rpdu.c; sourceTree = "<group>"; };
ECF0DF7D118CC270001A3D6F /* tsms_tpdu_command.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsms_tpdu_command.c; sourceTree = "<group>"; };
ECF0DF7E118CC270001A3D6F /* tsms_tpdu_deliver.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsms_tpdu_deliver.c; sourceTree = "<group>"; };
ECF0DF7F118CC270001A3D6F /* tsms_tpdu_report.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsms_tpdu_report.c; sourceTree = "<group>"; };
ECF0DF80118CC270001A3D6F /* tsms_tpdu_status_report.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsms_tpdu_status_report.c; sourceTree = "<group>"; };
ECF0DF81118CC270001A3D6F /* tsms_tpdu_submit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsms_tpdu_submit.c; sourceTree = "<group>"; };
ECF0DF82118CC270001A3D6F /* tsms.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsms.c; sourceTree = "<group>"; };
ECF0DF83118CC270001A3D6F /* tsms_address.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsms_address.c; sourceTree = "<group>"; };
ECF0DF84118CC270001A3D6F /* tsms_common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsms_common.c; sourceTree = "<group>"; };
ECF0DF85118CC270001A3D6F /* tsms_packing.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsms_packing.c; sourceTree = "<group>"; };
ECF0DFC3118CC4B6001A3D6F /* thttp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp.h; sourceTree = "<group>"; };
ECF0DFC6118CC4B6001A3D6F /* thttp_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_auth.h; sourceTree = "<group>"; };
ECF0DFC7118CC4B6001A3D6F /* thttp_challenge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_challenge.h; sourceTree = "<group>"; };
ECF0DFC9118CC4B6001A3D6F /* thttp_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header.h; sourceTree = "<group>"; };
ECF0DFCA118CC4B6001A3D6F /* thttp_header_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Authorization.h; sourceTree = "<group>"; };
ECF0DFCB118CC4B6001A3D6F /* thttp_header_Content_Length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Content_Length.h; sourceTree = "<group>"; };
ECF0DFCC118CC4B6001A3D6F /* thttp_header_Content_Type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Content_Type.h; sourceTree = "<group>"; };
ECF0DFCD118CC4B6001A3D6F /* thttp_header_Dummy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Dummy.h; sourceTree = "<group>"; };
ECF0DFCE118CC4B6001A3D6F /* thttp_header_ETag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_ETag.h; sourceTree = "<group>"; };
ECF0DFCF118CC4B6001A3D6F /* thttp_header_Transfer_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Transfer_Encoding.h; sourceTree = "<group>"; };
ECF0DFD0118CC4B6001A3D6F /* thttp_header_WWW_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_WWW_Authenticate.h; sourceTree = "<group>"; };
ECF0DFD2118CC4B6001A3D6F /* thttp_parser_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_header.h; sourceTree = "<group>"; };
ECF0DFD3118CC4B6001A3D6F /* thttp_parser_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_message.h; sourceTree = "<group>"; };
ECF0DFD4118CC4B6001A3D6F /* thttp_parser_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_url.h; sourceTree = "<group>"; };
ECF0DFD5118CC4B6001A3D6F /* thttp_action.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_action.h; sourceTree = "<group>"; };
ECF0DFD6118CC4B6001A3D6F /* thttp_dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_dialog.h; sourceTree = "<group>"; };
ECF0DFD7118CC4B6001A3D6F /* thttp_event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_event.h; sourceTree = "<group>"; };
ECF0DFD8118CC4B6001A3D6F /* thttp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_message.h; sourceTree = "<group>"; };
ECF0DFD9118CC4B6001A3D6F /* thttp_session.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_session.h; sourceTree = "<group>"; };
ECF0DFDA118CC4B6001A3D6F /* thttp_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_url.h; sourceTree = "<group>"; };
ECF0DFDB118CC4B6001A3D6F /* tinyhttp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyhttp.h; sourceTree = "<group>"; };
ECF0DFDC118CC4B6001A3D6F /* tinyhttp_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyhttp_config.h; sourceTree = "<group>"; };
ECF0DFEF118CC4B6001A3D6F /* thttp_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_auth.c; sourceTree = "<group>"; };
ECF0DFF0118CC4B6001A3D6F /* thttp_challenge.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_challenge.c; sourceTree = "<group>"; };
ECF0DFF2118CC4B6001A3D6F /* thttp_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header.c; sourceTree = "<group>"; };
ECF0DFF3118CC4B6001A3D6F /* thttp_header_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Authorization.c; sourceTree = "<group>"; };
ECF0DFF4118CC4B6001A3D6F /* thttp_header_Content_Length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Length.c; sourceTree = "<group>"; };
ECF0DFF5118CC4B6001A3D6F /* thttp_header_Content_Type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Type.c; sourceTree = "<group>"; };
ECF0DFF6118CC4B6001A3D6F /* thttp_header_Dummy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Dummy.c; sourceTree = "<group>"; };
ECF0DFF7118CC4B6001A3D6F /* thttp_header_ETag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_ETag.c; sourceTree = "<group>"; };
ECF0DFF8118CC4B6001A3D6F /* thttp_header_Transfer_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Transfer_Encoding.c; sourceTree = "<group>"; };
ECF0DFF9118CC4B6001A3D6F /* thttp_header_WWW_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_WWW_Authenticate.c; sourceTree = "<group>"; };
ECF0DFFC118CC4B6001A3D6F /* thttp_parser_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_header.c; sourceTree = "<group>"; };
ECF0DFFD118CC4B6001A3D6F /* thttp_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_message.c; sourceTree = "<group>"; };
ECF0DFFE118CC4B6001A3D6F /* thttp_parser_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_url.c; sourceTree = "<group>"; };
ECF0DFFF118CC4B6001A3D6F /* thttp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp.c; sourceTree = "<group>"; };
ECF0E000118CC4B6001A3D6F /* thttp_action.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_action.c; sourceTree = "<group>"; };
ECF0E001118CC4B6001A3D6F /* thttp_dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_dialog.c; sourceTree = "<group>"; };
ECF0E002118CC4B6001A3D6F /* thttp_event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_event.c; sourceTree = "<group>"; };
ECF0E003118CC4B6001A3D6F /* thttp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_message.c; sourceTree = "<group>"; };
ECF0E004118CC4B6001A3D6F /* thttp_session.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_session.c; sourceTree = "<group>"; };
ECF0E005118CC4B6001A3D6F /* thttp_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_url.c; sourceTree = "<group>"; };
ECF0E054118CC592001A3D6F /* libtinyIPSec.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyIPSec.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECF0E060118CC5B6001A3D6F /* tinyipsec_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyipsec_config.h; sourceTree = "<group>"; };
ECF0E061118CC5B6001A3D6F /* tipsec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec.c; sourceTree = "<group>"; };
ECF0E062118CC5B6001A3D6F /* tipsec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec.h; sourceTree = "<group>"; };
ECF0E063118CC5B6001A3D6F /* tipsec_common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_common.c; sourceTree = "<group>"; };
ECF0E064118CC5B6001A3D6F /* tipsec_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_common.h; sourceTree = "<group>"; };
ECF0E065118CC5B6001A3D6F /* tipsec_racoon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_racoon.c; sourceTree = "<group>"; };
ECF0E066118CC5B6001A3D6F /* tipsec_racoon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_racoon.h; sourceTree = "<group>"; };
ECF0E067118CC5B6001A3D6F /* tipsec_vista.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_vista.c; sourceTree = "<group>"; };
ECF0E068118CC5B6001A3D6F /* tipsec_vista.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_vista.h; sourceTree = "<group>"; };
ECF0E069118CC5B6001A3D6F /* tipsec_xp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tipsec_xp.c; sourceTree = "<group>"; };
ECF0E06A118CC5B6001A3D6F /* tipsec_xp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tipsec_xp.h; sourceTree = "<group>"; };
ECF0E08D118CC667001A3D6F /* tsdp_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header.h; sourceTree = "<group>"; };
ECF0E08E118CC667001A3D6F /* tsdp_header_A.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_A.h; sourceTree = "<group>"; };
ECF0E08F118CC667001A3D6F /* tsdp_header_B.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_B.h; sourceTree = "<group>"; };
ECF0E090118CC667001A3D6F /* tsdp_header_C.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_C.h; sourceTree = "<group>"; };
ECF0E091118CC667001A3D6F /* tsdp_header_Dummy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_Dummy.h; sourceTree = "<group>"; };
ECF0E092118CC667001A3D6F /* tsdp_header_E.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_E.h; sourceTree = "<group>"; };
ECF0E093118CC667001A3D6F /* tsdp_header_I.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_I.h; sourceTree = "<group>"; };
ECF0E094118CC667001A3D6F /* tsdp_header_K.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_K.h; sourceTree = "<group>"; };
ECF0E095118CC667001A3D6F /* tsdp_header_M.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_M.h; sourceTree = "<group>"; };
ECF0E096118CC667001A3D6F /* tsdp_header_O.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_O.h; sourceTree = "<group>"; };
ECF0E097118CC667001A3D6F /* tsdp_header_P.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_P.h; sourceTree = "<group>"; };
ECF0E098118CC667001A3D6F /* tsdp_header_R.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_R.h; sourceTree = "<group>"; };
ECF0E099118CC667001A3D6F /* tsdp_header_S.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_S.h; sourceTree = "<group>"; };
ECF0E09A118CC667001A3D6F /* tsdp_header_T.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_T.h; sourceTree = "<group>"; };
ECF0E09B118CC667001A3D6F /* tsdp_header_U.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_U.h; sourceTree = "<group>"; };
ECF0E09C118CC667001A3D6F /* tsdp_header_V.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_V.h; sourceTree = "<group>"; };
ECF0E09D118CC667001A3D6F /* tsdp_header_Z.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_header_Z.h; sourceTree = "<group>"; };
ECF0E09F118CC667001A3D6F /* tsdp_parser_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_parser_header.h; sourceTree = "<group>"; };
ECF0E0A0118CC667001A3D6F /* tsdp_parser_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_parser_message.h; sourceTree = "<group>"; };
ECF0E0A1118CC667001A3D6F /* tsdp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp_message.h; sourceTree = "<group>"; };
ECF0E0A2118CC667001A3D6F /* tinysdp_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinysdp_config.h; sourceTree = "<group>"; };
ECF0E0A3118CC667001A3D6F /* tsdp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsdp.h; sourceTree = "<group>"; };
ECF0E0BA118CC667001A3D6F /* tsdp_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header.c; sourceTree = "<group>"; };
ECF0E0BB118CC667001A3D6F /* tsdp_header_A.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_A.c; sourceTree = "<group>"; };
ECF0E0BC118CC667001A3D6F /* tsdp_header_B.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_B.c; sourceTree = "<group>"; };
ECF0E0BD118CC667001A3D6F /* tsdp_header_C.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_C.c; sourceTree = "<group>"; };
ECF0E0BE118CC667001A3D6F /* tsdp_header_Dummy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_Dummy.c; sourceTree = "<group>"; };
ECF0E0BF118CC667001A3D6F /* tsdp_header_E.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_E.c; sourceTree = "<group>"; };
ECF0E0C0118CC667001A3D6F /* tsdp_header_I.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_I.c; sourceTree = "<group>"; };
ECF0E0C1118CC667001A3D6F /* tsdp_header_K.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_K.c; sourceTree = "<group>"; };
ECF0E0C2118CC667001A3D6F /* tsdp_header_M.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_M.c; sourceTree = "<group>"; };
ECF0E0C3118CC667001A3D6F /* tsdp_header_O.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_O.c; sourceTree = "<group>"; };
ECF0E0C4118CC667001A3D6F /* tsdp_header_P.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_P.c; sourceTree = "<group>"; };
ECF0E0C5118CC667001A3D6F /* tsdp_header_R.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_R.c; sourceTree = "<group>"; };
ECF0E0C6118CC667001A3D6F /* tsdp_header_S.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_S.c; sourceTree = "<group>"; };
ECF0E0C7118CC667001A3D6F /* tsdp_header_T.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_T.c; sourceTree = "<group>"; };
ECF0E0C8118CC667001A3D6F /* tsdp_header_U.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_U.c; sourceTree = "<group>"; };
ECF0E0C9118CC667001A3D6F /* tsdp_header_V.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_V.c; sourceTree = "<group>"; };
ECF0E0CA118CC667001A3D6F /* tsdp_header_Z.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_header_Z.c; sourceTree = "<group>"; };
ECF0E0CC118CC667001A3D6F /* tsdp_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_parser_message.c; sourceTree = "<group>"; };
ECF0E0CD118CC667001A3D6F /* tsdp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp.c; sourceTree = "<group>"; };
ECF0E0CE118CC667001A3D6F /* tsdp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsdp_message.c; sourceTree = "<group>"; };
ECF0E126118CC6C6001A3D6F /* tsip_api_invite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_invite.h; sourceTree = "<group>"; };
ECF0E127118CC6C6001A3D6F /* tsip_api_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_message.h; sourceTree = "<group>"; };
ECF0E128118CC6C6001A3D6F /* tsip_api_publish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_publish.h; sourceTree = "<group>"; };
ECF0E129118CC6C6001A3D6F /* tsip_api_register.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_register.h; sourceTree = "<group>"; };
ECF0E12A118CC6C6001A3D6F /* tsip_api_subscribe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_api_subscribe.h; sourceTree = "<group>"; };
ECF0E12C118CC6C6001A3D6F /* tsip_challenge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_challenge.h; sourceTree = "<group>"; };
ECF0E12D118CC6C6001A3D6F /* tsip_milenage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_milenage.h; sourceTree = "<group>"; };
ECF0E12E118CC6C6001A3D6F /* tsip_rijndael.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_rijndael.h; sourceTree = "<group>"; };
ECF0E130118CC6C6001A3D6F /* tsip_dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog.h; sourceTree = "<group>"; };
ECF0E131118CC6C6001A3D6F /* tsip_dialog_invite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_invite.h; sourceTree = "<group>"; };
ECF0E132118CC6C6001A3D6F /* tsip_dialog_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_layer.h; sourceTree = "<group>"; };
ECF0E133118CC6C6001A3D6F /* tsip_dialog_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_message.h; sourceTree = "<group>"; };
ECF0E134118CC6C6001A3D6F /* tsip_dialog_publish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_publish.h; sourceTree = "<group>"; };
ECF0E135118CC6C6001A3D6F /* tsip_dialog_register.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_register.h; sourceTree = "<group>"; };
ECF0E136118CC6C6001A3D6F /* tsip_dialog_subscribe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_dialog_subscribe.h; sourceTree = "<group>"; };
ECF0E138118CC6C6001A3D6F /* tsip_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header.h; sourceTree = "<group>"; };
ECF0E139118CC6C6001A3D6F /* tsip_header_accept.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_accept.h; sourceTree = "<group>"; };
ECF0E13A118CC6C6001A3D6F /* tsip_header_Accept_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Contact.h; sourceTree = "<group>"; };
ECF0E13B118CC6C6001A3D6F /* tsip_header_Accept_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Encoding.h; sourceTree = "<group>"; };
ECF0E13C118CC6C6001A3D6F /* tsip_header_Accept_Language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Language.h; sourceTree = "<group>"; };
ECF0E13D118CC6C6001A3D6F /* tsip_header_Accept_Resource_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Accept_Resource_Priority.h; sourceTree = "<group>"; };
ECF0E13E118CC6C6001A3D6F /* tsip_header_Alert_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Alert_Info.h; sourceTree = "<group>"; };
ECF0E13F118CC6C6001A3D6F /* tsip_header_Allow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Allow.h; sourceTree = "<group>"; };
ECF0E140118CC6C6001A3D6F /* tsip_header_Allow_Events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Allow_Events.h; sourceTree = "<group>"; };
ECF0E141118CC6C6001A3D6F /* tsip_header_Authentication_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Authentication_Info.h; sourceTree = "<group>"; };
ECF0E142118CC6C6001A3D6F /* tsip_header_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Authorization.h; sourceTree = "<group>"; };
ECF0E143118CC6C6001A3D6F /* tsip_header_Call_ID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Call_ID.h; sourceTree = "<group>"; };
ECF0E144118CC6C6001A3D6F /* tsip_header_Call_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Call_Info.h; sourceTree = "<group>"; };
ECF0E145118CC6C6001A3D6F /* tsip_header_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Contact.h; sourceTree = "<group>"; };
ECF0E146118CC6C6001A3D6F /* tsip_header_Content_Disposition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Disposition.h; sourceTree = "<group>"; };
ECF0E147118CC6C6001A3D6F /* tsip_header_Content_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Encoding.h; sourceTree = "<group>"; };
ECF0E148118CC6C6001A3D6F /* tsip_header_Content_Language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Language.h; sourceTree = "<group>"; };
ECF0E149118CC6C6001A3D6F /* tsip_header_Content_Length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Length.h; sourceTree = "<group>"; };
ECF0E14A118CC6C6001A3D6F /* tsip_header_Content_Type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Content_Type.h; sourceTree = "<group>"; };
ECF0E14B118CC6C6001A3D6F /* tsip_header_CSeq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_CSeq.h; sourceTree = "<group>"; };
ECF0E14C118CC6C6001A3D6F /* tsip_header_Date.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Date.h; sourceTree = "<group>"; };
ECF0E14D118CC6C6001A3D6F /* tsip_header_Dummy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Dummy.h; sourceTree = "<group>"; };
ECF0E14E118CC6C6001A3D6F /* tsip_header_Error_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Error_Info.h; sourceTree = "<group>"; };
ECF0E14F118CC6C6001A3D6F /* tsip_header_Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Event.h; sourceTree = "<group>"; };
ECF0E150118CC6C6001A3D6F /* tsip_header_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Expires.h; sourceTree = "<group>"; };
ECF0E151118CC6C6001A3D6F /* tsip_header_From.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_From.h; sourceTree = "<group>"; };
ECF0E152118CC6C6001A3D6F /* tsip_header_History_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_History_Info.h; sourceTree = "<group>"; };
ECF0E153118CC6C6001A3D6F /* tsip_header_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Identity.h; sourceTree = "<group>"; };
ECF0E154118CC6C6001A3D6F /* tsip_header_Identity_Info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Identity_Info.h; sourceTree = "<group>"; };
ECF0E155118CC6C6001A3D6F /* tsip_header_In_Reply_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_In_Reply_To.h; sourceTree = "<group>"; };
ECF0E156118CC6C6001A3D6F /* tsip_header_Join.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Join.h; sourceTree = "<group>"; };
ECF0E157118CC6C6001A3D6F /* tsip_header_Max_Forwards.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Max_Forwards.h; sourceTree = "<group>"; };
ECF0E158118CC6C6001A3D6F /* tsip_header_MIME_Version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_MIME_Version.h; sourceTree = "<group>"; };
ECF0E159118CC6C6001A3D6F /* tsip_header_Min_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Min_Expires.h; sourceTree = "<group>"; };
ECF0E15A118CC6C6001A3D6F /* tsip_header_Min_SE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Min_SE.h; sourceTree = "<group>"; };
ECF0E15B118CC6C6001A3D6F /* tsip_header_Organization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Organization.h; sourceTree = "<group>"; };
ECF0E15C118CC6C6001A3D6F /* 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>"; };
ECF0E15D118CC6C6001A3D6F /* tsip_header_P_Answer_State.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Answer_State.h; sourceTree = "<group>"; };
ECF0E15E118CC6C6001A3D6F /* tsip_header_P_Asserted_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Asserted_Identity.h; sourceTree = "<group>"; };
ECF0E15F118CC6C6001A3D6F /* tsip_header_P_Associated_URI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Associated_URI.h; sourceTree = "<group>"; };
ECF0E160118CC6C6001A3D6F /* 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>"; };
ECF0E161118CC6C6001A3D6F /* 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>"; };
ECF0E162118CC6C6001A3D6F /* tsip_header_P_Charging_Vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Charging_Vector.h; sourceTree = "<group>"; };
ECF0E163118CC6C6001A3D6F /* 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>"; };
ECF0E164118CC6C6001A3D6F /* tsip_header_P_DCS_LAES.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_LAES.h; sourceTree = "<group>"; };
ECF0E165118CC6C6001A3D6F /* tsip_header_P_DCS_OSPS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_OSPS.h; sourceTree = "<group>"; };
ECF0E166118CC6C6001A3D6F /* tsip_header_P_DCS_Redirect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_DCS_Redirect.h; sourceTree = "<group>"; };
ECF0E167118CC6C6001A3D6F /* 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>"; };
ECF0E168118CC6C6001A3D6F /* tsip_header_P_Early_Media.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Early_Media.h; sourceTree = "<group>"; };
ECF0E169118CC6C6001A3D6F /* tsip_header_P_Media_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Media_Authorization.h; sourceTree = "<group>"; };
ECF0E16A118CC6C6001A3D6F /* tsip_header_P_Preferred_Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Preferred_Identity.h; sourceTree = "<group>"; };
ECF0E16B118CC6C6001A3D6F /* tsip_header_P_Profile_Key.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_Profile_Key.h; sourceTree = "<group>"; };
ECF0E16C118CC6C6001A3D6F /* tsip_header_P_User_Database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_P_User_Database.h; sourceTree = "<group>"; };
ECF0E16D118CC6C6001A3D6F /* 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>"; };
ECF0E16E118CC6C6001A3D6F /* tsip_header_Path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Path.h; sourceTree = "<group>"; };
ECF0E16F118CC6C6001A3D6F /* tsip_header_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Priority.h; sourceTree = "<group>"; };
ECF0E170118CC6C6001A3D6F /* tsip_header_Privacy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Privacy.h; sourceTree = "<group>"; };
ECF0E171118CC6C6001A3D6F /* tsip_header_Proxy_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Authenticate.h; sourceTree = "<group>"; };
ECF0E172118CC6C6001A3D6F /* tsip_header_Proxy_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Authorization.h; sourceTree = "<group>"; };
ECF0E173118CC6C6001A3D6F /* tsip_header_Proxy_Require.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Proxy_Require.h; sourceTree = "<group>"; };
ECF0E174118CC6C6001A3D6F /* tsip_header_RAck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_RAck.h; sourceTree = "<group>"; };
ECF0E175118CC6C6001A3D6F /* tsip_header_Reason.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reason.h; sourceTree = "<group>"; };
ECF0E176118CC6C6001A3D6F /* tsip_header_Record_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Record_Route.h; sourceTree = "<group>"; };
ECF0E177118CC6C6001A3D6F /* tsip_header_Refer_Sub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Refer_Sub.h; sourceTree = "<group>"; };
ECF0E178118CC6C6001A3D6F /* tsip_header_Refer_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Refer_To.h; sourceTree = "<group>"; };
ECF0E179118CC6C6001A3D6F /* tsip_header_Referred_By.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Referred_By.h; sourceTree = "<group>"; };
ECF0E17A118CC6C6001A3D6F /* tsip_header_Reject_Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reject_Contact.h; sourceTree = "<group>"; };
ECF0E17B118CC6C6001A3D6F /* tsip_header_Replaces.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Replaces.h; sourceTree = "<group>"; };
ECF0E17C118CC6C6001A3D6F /* tsip_header_Reply_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Reply_To.h; sourceTree = "<group>"; };
ECF0E17D118CC6C6001A3D6F /* tsip_header_Request_Disposition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Request_Disposition.h; sourceTree = "<group>"; };
ECF0E17E118CC6C7001A3D6F /* tsip_header_Require.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Require.h; sourceTree = "<group>"; };
ECF0E17F118CC6C7001A3D6F /* tsip_header_Resource_Priority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Resource_Priority.h; sourceTree = "<group>"; };
ECF0E180118CC6C7001A3D6F /* tsip_header_Retry_After.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Retry_After.h; sourceTree = "<group>"; };
ECF0E181118CC6C7001A3D6F /* tsip_header_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Route.h; sourceTree = "<group>"; };
ECF0E182118CC6C7001A3D6F /* tsip_header_RSeq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_RSeq.h; sourceTree = "<group>"; };
ECF0E183118CC6C7001A3D6F /* tsip_header_Security_Client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Client.h; sourceTree = "<group>"; };
ECF0E184118CC6C7001A3D6F /* tsip_header_Security_Server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Server.h; sourceTree = "<group>"; };
ECF0E185118CC6C7001A3D6F /* tsip_header_Security_Verify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Security_Verify.h; sourceTree = "<group>"; };
ECF0E186118CC6C7001A3D6F /* tsip_header_Server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Server.h; sourceTree = "<group>"; };
ECF0E187118CC6C7001A3D6F /* tsip_header_Service_Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Service_Route.h; sourceTree = "<group>"; };
ECF0E188118CC6C7001A3D6F /* tsip_header_Session_Expires.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Session_Expires.h; sourceTree = "<group>"; };
ECF0E189118CC6C7001A3D6F /* tsip_header_SIP_ETag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_SIP_ETag.h; sourceTree = "<group>"; };
ECF0E18A118CC6C7001A3D6F /* tsip_header_SIP_If_Match.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_SIP_If_Match.h; sourceTree = "<group>"; };
ECF0E18B118CC6C7001A3D6F /* tsip_header_Subject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Subject.h; sourceTree = "<group>"; };
ECF0E18C118CC6C7001A3D6F /* tsip_header_Subscription_State.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Subscription_State.h; sourceTree = "<group>"; };
ECF0E18D118CC6C7001A3D6F /* tsip_header_Supported.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Supported.h; sourceTree = "<group>"; };
ECF0E18E118CC6C7001A3D6F /* tsip_header_Target_Dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Target_Dialog.h; sourceTree = "<group>"; };
ECF0E18F118CC6C7001A3D6F /* tsip_header_Timestamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Timestamp.h; sourceTree = "<group>"; };
ECF0E190118CC6C7001A3D6F /* tsip_header_To.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_To.h; sourceTree = "<group>"; };
ECF0E191118CC6C7001A3D6F /* tsip_header_Unsupported.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Unsupported.h; sourceTree = "<group>"; };
ECF0E192118CC6C7001A3D6F /* tsip_header_User_Agent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_User_Agent.h; sourceTree = "<group>"; };
ECF0E193118CC6C7001A3D6F /* tsip_header_Via.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Via.h; sourceTree = "<group>"; };
ECF0E194118CC6C7001A3D6F /* tsip_header_Warning.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_Warning.h; sourceTree = "<group>"; };
ECF0E195118CC6C7001A3D6F /* tsip_header_WWW_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_header_WWW_Authenticate.h; sourceTree = "<group>"; };
ECF0E196118CC6C7001A3D6F /* tsip_headers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_headers.h; sourceTree = "<group>"; };
ECF0E198118CC6C7001A3D6F /* tsip_msession.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_msession.h; sourceTree = "<group>"; };
ECF0E19A118CC6C7001A3D6F /* tsip_parser_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_header.h; sourceTree = "<group>"; };
ECF0E19B118CC6C7001A3D6F /* tsip_parser_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_message.h; sourceTree = "<group>"; };
ECF0E19C118CC6C7001A3D6F /* tsip_parser_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_parser_uri.h; sourceTree = "<group>"; };
ECF0E19E118CC6C7001A3D6F /* tsip_transac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac.h; sourceTree = "<group>"; };
ECF0E19F118CC6C7001A3D6F /* tsip_transac_ict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ict.h; sourceTree = "<group>"; };
ECF0E1A0118CC6C7001A3D6F /* tsip_transac_ist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_ist.h; sourceTree = "<group>"; };
ECF0E1A1118CC6C7001A3D6F /* tsip_transac_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_layer.h; sourceTree = "<group>"; };
ECF0E1A2118CC6C7001A3D6F /* tsip_transac_nict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nict.h; sourceTree = "<group>"; };
ECF0E1A3118CC6C7001A3D6F /* tsip_transac_nist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transac_nist.h; sourceTree = "<group>"; };
ECF0E1A5118CC6C7001A3D6F /* tsip_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport.h; sourceTree = "<group>"; };
ECF0E1A6118CC6C7001A3D6F /* tsip_transport_ipsec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_ipsec.h; sourceTree = "<group>"; };
ECF0E1A7118CC6C7001A3D6F /* tsip_transport_layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_layer.h; sourceTree = "<group>"; };
ECF0E1A8118CC6C7001A3D6F /* tsip_transport_tls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_transport_tls.h; sourceTree = "<group>"; };
ECF0E1A9118CC6C7001A3D6F /* tsip_action.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_action.h; sourceTree = "<group>"; };
ECF0E1AA118CC6C7001A3D6F /* tsip_event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_event.h; sourceTree = "<group>"; };
ECF0E1AB118CC6C7001A3D6F /* tsip_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_message.h; sourceTree = "<group>"; };
ECF0E1AC118CC6C7001A3D6F /* tsip_ssession.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_ssession.h; sourceTree = "<group>"; };
ECF0E1AD118CC6C7001A3D6F /* tsip_timers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_timers.h; sourceTree = "<group>"; };
ECF0E1AE118CC6C7001A3D6F /* tsip_uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip_uri.h; sourceTree = "<group>"; };
ECF0E1AF118CC6C7001A3D6F /* tinysip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinysip.h; sourceTree = "<group>"; };
ECF0E1B0118CC6C7001A3D6F /* tinysip_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinysip_config.h; sourceTree = "<group>"; };
ECF0E1B1118CC6C7001A3D6F /* tsip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tsip.h; sourceTree = "<group>"; };
ECF0E21B118CC6C7001A3D6F /* tsip_api_invite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_invite.c; sourceTree = "<group>"; };
ECF0E21C118CC6C7001A3D6F /* tsip_api_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_message.c; sourceTree = "<group>"; };
ECF0E21D118CC6C7001A3D6F /* tsip_api_publish.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_publish.c; sourceTree = "<group>"; };
ECF0E21E118CC6C7001A3D6F /* tsip_api_register.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_register.c; sourceTree = "<group>"; };
ECF0E21F118CC6C7001A3D6F /* tsip_api_subscribe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_api_subscribe.c; sourceTree = "<group>"; };
ECF0E221118CC6C7001A3D6F /* tsip_challenge.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_challenge.c; sourceTree = "<group>"; };
ECF0E222118CC6C7001A3D6F /* tsip_milenage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_milenage.c; sourceTree = "<group>"; };
ECF0E223118CC6C7001A3D6F /* tsip_rijndael.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_rijndael.c; sourceTree = "<group>"; };
ECF0E225118CC6C7001A3D6F /* tsip_dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog.c; sourceTree = "<group>"; };
ECF0E226118CC6C7001A3D6F /* tsip_dialog_invite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_invite.c; sourceTree = "<group>"; };
ECF0E227118CC6C7001A3D6F /* tsip_dialog_invite.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_invite.client.c; sourceTree = "<group>"; };
ECF0E228118CC6C7001A3D6F /* tsip_dialog_invite.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_invite.server.c; sourceTree = "<group>"; };
ECF0E229118CC6C7001A3D6F /* tsip_dialog_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_layer.c; sourceTree = "<group>"; };
ECF0E22A118CC6C7001A3D6F /* tsip_dialog_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_message.c; sourceTree = "<group>"; };
ECF0E22B118CC6C7001A3D6F /* tsip_dialog_publish.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_publish.client.c; sourceTree = "<group>"; };
ECF0E22C118CC6C7001A3D6F /* tsip_dialog_register.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_register.client.c; sourceTree = "<group>"; };
ECF0E22D118CC6C7001A3D6F /* tsip_dialog_register.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_register.server.c; sourceTree = "<group>"; };
ECF0E22E118CC6C7001A3D6F /* tsip_dialog_subscribe.client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_subscribe.client.c; sourceTree = "<group>"; };
ECF0E22F118CC6C7001A3D6F /* tsip_dialog_subscribe.server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_dialog_subscribe.server.c; sourceTree = "<group>"; };
ECF0E231118CC6C7001A3D6F /* tsip_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header.c; sourceTree = "<group>"; };
ECF0E232118CC6C7001A3D6F /* tsip_header_accept.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_accept.c; sourceTree = "<group>"; };
ECF0E233118CC6C7001A3D6F /* tsip_header_Accept_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Contact.c; sourceTree = "<group>"; };
ECF0E234118CC6C7001A3D6F /* tsip_header_Accept_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Encoding.c; sourceTree = "<group>"; };
ECF0E235118CC6C7001A3D6F /* tsip_header_Accept_Language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Language.c; sourceTree = "<group>"; };
ECF0E236118CC6C7001A3D6F /* tsip_header_Accept_Resource_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Accept_Resource_Priority.c; sourceTree = "<group>"; };
ECF0E237118CC6C7001A3D6F /* tsip_header_Alert_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Alert_Info.c; sourceTree = "<group>"; };
ECF0E238118CC6C7001A3D6F /* tsip_header_Allow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Allow.c; sourceTree = "<group>"; };
ECF0E239118CC6C7001A3D6F /* tsip_header_Allow_Events.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Allow_Events.c; sourceTree = "<group>"; };
ECF0E23A118CC6C7001A3D6F /* tsip_header_Authentication_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Authentication_Info.c; sourceTree = "<group>"; };
ECF0E23B118CC6C7001A3D6F /* tsip_header_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Authorization.c; sourceTree = "<group>"; };
ECF0E23C118CC6C7001A3D6F /* tsip_header_Call_ID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Call_ID.c; sourceTree = "<group>"; };
ECF0E23D118CC6C7001A3D6F /* tsip_header_Call_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Call_Info.c; sourceTree = "<group>"; };
ECF0E23E118CC6C7001A3D6F /* tsip_header_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Contact.c; sourceTree = "<group>"; };
ECF0E23F118CC6C7001A3D6F /* tsip_header_Content_Disposition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Disposition.c; sourceTree = "<group>"; };
ECF0E240118CC6C7001A3D6F /* tsip_header_Content_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Encoding.c; sourceTree = "<group>"; };
ECF0E241118CC6C7001A3D6F /* tsip_header_Content_Language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Language.c; sourceTree = "<group>"; };
ECF0E242118CC6C7001A3D6F /* tsip_header_Content_Length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Length.c; sourceTree = "<group>"; };
ECF0E243118CC6C7001A3D6F /* tsip_header_Content_Type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Content_Type.c; sourceTree = "<group>"; };
ECF0E244118CC6C7001A3D6F /* tsip_header_CSeq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_CSeq.c; sourceTree = "<group>"; };
ECF0E245118CC6C7001A3D6F /* tsip_header_Date.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Date.c; sourceTree = "<group>"; };
ECF0E246118CC6C7001A3D6F /* tsip_header_Dummy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Dummy.c; sourceTree = "<group>"; };
ECF0E247118CC6C7001A3D6F /* tsip_header_Error_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Error_Info.c; sourceTree = "<group>"; };
ECF0E248118CC6C7001A3D6F /* tsip_header_Event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Event.c; sourceTree = "<group>"; };
ECF0E249118CC6C7001A3D6F /* tsip_header_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Expires.c; sourceTree = "<group>"; };
ECF0E24A118CC6C7001A3D6F /* tsip_header_From.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_From.c; sourceTree = "<group>"; };
ECF0E24B118CC6C7001A3D6F /* tsip_header_History_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_History_Info.c; sourceTree = "<group>"; };
ECF0E24C118CC6C7001A3D6F /* tsip_header_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Identity.c; sourceTree = "<group>"; };
ECF0E24D118CC6C7001A3D6F /* tsip_header_Identity_Info.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Identity_Info.c; sourceTree = "<group>"; };
ECF0E24E118CC6C7001A3D6F /* tsip_header_In_Reply_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_In_Reply_To.c; sourceTree = "<group>"; };
ECF0E24F118CC6C7001A3D6F /* tsip_header_Join.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Join.c; sourceTree = "<group>"; };
ECF0E250118CC6C7001A3D6F /* tsip_header_Max_Forwards.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Max_Forwards.c; sourceTree = "<group>"; };
ECF0E251118CC6C7001A3D6F /* tsip_header_MIME_Version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_MIME_Version.c; sourceTree = "<group>"; };
ECF0E252118CC6C7001A3D6F /* tsip_header_Min_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Min_Expires.c; sourceTree = "<group>"; };
ECF0E253118CC6C7001A3D6F /* tsip_header_Min_SE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Min_SE.c; sourceTree = "<group>"; };
ECF0E254118CC6C7001A3D6F /* tsip_header_Organization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Organization.c; sourceTree = "<group>"; };
ECF0E255118CC6C7001A3D6F /* 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>"; };
ECF0E256118CC6C7001A3D6F /* tsip_header_P_Answer_State.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Answer_State.c; sourceTree = "<group>"; };
ECF0E257118CC6C7001A3D6F /* tsip_header_P_Asserted_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Asserted_Identity.c; sourceTree = "<group>"; };
ECF0E258118CC6C7001A3D6F /* tsip_header_P_Associated_URI.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Associated_URI.c; sourceTree = "<group>"; };
ECF0E259118CC6C7001A3D6F /* 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>"; };
ECF0E25A118CC6C7001A3D6F /* 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>"; };
ECF0E25B118CC6C7001A3D6F /* tsip_header_P_Charging_Vector.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Charging_Vector.c; sourceTree = "<group>"; };
ECF0E25C118CC6C7001A3D6F /* 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>"; };
ECF0E25D118CC6C7001A3D6F /* tsip_header_P_DCS_LAES.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_LAES.c; sourceTree = "<group>"; };
ECF0E25E118CC6C7001A3D6F /* tsip_header_P_DCS_OSPS.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_OSPS.c; sourceTree = "<group>"; };
ECF0E25F118CC6C7001A3D6F /* tsip_header_P_DCS_Redirect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_DCS_Redirect.c; sourceTree = "<group>"; };
ECF0E260118CC6C7001A3D6F /* 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>"; };
ECF0E261118CC6C7001A3D6F /* tsip_header_P_Early_Media.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Early_Media.c; sourceTree = "<group>"; };
ECF0E262118CC6C7001A3D6F /* tsip_header_P_Media_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Media_Authorization.c; sourceTree = "<group>"; };
ECF0E263118CC6C7001A3D6F /* tsip_header_P_Preferred_Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Preferred_Identity.c; sourceTree = "<group>"; };
ECF0E264118CC6C7001A3D6F /* tsip_header_P_Profile_Key.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_Profile_Key.c; sourceTree = "<group>"; };
ECF0E265118CC6C7001A3D6F /* tsip_header_P_User_Database.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_P_User_Database.c; sourceTree = "<group>"; };
ECF0E266118CC6C7001A3D6F /* 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>"; };
ECF0E267118CC6C7001A3D6F /* tsip_header_Path.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Path.c; sourceTree = "<group>"; };
ECF0E268118CC6C7001A3D6F /* tsip_header_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Priority.c; sourceTree = "<group>"; };
ECF0E269118CC6C7001A3D6F /* tsip_header_Privacy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Privacy.c; sourceTree = "<group>"; };
ECF0E26A118CC6C7001A3D6F /* tsip_header_Proxy_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Authenticate.c; sourceTree = "<group>"; };
ECF0E26B118CC6C7001A3D6F /* tsip_header_Proxy_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Authorization.c; sourceTree = "<group>"; };
ECF0E26C118CC6C7001A3D6F /* tsip_header_Proxy_Require.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Proxy_Require.c; sourceTree = "<group>"; };
ECF0E26D118CC6C7001A3D6F /* tsip_header_RAck.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_RAck.c; sourceTree = "<group>"; };
ECF0E26E118CC6C7001A3D6F /* tsip_header_Reason.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reason.c; sourceTree = "<group>"; };
ECF0E26F118CC6C7001A3D6F /* tsip_header_Record_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Record_Route.c; sourceTree = "<group>"; };
ECF0E270118CC6C7001A3D6F /* tsip_header_Refer_Sub.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Refer_Sub.c; sourceTree = "<group>"; };
ECF0E271118CC6C7001A3D6F /* tsip_header_Refer_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Refer_To.c; sourceTree = "<group>"; };
ECF0E272118CC6C7001A3D6F /* tsip_header_Referred_By.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Referred_By.c; sourceTree = "<group>"; };
ECF0E273118CC6C7001A3D6F /* tsip_header_Reject_Contact.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reject_Contact.c; sourceTree = "<group>"; };
ECF0E274118CC6C7001A3D6F /* tsip_header_Replaces.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Replaces.c; sourceTree = "<group>"; };
ECF0E275118CC6C7001A3D6F /* tsip_header_Reply_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Reply_To.c; sourceTree = "<group>"; };
ECF0E276118CC6C7001A3D6F /* tsip_header_Request_Disposition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Request_Disposition.c; sourceTree = "<group>"; };
ECF0E277118CC6C7001A3D6F /* tsip_header_Require.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Require.c; sourceTree = "<group>"; };
ECF0E278118CC6C7001A3D6F /* tsip_header_Resource_Priority.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Resource_Priority.c; sourceTree = "<group>"; };
ECF0E279118CC6C7001A3D6F /* tsip_header_Retry_After.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Retry_After.c; sourceTree = "<group>"; };
ECF0E27A118CC6C7001A3D6F /* tsip_header_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Route.c; sourceTree = "<group>"; };
ECF0E27B118CC6C7001A3D6F /* tsip_header_RSeq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_RSeq.c; sourceTree = "<group>"; };
ECF0E27C118CC6C7001A3D6F /* tsip_header_Security_Client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Client.c; sourceTree = "<group>"; };
ECF0E27D118CC6C7001A3D6F /* tsip_header_Security_Server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Server.c; sourceTree = "<group>"; };
ECF0E27E118CC6C7001A3D6F /* tsip_header_Security_Verify.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Security_Verify.c; sourceTree = "<group>"; };
ECF0E27F118CC6C7001A3D6F /* tsip_header_Server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Server.c; sourceTree = "<group>"; };
ECF0E280118CC6C7001A3D6F /* tsip_header_Service_Route.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Service_Route.c; sourceTree = "<group>"; };
ECF0E281118CC6C7001A3D6F /* tsip_header_Session_Expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Session_Expires.c; sourceTree = "<group>"; };
ECF0E282118CC6C7001A3D6F /* tsip_header_SIP_ETag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_SIP_ETag.c; sourceTree = "<group>"; };
ECF0E283118CC6C7001A3D6F /* tsip_header_SIP_If_Match.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_SIP_If_Match.c; sourceTree = "<group>"; };
ECF0E284118CC6C7001A3D6F /* tsip_header_Subject.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Subject.c; sourceTree = "<group>"; };
ECF0E285118CC6C7001A3D6F /* tsip_header_Subscription_State.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Subscription_State.c; sourceTree = "<group>"; };
ECF0E286118CC6C7001A3D6F /* tsip_header_Supported.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Supported.c; sourceTree = "<group>"; };
ECF0E287118CC6C7001A3D6F /* tsip_header_Target_Dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Target_Dialog.c; sourceTree = "<group>"; };
ECF0E288118CC6C7001A3D6F /* tsip_header_Timestamp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Timestamp.c; sourceTree = "<group>"; };
ECF0E289118CC6C7001A3D6F /* tsip_header_To.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_To.c; sourceTree = "<group>"; };
ECF0E28A118CC6C7001A3D6F /* tsip_header_Unsupported.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Unsupported.c; sourceTree = "<group>"; };
ECF0E28B118CC6C7001A3D6F /* tsip_header_User_Agent.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_User_Agent.c; sourceTree = "<group>"; };
ECF0E28C118CC6C7001A3D6F /* tsip_header_Via.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Via.c; sourceTree = "<group>"; };
ECF0E28D118CC6C7001A3D6F /* tsip_header_Warning.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_Warning.c; sourceTree = "<group>"; };
ECF0E28E118CC6C7001A3D6F /* tsip_header_WWW_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_header_WWW_Authenticate.c; sourceTree = "<group>"; };
ECF0E290118CC6C7001A3D6F /* tsip_msession.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_msession.c; sourceTree = "<group>"; };
ECF0E292118CC6C7001A3D6F /* tsip_parser_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_header.c; sourceTree = "<group>"; };
ECF0E293118CC6C7001A3D6F /* tsip_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_message.c; sourceTree = "<group>"; };
ECF0E294118CC6C7001A3D6F /* tsip_parser_uri.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_parser_uri.c; sourceTree = "<group>"; };
ECF0E296118CC6C7001A3D6F /* tsip_transac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac.c; sourceTree = "<group>"; };
ECF0E297118CC6C7001A3D6F /* tsip_transac_ict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ict.c; sourceTree = "<group>"; };
ECF0E298118CC6C7001A3D6F /* tsip_transac_ist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_ist.c; sourceTree = "<group>"; };
ECF0E299118CC6C7001A3D6F /* tsip_transac_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_layer.c; sourceTree = "<group>"; };
ECF0E29A118CC6C7001A3D6F /* tsip_transac_nict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nict.c; sourceTree = "<group>"; };
ECF0E29B118CC6C7001A3D6F /* tsip_transac_nist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transac_nist.c; sourceTree = "<group>"; };
ECF0E29D118CC6C7001A3D6F /* tsip_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport.c; sourceTree = "<group>"; };
ECF0E29E118CC6C7001A3D6F /* tsip_transport_ipsec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_ipsec.c; sourceTree = "<group>"; };
ECF0E29F118CC6C7001A3D6F /* tsip_transport_layer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_layer.c; sourceTree = "<group>"; };
ECF0E2A0118CC6C7001A3D6F /* tsip_transport_tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_transport_tls.c; sourceTree = "<group>"; };
ECF0E2A1118CC6C7001A3D6F /* tsip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip.c; sourceTree = "<group>"; };
ECF0E2A2118CC6C7001A3D6F /* tsip_action.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_action.c; sourceTree = "<group>"; };
ECF0E2A3118CC6C7001A3D6F /* tsip_event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_event.c; sourceTree = "<group>"; };
ECF0E2A4118CC6C7001A3D6F /* tsip_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_message.c; sourceTree = "<group>"; };
ECF0E2A5118CC6C7001A3D6F /* tsip_ssession.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_ssession.c; sourceTree = "<group>"; };
ECF0E2A6118CC6C7001A3D6F /* tsip_timers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_timers.c; sourceTree = "<group>"; };
ECF0E2A7118CC6C7001A3D6F /* tsip_uri.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsip_uri.c; sourceTree = "<group>"; };
ECF0E3DA118CCC26001A3D6F /* cmd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cmd.c; path = ../../tinyDEMO/cmd.c; sourceTree = SOURCE_ROOT; };
ECF0E3DB118CCC26001A3D6F /* cmd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cmd.h; path = ../../tinyDEMO/cmd.h; sourceTree = SOURCE_ROOT; };
ECF0E3DC118CCC26001A3D6F /* common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = common.c; path = ../../tinyDEMO/common.c; sourceTree = SOURCE_ROOT; };
ECF0E3DD118CCC26001A3D6F /* common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = common.h; path = ../../tinyDEMO/common.h; sourceTree = SOURCE_ROOT; };
ECF0E3DE118CCC26001A3D6F /* core-alcatel.sn */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = "core-alcatel.sn"; path = "../../tinyDEMO/core-alcatel.sn"; sourceTree = SOURCE_ROOT; };
ECF0E3DF118CCC26001A3D6F /* core-colibria.sn */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = "core-colibria.sn"; path = "../../tinyDEMO/core-colibria.sn"; sourceTree = SOURCE_ROOT; };
ECF0E3E0118CCC26001A3D6F /* core-ericsson.sn */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = "core-ericsson.sn"; path = "../../tinyDEMO/core-ericsson.sn"; sourceTree = SOURCE_ROOT; };
ECF0E3E1118CCC26001A3D6F /* core-inexbee.sn */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = "core-inexbee.sn"; path = "../../tinyDEMO/core-inexbee.sn"; sourceTree = SOURCE_ROOT; };
ECF0E3E2118CCC26001A3D6F /* core-micromethod.sn */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = "core-micromethod.sn"; path = "../../tinyDEMO/core-micromethod.sn"; sourceTree = SOURCE_ROOT; };
ECF0E3E3118CCC26001A3D6F /* core-nsn.sn */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = "core-nsn.sn"; path = "../../tinyDEMO/core-nsn.sn"; sourceTree = SOURCE_ROOT; };
ECF0E3E4118CCC26001A3D6F /* demo_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = demo_config.h; path = ../../tinyDEMO/demo_config.h; sourceTree = SOURCE_ROOT; };
ECF0E3E6118CCC26001A3D6F /* dssl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dssl.c; path = ../../tinyDEMO/dssl.c; sourceTree = SOURCE_ROOT; };
ECF0E3E7118CCC26001A3D6F /* dssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dssl.h; path = ../../tinyDEMO/dssl.h; sourceTree = SOURCE_ROOT; };
ECF0E3E8118CCC26001A3D6F /* dssl.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = dssl.rl; path = ../../tinyDEMO/dssl.rl; sourceTree = SOURCE_ROOT; };
ECF0E3E9118CCC26001A3D6F /* invite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = invite.c; path = ../../tinyDEMO/invite.c; sourceTree = SOURCE_ROOT; };
ECF0E3EA118CCC26001A3D6F /* invite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = invite.h; path = ../../tinyDEMO/invite.h; sourceTree = SOURCE_ROOT; };
ECF0E3EB118CCC26001A3D6F /* main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = main.c; path = ../../tinyDEMO/main.c; sourceTree = SOURCE_ROOT; };
ECF0E3EC118CCC26001A3D6F /* main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = main.h; path = ../../tinyDEMO/main.h; sourceTree = SOURCE_ROOT; };
ECF0E3ED118CCC26001A3D6F /* main.sn */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = main.sn; path = ../../tinyDEMO/main.sn; sourceTree = SOURCE_ROOT; };
ECF0E3EE118CCC26001A3D6F /* message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = message.c; path = ../../tinyDEMO/message.c; sourceTree = SOURCE_ROOT; };
ECF0E3EF118CCC26001A3D6F /* message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = message.h; path = ../../tinyDEMO/message.h; sourceTree = SOURCE_ROOT; };
ECF0E3F0118CCC26001A3D6F /* publish.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = publish.c; path = ../../tinyDEMO/publish.c; sourceTree = SOURCE_ROOT; };
ECF0E3F1118CCC26001A3D6F /* publish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = publish.h; path = ../../tinyDEMO/publish.h; sourceTree = SOURCE_ROOT; };
ECF0E3F2118CCC26001A3D6F /* publish.sn */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = publish.sn; path = ../../tinyDEMO/publish.sn; sourceTree = SOURCE_ROOT; };
ECF0E3F4118CCC26001A3D6F /* register.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = register.c; path = ../../tinyDEMO/register.c; sourceTree = SOURCE_ROOT; };
ECF0E3F5118CCC26001A3D6F /* register.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = register.h; path = ../../tinyDEMO/register.h; sourceTree = SOURCE_ROOT; };
ECF0E3F6118CCC26001A3D6F /* sample.sn */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = sample.sn; path = ../../tinyDEMO/sample.sn; sourceTree = SOURCE_ROOT; };
ECF0E3F7118CCC26001A3D6F /* subscribe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = subscribe.c; path = ../../tinyDEMO/subscribe.c; sourceTree = SOURCE_ROOT; };
ECF0E3F8118CCC26001A3D6F /* subscribe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = subscribe.h; path = ../../tinyDEMO/subscribe.h; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
8DD76FAD0486AB0100D96B5E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E408118CCCBD001A3D6F /* libtinySAK.dylib in Frameworks */,
ECF0E409118CCCBD001A3D6F /* libtinySIP.dylib in Frameworks */,
ECF0E40A118CCCBD001A3D6F /* libtinySMS.dylib in Frameworks */,
ECF0E40F118CCD04001A3D6F /* libtinyNET.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6CA118CC01D001A3D6F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6D1118CC02E001A3D6F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0DF4C118CC1FD001A3D6F /* libtinySAK.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6D8118CC042001A3D6F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E04C118CC534001A3D6F /* libtinyNET.dylib in Frameworks */,
ECF0E04D118CC534001A3D6F /* libtinySAK.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6DF118CC053001A3D6F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E10C118CC694001A3D6F /* libtinySAK.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6E6118CC060001A3D6F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6ED118CC06F001A3D6F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E3D5118CCBEB001A3D6F /* libtinyHTTP.dylib in Frameworks */,
ECF0E3D6118CCBEB001A3D6F /* libtinyIPSec.dylib in Frameworks */,
ECF0E3D7118CCBEB001A3D6F /* libtinyNET.dylib in Frameworks */,
ECF0E3D8118CCBEB001A3D6F /* libtinySAK.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0DF57118CC238001A3D6F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0DF5E118CC245001A3D6F /* libtinySAK.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0E052118CC592001A3D6F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E059118CC59F001A3D6F /* libtinySAK.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
08FB7794FE84155DC02AAC07 /* tinyDEMO */ = {
isa = PBXGroup;
children = (
ECF0E10D118CC6C6001A3D6F /* tinySIP */,
ECF0E083118CC667001A3D6F /* tinySDP */,
ECF0E05A118CC5B6001A3D6F /* tinyIPSec */,
ECF0DFB9118CC4B6001A3D6F /* tinyHTTP */,
ECF0DF60118CC270001A3D6F /* tinySMS */,
ECF0DE60118CC19E001A3D6F /* tinyNET */,
ECF0D6F2118CC091001A3D6F /* tinySAK */,
08FB7795FE84155DC02AAC07 /* Source */,
C6A0FF2B0290797F04C91782 /* Documentation */,
1AB674ADFE9D54B511CA2CBB /* Products */,
);
name = tinyDEMO;
sourceTree = "<group>";
};
08FB7795FE84155DC02AAC07 /* Source */ = {
isa = PBXGroup;
children = (
ECF0E3DA118CCC26001A3D6F /* cmd.c */,
ECF0E3DB118CCC26001A3D6F /* cmd.h */,
ECF0E3DC118CCC26001A3D6F /* common.c */,
ECF0E3DD118CCC26001A3D6F /* common.h */,
ECF0E3DE118CCC26001A3D6F /* core-alcatel.sn */,
ECF0E3DF118CCC26001A3D6F /* core-colibria.sn */,
ECF0E3E0118CCC26001A3D6F /* core-ericsson.sn */,
ECF0E3E1118CCC26001A3D6F /* core-inexbee.sn */,
ECF0E3E2118CCC26001A3D6F /* core-micromethod.sn */,
ECF0E3E3118CCC26001A3D6F /* core-nsn.sn */,
ECF0E3E4118CCC26001A3D6F /* demo_config.h */,
ECF0E3E6118CCC26001A3D6F /* dssl.c */,
ECF0E3E7118CCC26001A3D6F /* dssl.h */,
ECF0E3E8118CCC26001A3D6F /* dssl.rl */,
ECF0E3E9118CCC26001A3D6F /* invite.c */,
ECF0E3EA118CCC26001A3D6F /* invite.h */,
ECF0E3EB118CCC26001A3D6F /* main.c */,
ECF0E3EC118CCC26001A3D6F /* main.h */,
ECF0E3ED118CCC26001A3D6F /* main.sn */,
ECF0E3EE118CCC26001A3D6F /* message.c */,
ECF0E3EF118CCC26001A3D6F /* message.h */,
ECF0E3F0118CCC26001A3D6F /* publish.c */,
ECF0E3F1118CCC26001A3D6F /* publish.h */,
ECF0E3F2118CCC26001A3D6F /* publish.sn */,
ECF0E3F4118CCC26001A3D6F /* register.c */,
ECF0E3F5118CCC26001A3D6F /* register.h */,
ECF0E3F6118CCC26001A3D6F /* sample.sn */,
ECF0E3F7118CCC26001A3D6F /* subscribe.c */,
ECF0E3F8118CCC26001A3D6F /* subscribe.h */,
);
name = Source;
sourceTree = "<group>";
};
1AB674ADFE9D54B511CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
8DD76FB20486AB0100D96B5E /* tinyDEMO */,
ECF0D6CC118CC01D001A3D6F /* libtinySAK.dylib */,
ECF0D6D3118CC02E001A3D6F /* libtinyNET.dylib */,
ECF0D6DA118CC042001A3D6F /* libtinyHTTP.dylib */,
ECF0D6E1118CC053001A3D6F /* libtinySDP.dylib */,
ECF0D6E8118CC060001A3D6F /* libtinyMEDIA.dylib */,
ECF0D6EF118CC06F001A3D6F /* libtinySIP.dylib */,
ECF0DF59118CC238001A3D6F /* libtinySMS.dylib */,
ECF0E054118CC592001A3D6F /* libtinyIPSec.dylib */,
);
name = Products;
sourceTree = "<group>";
};
C6A0FF2B0290797F04C91782 /* Documentation */ = {
isa = PBXGroup;
children = (
C6A0FF2C0290799A04C91782 /* tinyDEMO.1 */,
);
name = Documentation;
sourceTree = "<group>";
};
ECF0D6F2118CC091001A3D6F /* tinySAK */ = {
isa = PBXGroup;
children = (
ECF0D743118CC091001A3D6F /* src */,
);
name = tinySAK;
path = ../../tinySAK;
sourceTree = SOURCE_ROOT;
};
ECF0D743118CC091001A3D6F /* src */ = {
isa = PBXGroup;
children = (
ECF0D744118CC091001A3D6F /* Makefile.am */,
ECF0D745118CC091001A3D6F /* tinySAK_config.h */,
ECF0D746118CC091001A3D6F /* tsk.c */,
ECF0D747118CC091001A3D6F /* tsk.h */,
ECF0D748118CC091001A3D6F /* tsk_base64.c */,
ECF0D749118CC091001A3D6F /* tsk_base64.h */,
ECF0D74A118CC091001A3D6F /* tsk_binaryutils.c */,
ECF0D74B118CC091001A3D6F /* tsk_binaryutils.h */,
ECF0D74C118CC091001A3D6F /* tsk_buffer.c */,
ECF0D74D118CC091001A3D6F /* tsk_buffer.h */,
ECF0D74E118CC091001A3D6F /* tsk_common.h */,
ECF0D74F118CC091001A3D6F /* tsk_condwait.c */,
ECF0D750118CC091001A3D6F /* tsk_condwait.h */,
ECF0D751118CC091001A3D6F /* tsk_debug.c */,
ECF0D752118CC091001A3D6F /* tsk_debug.h */,
ECF0D753118CC091001A3D6F /* tsk_errno.h */,
ECF0D754118CC091001A3D6F /* tsk_fsm.c */,
ECF0D755118CC091001A3D6F /* tsk_fsm.h */,
ECF0D756118CC091001A3D6F /* tsk_hmac.c */,
ECF0D757118CC091001A3D6F /* tsk_hmac.h */,
ECF0D758118CC091001A3D6F /* tsk_list.c */,
ECF0D759118CC091001A3D6F /* tsk_list.h */,
ECF0D75A118CC091001A3D6F /* tsk_md5.c */,
ECF0D75B118CC091001A3D6F /* tsk_md5.h */,
ECF0D75C118CC091001A3D6F /* tsk_memory.c */,
ECF0D75D118CC091001A3D6F /* tsk_memory.h */,
ECF0D75E118CC091001A3D6F /* tsk_mutex.c */,
ECF0D75F118CC091001A3D6F /* tsk_mutex.h */,
ECF0D760118CC091001A3D6F /* tsk_object.c */,
ECF0D761118CC091001A3D6F /* tsk_object.h */,
ECF0D762118CC091001A3D6F /* tsk_options.c */,
ECF0D763118CC091001A3D6F /* tsk_options.h */,
ECF0D764118CC091001A3D6F /* tsk_params.c */,
ECF0D765118CC091001A3D6F /* tsk_params.h */,
ECF0D766118CC091001A3D6F /* tsk_ppfcs16.c */,
ECF0D767118CC091001A3D6F /* tsk_ppfcs16.h */,
ECF0D768118CC091001A3D6F /* tsk_ppfcs32.c */,
ECF0D769118CC091001A3D6F /* tsk_ppfcs32.h */,
ECF0D76A118CC091001A3D6F /* tsk_ragel_state.c */,
ECF0D76B118CC091001A3D6F /* tsk_ragel_state.h */,
ECF0D76C118CC091001A3D6F /* tsk_runnable.c */,
ECF0D76D118CC091001A3D6F /* tsk_runnable.h */,
ECF0D76E118CC091001A3D6F /* tsk_safeobj.c */,
ECF0D76F118CC091001A3D6F /* tsk_safeobj.h */,
ECF0D770118CC091001A3D6F /* tsk_semaphore.c */,
ECF0D771118CC091001A3D6F /* tsk_semaphore.h */,
ECF0D772118CC091001A3D6F /* tsk_sha1.c */,
ECF0D773118CC091001A3D6F /* tsk_sha1.h */,
ECF0D774118CC091001A3D6F /* tsk_string.c */,
ECF0D775118CC091001A3D6F /* tsk_string.h */,
ECF0D776118CC091001A3D6F /* tsk_thread.c */,
ECF0D777118CC091001A3D6F /* tsk_thread.h */,
ECF0D778118CC091001A3D6F /* tsk_time.c */,
ECF0D779118CC091001A3D6F /* tsk_time.h */,
ECF0D77A118CC091001A3D6F /* tsk_timer.c */,
ECF0D77B118CC091001A3D6F /* tsk_timer.h */,
ECF0D77C118CC091001A3D6F /* tsk_url.c */,
ECF0D77D118CC091001A3D6F /* tsk_url.h */,
ECF0D77E118CC091001A3D6F /* tsk_uuid.c */,
ECF0D77F118CC091001A3D6F /* tsk_uuid.h */,
ECF0D780118CC091001A3D6F /* tsk_xml.c */,
ECF0D781118CC091001A3D6F /* tsk_xml.h */,
);
path = src;
sourceTree = "<group>";
};
ECF0DE60118CC19E001A3D6F /* tinyNET */ = {
isa = PBXGroup;
children = (
ECF0DE70118CC19E001A3D6F /* src */,
);
name = tinyNET;
path = ../../tinyNET;
sourceTree = SOURCE_ROOT;
};
ECF0DE70118CC19E001A3D6F /* src */ = {
isa = PBXGroup;
children = (
ECF0DE71118CC19E001A3D6F /* dhcp */,
ECF0DE7A118CC19E001A3D6F /* dhcp6 */,
ECF0DE83118CC19E001A3D6F /* dns */,
ECF0DEA4118CC19E001A3D6F /* ice */,
ECF0DEA7118CC19E001A3D6F /* stun */,
ECF0DEAE118CC19E001A3D6F /* tinynet.h */,
ECF0DEAF118CC19E001A3D6F /* tinyNET_config.h */,
ECF0DEB0118CC19E001A3D6F /* tls */,
ECF0DEB3118CC19E001A3D6F /* tnet.c */,
ECF0DEB4118CC19E001A3D6F /* tnet.h */,
ECF0DEB5118CC19E001A3D6F /* tnet_auth.c */,
ECF0DEB6118CC19E001A3D6F /* tnet_auth.h */,
ECF0DEB7118CC19E001A3D6F /* tnet_endianness.c */,
ECF0DEB8118CC19E001A3D6F /* tnet_endianness.h */,
ECF0DEB9118CC19E001A3D6F /* tnet_hardwares.h */,
ECF0DEBA118CC19E001A3D6F /* tnet_nat.c */,
ECF0DEBB118CC19E001A3D6F /* tnet_nat.h */,
ECF0DEBC118CC19E001A3D6F /* tnet_poll.c */,
ECF0DEBD118CC19E001A3D6F /* tnet_poll.h */,
ECF0DEBE118CC19E001A3D6F /* tnet_proto.h */,
ECF0DEBF118CC19E001A3D6F /* tnet_socket.c */,
ECF0DEC0118CC19E001A3D6F /* tnet_socket.h */,
ECF0DEC1118CC19E001A3D6F /* tnet_transport.c */,
ECF0DEC2118CC19E001A3D6F /* tnet_transport.h */,
ECF0DEC3118CC19E001A3D6F /* tnet_transport_poll.c */,
ECF0DEC4118CC19E001A3D6F /* tnet_transport_win32.c */,
ECF0DEC5118CC19E001A3D6F /* tnet_types.h */,
ECF0DEC6118CC19E001A3D6F /* tnet_utils.c */,
ECF0DEC7118CC19E001A3D6F /* tnet_utils.h */,
ECF0DEC8118CC19E001A3D6F /* turn */,
);
path = src;
sourceTree = "<group>";
};
ECF0DE71118CC19E001A3D6F /* dhcp */ = {
isa = PBXGroup;
children = (
ECF0DE72118CC19E001A3D6F /* tnet_dhcp.c */,
ECF0DE73118CC19E001A3D6F /* tnet_dhcp.h */,
ECF0DE74118CC19E001A3D6F /* tnet_dhcp_message.c */,
ECF0DE75118CC19E001A3D6F /* tnet_dhcp_message.h */,
ECF0DE76118CC19E001A3D6F /* tnet_dhcp_option.c */,
ECF0DE77118CC19E001A3D6F /* tnet_dhcp_option.h */,
ECF0DE78118CC19E001A3D6F /* tnet_dhcp_option_sip.c */,
ECF0DE79118CC19E001A3D6F /* tnet_dhcp_option_sip.h */,
);
path = dhcp;
sourceTree = "<group>";
};
ECF0DE7A118CC19E001A3D6F /* dhcp6 */ = {
isa = PBXGroup;
children = (
ECF0DE7B118CC19E001A3D6F /* tnet_dhcp6.c */,
ECF0DE7C118CC19E001A3D6F /* tnet_dhcp6.h */,
ECF0DE7D118CC19E001A3D6F /* tnet_dhcp6_duid.c */,
ECF0DE7E118CC19E001A3D6F /* tnet_dhcp6_duid.h */,
ECF0DE7F118CC19E001A3D6F /* tnet_dhcp6_message.c */,
ECF0DE80118CC19E001A3D6F /* tnet_dhcp6_message.h */,
ECF0DE81118CC19E001A3D6F /* tnet_dhcp6_option.c */,
ECF0DE82118CC19E001A3D6F /* tnet_dhcp6_option.h */,
);
path = dhcp6;
sourceTree = "<group>";
};
ECF0DE83118CC19E001A3D6F /* dns */ = {
isa = PBXGroup;
children = (
ECF0DE84118CC19E001A3D6F /* tnet_dns.c */,
ECF0DE85118CC19E001A3D6F /* tnet_dns.h */,
ECF0DE86118CC19E001A3D6F /* tnet_dns_a.c */,
ECF0DE87118CC19E001A3D6F /* tnet_dns_a.h */,
ECF0DE88118CC19E001A3D6F /* tnet_dns_aaaa.c */,
ECF0DE89118CC19E001A3D6F /* tnet_dns_aaaa.h */,
ECF0DE8A118CC19E001A3D6F /* tnet_dns_cname.c */,
ECF0DE8B118CC19E001A3D6F /* tnet_dns_cname.h */,
ECF0DE8C118CC19E001A3D6F /* tnet_dns_message.c */,
ECF0DE8D118CC19E001A3D6F /* tnet_dns_message.h */,
ECF0DE8E118CC19E001A3D6F /* tnet_dns_mx.c */,
ECF0DE8F118CC19E001A3D6F /* tnet_dns_mx.h */,
ECF0DE90118CC19E001A3D6F /* tnet_dns_naptr.c */,
ECF0DE91118CC19E001A3D6F /* tnet_dns_naptr.h */,
ECF0DE92118CC19E001A3D6F /* tnet_dns_ns.c */,
ECF0DE93118CC19E001A3D6F /* tnet_dns_ns.h */,
ECF0DE94118CC19E001A3D6F /* tnet_dns_opt.c */,
ECF0DE95118CC19E001A3D6F /* tnet_dns_opt.h */,
ECF0DE96118CC19E001A3D6F /* tnet_dns_ptr.c */,
ECF0DE97118CC19E001A3D6F /* tnet_dns_ptr.h */,
ECF0DE98118CC19E001A3D6F /* tnet_dns_regexp.c */,
ECF0DE99118CC19E001A3D6F /* tnet_dns_regexp.h */,
ECF0DE9A118CC19E001A3D6F /* tnet_dns_resolvconf.c */,
ECF0DE9B118CC19E001A3D6F /* tnet_dns_resolvconf.h */,
ECF0DE9C118CC19E001A3D6F /* tnet_dns_rr.c */,
ECF0DE9D118CC19E001A3D6F /* tnet_dns_rr.h */,
ECF0DE9E118CC19E001A3D6F /* tnet_dns_soa.c */,
ECF0DE9F118CC19E001A3D6F /* tnet_dns_soa.h */,
ECF0DEA0118CC19E001A3D6F /* tnet_dns_srv.c */,
ECF0DEA1118CC19E001A3D6F /* tnet_dns_srv.h */,
ECF0DEA2118CC19E001A3D6F /* tnet_dns_txt.c */,
ECF0DEA3118CC19E001A3D6F /* tnet_dns_txt.h */,
);
path = dns;
sourceTree = "<group>";
};
ECF0DEA4118CC19E001A3D6F /* ice */ = {
isa = PBXGroup;
children = (
ECF0DEA5118CC19E001A3D6F /* tnet_ice.c */,
ECF0DEA6118CC19E001A3D6F /* tnet_ice.h */,
);
path = ice;
sourceTree = "<group>";
};
ECF0DEA7118CC19E001A3D6F /* stun */ = {
isa = PBXGroup;
children = (
ECF0DEA8118CC19E001A3D6F /* tnet_stun.c */,
ECF0DEA9118CC19E001A3D6F /* tnet_stun.h */,
ECF0DEAA118CC19E001A3D6F /* tnet_stun_attribute.c */,
ECF0DEAB118CC19E001A3D6F /* tnet_stun_attribute.h */,
ECF0DEAC118CC19E001A3D6F /* tnet_stun_message.c */,
ECF0DEAD118CC19E001A3D6F /* tnet_stun_message.h */,
);
path = stun;
sourceTree = "<group>";
};
ECF0DEB0118CC19E001A3D6F /* tls */ = {
isa = PBXGroup;
children = (
ECF0DEB1118CC19E001A3D6F /* tnet_tls.c */,
ECF0DEB2118CC19E001A3D6F /* tnet_tls.h */,
);
path = tls;
sourceTree = "<group>";
};
ECF0DEC8118CC19E001A3D6F /* turn */ = {
isa = PBXGroup;
children = (
ECF0DEC9118CC19E001A3D6F /* tnet_turn.c */,
ECF0DECA118CC19E001A3D6F /* tnet_turn.h */,
ECF0DECB118CC19E001A3D6F /* tnet_turn_attribute.c */,
ECF0DECC118CC19E001A3D6F /* tnet_turn_attribute.h */,
ECF0DECD118CC19E001A3D6F /* tnet_turn_message.c */,
ECF0DECE118CC19E001A3D6F /* tnet_turn_message.h */,
);
path = turn;
sourceTree = "<group>";
};
ECF0DF60118CC270001A3D6F /* tinySMS */ = {
isa = PBXGroup;
children = (
ECF0DF67118CC270001A3D6F /* include */,
ECF0DF79118CC270001A3D6F /* src */,
);
name = tinySMS;
path = ../../tinySMS;
sourceTree = SOURCE_ROOT;
};
ECF0DF67118CC270001A3D6F /* include */ = {
isa = PBXGroup;
children = (
ECF0DF68118CC270001A3D6F /* tinysms */,
ECF0DF76118CC270001A3D6F /* tinysms.h */,
ECF0DF77118CC270001A3D6F /* tinysms_config.h */,
);
path = include;
sourceTree = "<group>";
};
ECF0DF68118CC270001A3D6F /* tinysms */ = {
isa = PBXGroup;
children = (
ECF0DF69118CC270001A3D6F /* rpdu */,
ECF0DF6B118CC270001A3D6F /* tpdu */,
ECF0DF71118CC270001A3D6F /* tsms.h */,
ECF0DF72118CC270001A3D6F /* tsms_address.h */,
ECF0DF73118CC270001A3D6F /* tsms_common.h */,
ECF0DF74118CC270001A3D6F /* tsms_etsi_gsm_03_38.h */,
ECF0DF75118CC270001A3D6F /* tsms_packing.h */,
);
path = tinysms;
sourceTree = "<group>";
};
ECF0DF69118CC270001A3D6F /* rpdu */ = {
isa = PBXGroup;
children = (
ECF0DF6A118CC270001A3D6F /* tsms_rpdu.h */,
);
path = rpdu;
sourceTree = "<group>";
};
ECF0DF6B118CC270001A3D6F /* tpdu */ = {
isa = PBXGroup;
children = (
ECF0DF6C118CC270001A3D6F /* tsms_tpdu_command.h */,
ECF0DF6D118CC270001A3D6F /* tsms_tpdu_deliver.h */,
ECF0DF6E118CC270001A3D6F /* tsms_tpdu_report.h */,
ECF0DF6F118CC270001A3D6F /* tsms_tpdu_status_report.h */,
ECF0DF70118CC270001A3D6F /* tsms_tpdu_submit.h */,
);
path = tpdu;
sourceTree = "<group>";
};
ECF0DF79118CC270001A3D6F /* src */ = {
isa = PBXGroup;
children = (
ECF0DF7A118CC270001A3D6F /* rpdu */,
ECF0DF7C118CC270001A3D6F /* tpdu */,
ECF0DF82118CC270001A3D6F /* tsms.c */,
ECF0DF83118CC270001A3D6F /* tsms_address.c */,
ECF0DF84118CC270001A3D6F /* tsms_common.c */,
ECF0DF85118CC270001A3D6F /* tsms_packing.c */,
);
path = src;
sourceTree = "<group>";
};
ECF0DF7A118CC270001A3D6F /* rpdu */ = {
isa = PBXGroup;
children = (
ECF0DF7B118CC270001A3D6F /* tsms_rpdu.c */,
);
path = rpdu;
sourceTree = "<group>";
};
ECF0DF7C118CC270001A3D6F /* tpdu */ = {
isa = PBXGroup;
children = (
ECF0DF7D118CC270001A3D6F /* tsms_tpdu_command.c */,
ECF0DF7E118CC270001A3D6F /* tsms_tpdu_deliver.c */,
ECF0DF7F118CC270001A3D6F /* tsms_tpdu_report.c */,
ECF0DF80118CC270001A3D6F /* tsms_tpdu_status_report.c */,
ECF0DF81118CC270001A3D6F /* tsms_tpdu_submit.c */,
);
path = tpdu;
sourceTree = "<group>";
};
ECF0DFB9118CC4B6001A3D6F /* tinyHTTP */ = {
isa = PBXGroup;
children = (
ECF0DFC2118CC4B6001A3D6F /* include */,
ECF0DFED118CC4B6001A3D6F /* src */,
);
name = tinyHTTP;
path = ../../tinyHTTP;
sourceTree = SOURCE_ROOT;
};
ECF0DFC2118CC4B6001A3D6F /* include */ = {
isa = PBXGroup;
children = (
ECF0DFC3118CC4B6001A3D6F /* thttp.h */,
ECF0DFC4118CC4B6001A3D6F /* tinyHTTP */,
ECF0DFDB118CC4B6001A3D6F /* tinyhttp.h */,
ECF0DFDC118CC4B6001A3D6F /* tinyhttp_config.h */,
);
path = include;
sourceTree = "<group>";
};
ECF0DFC4118CC4B6001A3D6F /* tinyHTTP */ = {
isa = PBXGroup;
children = (
ECF0DFC5118CC4B6001A3D6F /* auth */,
ECF0DFC8118CC4B6001A3D6F /* headers */,
ECF0DFD1118CC4B6001A3D6F /* parsers */,
ECF0DFD5118CC4B6001A3D6F /* thttp_action.h */,
ECF0DFD6118CC4B6001A3D6F /* thttp_dialog.h */,
ECF0DFD7118CC4B6001A3D6F /* thttp_event.h */,
ECF0DFD8118CC4B6001A3D6F /* thttp_message.h */,
ECF0DFD9118CC4B6001A3D6F /* thttp_session.h */,
ECF0DFDA118CC4B6001A3D6F /* thttp_url.h */,
);
path = tinyHTTP;
sourceTree = "<group>";
};
ECF0DFC5118CC4B6001A3D6F /* auth */ = {
isa = PBXGroup;
children = (
ECF0DFC6118CC4B6001A3D6F /* thttp_auth.h */,
ECF0DFC7118CC4B6001A3D6F /* thttp_challenge.h */,
);
path = auth;
sourceTree = "<group>";
};
ECF0DFC8118CC4B6001A3D6F /* headers */ = {
isa = PBXGroup;
children = (
ECF0DFC9118CC4B6001A3D6F /* thttp_header.h */,
ECF0DFCA118CC4B6001A3D6F /* thttp_header_Authorization.h */,
ECF0DFCB118CC4B6001A3D6F /* thttp_header_Content_Length.h */,
ECF0DFCC118CC4B6001A3D6F /* thttp_header_Content_Type.h */,
ECF0DFCD118CC4B6001A3D6F /* thttp_header_Dummy.h */,
ECF0DFCE118CC4B6001A3D6F /* thttp_header_ETag.h */,
ECF0DFCF118CC4B6001A3D6F /* thttp_header_Transfer_Encoding.h */,
ECF0DFD0118CC4B6001A3D6F /* thttp_header_WWW_Authenticate.h */,
);
path = headers;
sourceTree = "<group>";
};
ECF0DFD1118CC4B6001A3D6F /* parsers */ = {
isa = PBXGroup;
children = (
ECF0DFD2118CC4B6001A3D6F /* thttp_parser_header.h */,
ECF0DFD3118CC4B6001A3D6F /* thttp_parser_message.h */,
ECF0DFD4118CC4B6001A3D6F /* thttp_parser_url.h */,
);
path = parsers;
sourceTree = "<group>";
};
ECF0DFED118CC4B6001A3D6F /* src */ = {
isa = PBXGroup;
children = (
ECF0DFEE118CC4B6001A3D6F /* auth */,
ECF0DFF1118CC4B6001A3D6F /* headers */,
ECF0DFFB118CC4B6001A3D6F /* parsers */,
ECF0DFFF118CC4B6001A3D6F /* thttp.c */,
ECF0E000118CC4B6001A3D6F /* thttp_action.c */,
ECF0E001118CC4B6001A3D6F /* thttp_dialog.c */,
ECF0E002118CC4B6001A3D6F /* thttp_event.c */,
ECF0E003118CC4B6001A3D6F /* thttp_message.c */,
ECF0E004118CC4B6001A3D6F /* thttp_session.c */,
ECF0E005118CC4B6001A3D6F /* thttp_url.c */,
);
path = src;
sourceTree = "<group>";
};
ECF0DFEE118CC4B6001A3D6F /* auth */ = {
isa = PBXGroup;
children = (
ECF0DFEF118CC4B6001A3D6F /* thttp_auth.c */,
ECF0DFF0118CC4B6001A3D6F /* thttp_challenge.c */,
);
path = auth;
sourceTree = "<group>";
};
ECF0DFF1118CC4B6001A3D6F /* headers */ = {
isa = PBXGroup;
children = (
ECF0DFF2118CC4B6001A3D6F /* thttp_header.c */,
ECF0DFF3118CC4B6001A3D6F /* thttp_header_Authorization.c */,
ECF0DFF4118CC4B6001A3D6F /* thttp_header_Content_Length.c */,
ECF0DFF5118CC4B6001A3D6F /* thttp_header_Content_Type.c */,
ECF0DFF6118CC4B6001A3D6F /* thttp_header_Dummy.c */,
ECF0DFF7118CC4B6001A3D6F /* thttp_header_ETag.c */,
ECF0DFF8118CC4B6001A3D6F /* thttp_header_Transfer_Encoding.c */,
ECF0DFF9118CC4B6001A3D6F /* thttp_header_WWW_Authenticate.c */,
);
path = headers;
sourceTree = "<group>";
};
ECF0DFFB118CC4B6001A3D6F /* parsers */ = {
isa = PBXGroup;
children = (
ECF0DFFC118CC4B6001A3D6F /* thttp_parser_header.c */,
ECF0DFFD118CC4B6001A3D6F /* thttp_parser_message.c */,
ECF0DFFE118CC4B6001A3D6F /* thttp_parser_url.c */,
);
path = parsers;
sourceTree = "<group>";
};
ECF0E05A118CC5B6001A3D6F /* tinyIPSec */ = {
isa = PBXGroup;
children = (
ECF0E05F118CC5B6001A3D6F /* src */,
);
name = tinyIPSec;
path = ../../tinyIPSec;
sourceTree = SOURCE_ROOT;
};
ECF0E05F118CC5B6001A3D6F /* src */ = {
isa = PBXGroup;
children = (
ECF0E060118CC5B6001A3D6F /* tinyipsec_config.h */,
ECF0E061118CC5B6001A3D6F /* tipsec.c */,
ECF0E062118CC5B6001A3D6F /* tipsec.h */,
ECF0E063118CC5B6001A3D6F /* tipsec_common.c */,
ECF0E064118CC5B6001A3D6F /* tipsec_common.h */,
ECF0E065118CC5B6001A3D6F /* tipsec_racoon.c */,
ECF0E066118CC5B6001A3D6F /* tipsec_racoon.h */,
ECF0E067118CC5B6001A3D6F /* tipsec_vista.c */,
ECF0E068118CC5B6001A3D6F /* tipsec_vista.h */,
ECF0E069118CC5B6001A3D6F /* tipsec_xp.c */,
ECF0E06A118CC5B6001A3D6F /* tipsec_xp.h */,
);
path = src;
sourceTree = "<group>";
};
ECF0E083118CC667001A3D6F /* tinySDP */ = {
isa = PBXGroup;
children = (
ECF0E08A118CC667001A3D6F /* include */,
ECF0E0B8118CC667001A3D6F /* src */,
);
name = tinySDP;
path = ../../tinySDP;
sourceTree = SOURCE_ROOT;
};
ECF0E08A118CC667001A3D6F /* include */ = {
isa = PBXGroup;
children = (
ECF0E08B118CC667001A3D6F /* tinySDP */,
ECF0E0A2118CC667001A3D6F /* tinysdp_config.h */,
ECF0E0A3118CC667001A3D6F /* tsdp.h */,
);
path = include;
sourceTree = "<group>";
};
ECF0E08B118CC667001A3D6F /* tinySDP */ = {
isa = PBXGroup;
children = (
ECF0E08C118CC667001A3D6F /* headers */,
ECF0E09E118CC667001A3D6F /* parsers */,
ECF0E0A1118CC667001A3D6F /* tsdp_message.h */,
);
path = tinySDP;
sourceTree = "<group>";
};
ECF0E08C118CC667001A3D6F /* headers */ = {
isa = PBXGroup;
children = (
ECF0E08D118CC667001A3D6F /* tsdp_header.h */,
ECF0E08E118CC667001A3D6F /* tsdp_header_A.h */,
ECF0E08F118CC667001A3D6F /* tsdp_header_B.h */,
ECF0E090118CC667001A3D6F /* tsdp_header_C.h */,
ECF0E091118CC667001A3D6F /* tsdp_header_Dummy.h */,
ECF0E092118CC667001A3D6F /* tsdp_header_E.h */,
ECF0E093118CC667001A3D6F /* tsdp_header_I.h */,
ECF0E094118CC667001A3D6F /* tsdp_header_K.h */,
ECF0E095118CC667001A3D6F /* tsdp_header_M.h */,
ECF0E096118CC667001A3D6F /* tsdp_header_O.h */,
ECF0E097118CC667001A3D6F /* tsdp_header_P.h */,
ECF0E098118CC667001A3D6F /* tsdp_header_R.h */,
ECF0E099118CC667001A3D6F /* tsdp_header_S.h */,
ECF0E09A118CC667001A3D6F /* tsdp_header_T.h */,
ECF0E09B118CC667001A3D6F /* tsdp_header_U.h */,
ECF0E09C118CC667001A3D6F /* tsdp_header_V.h */,
ECF0E09D118CC667001A3D6F /* tsdp_header_Z.h */,
);
path = headers;
sourceTree = "<group>";
};
ECF0E09E118CC667001A3D6F /* parsers */ = {
isa = PBXGroup;
children = (
ECF0E09F118CC667001A3D6F /* tsdp_parser_header.h */,
ECF0E0A0118CC667001A3D6F /* tsdp_parser_message.h */,
);
path = parsers;
sourceTree = "<group>";
};
ECF0E0B8118CC667001A3D6F /* src */ = {
isa = PBXGroup;
children = (
ECF0E0B9118CC667001A3D6F /* headers */,
ECF0E0CB118CC667001A3D6F /* parsers */,
ECF0E0CD118CC667001A3D6F /* tsdp.c */,
ECF0E0CE118CC667001A3D6F /* tsdp_message.c */,
);
path = src;
sourceTree = "<group>";
};
ECF0E0B9118CC667001A3D6F /* headers */ = {
isa = PBXGroup;
children = (
ECF0E0BA118CC667001A3D6F /* tsdp_header.c */,
ECF0E0BB118CC667001A3D6F /* tsdp_header_A.c */,
ECF0E0BC118CC667001A3D6F /* tsdp_header_B.c */,
ECF0E0BD118CC667001A3D6F /* tsdp_header_C.c */,
ECF0E0BE118CC667001A3D6F /* tsdp_header_Dummy.c */,
ECF0E0BF118CC667001A3D6F /* tsdp_header_E.c */,
ECF0E0C0118CC667001A3D6F /* tsdp_header_I.c */,
ECF0E0C1118CC667001A3D6F /* tsdp_header_K.c */,
ECF0E0C2118CC667001A3D6F /* tsdp_header_M.c */,
ECF0E0C3118CC667001A3D6F /* tsdp_header_O.c */,
ECF0E0C4118CC667001A3D6F /* tsdp_header_P.c */,
ECF0E0C5118CC667001A3D6F /* tsdp_header_R.c */,
ECF0E0C6118CC667001A3D6F /* tsdp_header_S.c */,
ECF0E0C7118CC667001A3D6F /* tsdp_header_T.c */,
ECF0E0C8118CC667001A3D6F /* tsdp_header_U.c */,
ECF0E0C9118CC667001A3D6F /* tsdp_header_V.c */,
ECF0E0CA118CC667001A3D6F /* tsdp_header_Z.c */,
);
path = headers;
sourceTree = "<group>";
};
ECF0E0CB118CC667001A3D6F /* parsers */ = {
isa = PBXGroup;
children = (
ECF0E0CC118CC667001A3D6F /* tsdp_parser_message.c */,
);
path = parsers;
sourceTree = "<group>";
};
ECF0E10D118CC6C6001A3D6F /* tinySIP */ = {
isa = PBXGroup;
children = (
ECF0E123118CC6C6001A3D6F /* include */,
ECF0E219118CC6C7001A3D6F /* src */,
);
name = tinySIP;
path = ../../tinySIP;
sourceTree = SOURCE_ROOT;
};
ECF0E123118CC6C6001A3D6F /* include */ = {
isa = PBXGroup;
children = (
ECF0E124118CC6C6001A3D6F /* tinysip */,
ECF0E1AF118CC6C7001A3D6F /* tinysip.h */,
ECF0E1B0118CC6C7001A3D6F /* tinysip_config.h */,
ECF0E1B1118CC6C7001A3D6F /* tsip.h */,
);
path = include;
sourceTree = "<group>";
};
ECF0E124118CC6C6001A3D6F /* tinysip */ = {
isa = PBXGroup;
children = (
ECF0E125118CC6C6001A3D6F /* api */,
ECF0E12B118CC6C6001A3D6F /* authentication */,
ECF0E12F118CC6C6001A3D6F /* dialogs */,
ECF0E137118CC6C6001A3D6F /* headers */,
ECF0E197118CC6C7001A3D6F /* media */,
ECF0E199118CC6C7001A3D6F /* parsers */,
ECF0E19D118CC6C7001A3D6F /* transactions */,
ECF0E1A4118CC6C7001A3D6F /* transports */,
ECF0E1A9118CC6C7001A3D6F /* tsip_action.h */,
ECF0E1AA118CC6C7001A3D6F /* tsip_event.h */,
ECF0E1AB118CC6C7001A3D6F /* tsip_message.h */,
ECF0E1AC118CC6C7001A3D6F /* tsip_ssession.h */,
ECF0E1AD118CC6C7001A3D6F /* tsip_timers.h */,
ECF0E1AE118CC6C7001A3D6F /* tsip_uri.h */,
);
path = tinysip;
sourceTree = "<group>";
};
ECF0E125118CC6C6001A3D6F /* api */ = {
isa = PBXGroup;
children = (
ECF0E126118CC6C6001A3D6F /* tsip_api_invite.h */,
ECF0E127118CC6C6001A3D6F /* tsip_api_message.h */,
ECF0E128118CC6C6001A3D6F /* tsip_api_publish.h */,
ECF0E129118CC6C6001A3D6F /* tsip_api_register.h */,
ECF0E12A118CC6C6001A3D6F /* tsip_api_subscribe.h */,
);
path = api;
sourceTree = "<group>";
};
ECF0E12B118CC6C6001A3D6F /* authentication */ = {
isa = PBXGroup;
children = (
ECF0E12C118CC6C6001A3D6F /* tsip_challenge.h */,
ECF0E12D118CC6C6001A3D6F /* tsip_milenage.h */,
ECF0E12E118CC6C6001A3D6F /* tsip_rijndael.h */,
);
path = authentication;
sourceTree = "<group>";
};
ECF0E12F118CC6C6001A3D6F /* dialogs */ = {
isa = PBXGroup;
children = (
ECF0E130118CC6C6001A3D6F /* tsip_dialog.h */,
ECF0E131118CC6C6001A3D6F /* tsip_dialog_invite.h */,
ECF0E132118CC6C6001A3D6F /* tsip_dialog_layer.h */,
ECF0E133118CC6C6001A3D6F /* tsip_dialog_message.h */,
ECF0E134118CC6C6001A3D6F /* tsip_dialog_publish.h */,
ECF0E135118CC6C6001A3D6F /* tsip_dialog_register.h */,
ECF0E136118CC6C6001A3D6F /* tsip_dialog_subscribe.h */,
);
path = dialogs;
sourceTree = "<group>";
};
ECF0E137118CC6C6001A3D6F /* headers */ = {
isa = PBXGroup;
children = (
ECF0E138118CC6C6001A3D6F /* tsip_header.h */,
ECF0E139118CC6C6001A3D6F /* tsip_header_accept.h */,
ECF0E13A118CC6C6001A3D6F /* tsip_header_Accept_Contact.h */,
ECF0E13B118CC6C6001A3D6F /* tsip_header_Accept_Encoding.h */,
ECF0E13C118CC6C6001A3D6F /* tsip_header_Accept_Language.h */,
ECF0E13D118CC6C6001A3D6F /* tsip_header_Accept_Resource_Priority.h */,
ECF0E13E118CC6C6001A3D6F /* tsip_header_Alert_Info.h */,
ECF0E13F118CC6C6001A3D6F /* tsip_header_Allow.h */,
ECF0E140118CC6C6001A3D6F /* tsip_header_Allow_Events.h */,
ECF0E141118CC6C6001A3D6F /* tsip_header_Authentication_Info.h */,
ECF0E142118CC6C6001A3D6F /* tsip_header_Authorization.h */,
ECF0E143118CC6C6001A3D6F /* tsip_header_Call_ID.h */,
ECF0E144118CC6C6001A3D6F /* tsip_header_Call_Info.h */,
ECF0E145118CC6C6001A3D6F /* tsip_header_Contact.h */,
ECF0E146118CC6C6001A3D6F /* tsip_header_Content_Disposition.h */,
ECF0E147118CC6C6001A3D6F /* tsip_header_Content_Encoding.h */,
ECF0E148118CC6C6001A3D6F /* tsip_header_Content_Language.h */,
ECF0E149118CC6C6001A3D6F /* tsip_header_Content_Length.h */,
ECF0E14A118CC6C6001A3D6F /* tsip_header_Content_Type.h */,
ECF0E14B118CC6C6001A3D6F /* tsip_header_CSeq.h */,
ECF0E14C118CC6C6001A3D6F /* tsip_header_Date.h */,
ECF0E14D118CC6C6001A3D6F /* tsip_header_Dummy.h */,
ECF0E14E118CC6C6001A3D6F /* tsip_header_Error_Info.h */,
ECF0E14F118CC6C6001A3D6F /* tsip_header_Event.h */,
ECF0E150118CC6C6001A3D6F /* tsip_header_Expires.h */,
ECF0E151118CC6C6001A3D6F /* tsip_header_From.h */,
ECF0E152118CC6C6001A3D6F /* tsip_header_History_Info.h */,
ECF0E153118CC6C6001A3D6F /* tsip_header_Identity.h */,
ECF0E154118CC6C6001A3D6F /* tsip_header_Identity_Info.h */,
ECF0E155118CC6C6001A3D6F /* tsip_header_In_Reply_To.h */,
ECF0E156118CC6C6001A3D6F /* tsip_header_Join.h */,
ECF0E157118CC6C6001A3D6F /* tsip_header_Max_Forwards.h */,
ECF0E158118CC6C6001A3D6F /* tsip_header_MIME_Version.h */,
ECF0E159118CC6C6001A3D6F /* tsip_header_Min_Expires.h */,
ECF0E15A118CC6C6001A3D6F /* tsip_header_Min_SE.h */,
ECF0E15B118CC6C6001A3D6F /* tsip_header_Organization.h */,
ECF0E15C118CC6C6001A3D6F /* tsip_header_P_Access_Network_Info.h */,
ECF0E15D118CC6C6001A3D6F /* tsip_header_P_Answer_State.h */,
ECF0E15E118CC6C6001A3D6F /* tsip_header_P_Asserted_Identity.h */,
ECF0E15F118CC6C6001A3D6F /* tsip_header_P_Associated_URI.h */,
ECF0E160118CC6C6001A3D6F /* tsip_header_P_Called_Party_ID.h */,
ECF0E161118CC6C6001A3D6F /* tsip_header_P_Charging_Function_Addresses.h */,
ECF0E162118CC6C6001A3D6F /* tsip_header_P_Charging_Vector.h */,
ECF0E163118CC6C6001A3D6F /* tsip_header_P_DCS_Billing_Info.h */,
ECF0E164118CC6C6001A3D6F /* tsip_header_P_DCS_LAES.h */,
ECF0E165118CC6C6001A3D6F /* tsip_header_P_DCS_OSPS.h */,
ECF0E166118CC6C6001A3D6F /* tsip_header_P_DCS_Redirect.h */,
ECF0E167118CC6C6001A3D6F /* tsip_header_P_DCS_Trace_Party_ID.h */,
ECF0E168118CC6C6001A3D6F /* tsip_header_P_Early_Media.h */,
ECF0E169118CC6C6001A3D6F /* tsip_header_P_Media_Authorization.h */,
ECF0E16A118CC6C6001A3D6F /* tsip_header_P_Preferred_Identity.h */,
ECF0E16B118CC6C6001A3D6F /* tsip_header_P_Profile_Key.h */,
ECF0E16C118CC6C6001A3D6F /* tsip_header_P_User_Database.h */,
ECF0E16D118CC6C6001A3D6F /* tsip_header_P_Visited_Network_ID.h */,
ECF0E16E118CC6C6001A3D6F /* tsip_header_Path.h */,
ECF0E16F118CC6C6001A3D6F /* tsip_header_Priority.h */,
ECF0E170118CC6C6001A3D6F /* tsip_header_Privacy.h */,
ECF0E171118CC6C6001A3D6F /* tsip_header_Proxy_Authenticate.h */,
ECF0E172118CC6C6001A3D6F /* tsip_header_Proxy_Authorization.h */,
ECF0E173118CC6C6001A3D6F /* tsip_header_Proxy_Require.h */,
ECF0E174118CC6C6001A3D6F /* tsip_header_RAck.h */,
ECF0E175118CC6C6001A3D6F /* tsip_header_Reason.h */,
ECF0E176118CC6C6001A3D6F /* tsip_header_Record_Route.h */,
ECF0E177118CC6C6001A3D6F /* tsip_header_Refer_Sub.h */,
ECF0E178118CC6C6001A3D6F /* tsip_header_Refer_To.h */,
ECF0E179118CC6C6001A3D6F /* tsip_header_Referred_By.h */,
ECF0E17A118CC6C6001A3D6F /* tsip_header_Reject_Contact.h */,
ECF0E17B118CC6C6001A3D6F /* tsip_header_Replaces.h */,
ECF0E17C118CC6C6001A3D6F /* tsip_header_Reply_To.h */,
ECF0E17D118CC6C6001A3D6F /* tsip_header_Request_Disposition.h */,
ECF0E17E118CC6C7001A3D6F /* tsip_header_Require.h */,
ECF0E17F118CC6C7001A3D6F /* tsip_header_Resource_Priority.h */,
ECF0E180118CC6C7001A3D6F /* tsip_header_Retry_After.h */,
ECF0E181118CC6C7001A3D6F /* tsip_header_Route.h */,
ECF0E182118CC6C7001A3D6F /* tsip_header_RSeq.h */,
ECF0E183118CC6C7001A3D6F /* tsip_header_Security_Client.h */,
ECF0E184118CC6C7001A3D6F /* tsip_header_Security_Server.h */,
ECF0E185118CC6C7001A3D6F /* tsip_header_Security_Verify.h */,
ECF0E186118CC6C7001A3D6F /* tsip_header_Server.h */,
ECF0E187118CC6C7001A3D6F /* tsip_header_Service_Route.h */,
ECF0E188118CC6C7001A3D6F /* tsip_header_Session_Expires.h */,
ECF0E189118CC6C7001A3D6F /* tsip_header_SIP_ETag.h */,
ECF0E18A118CC6C7001A3D6F /* tsip_header_SIP_If_Match.h */,
ECF0E18B118CC6C7001A3D6F /* tsip_header_Subject.h */,
ECF0E18C118CC6C7001A3D6F /* tsip_header_Subscription_State.h */,
ECF0E18D118CC6C7001A3D6F /* tsip_header_Supported.h */,
ECF0E18E118CC6C7001A3D6F /* tsip_header_Target_Dialog.h */,
ECF0E18F118CC6C7001A3D6F /* tsip_header_Timestamp.h */,
ECF0E190118CC6C7001A3D6F /* tsip_header_To.h */,
ECF0E191118CC6C7001A3D6F /* tsip_header_Unsupported.h */,
ECF0E192118CC6C7001A3D6F /* tsip_header_User_Agent.h */,
ECF0E193118CC6C7001A3D6F /* tsip_header_Via.h */,
ECF0E194118CC6C7001A3D6F /* tsip_header_Warning.h */,
ECF0E195118CC6C7001A3D6F /* tsip_header_WWW_Authenticate.h */,
ECF0E196118CC6C7001A3D6F /* tsip_headers.h */,
);
path = headers;
sourceTree = "<group>";
};
ECF0E197118CC6C7001A3D6F /* media */ = {
isa = PBXGroup;
children = (
ECF0E198118CC6C7001A3D6F /* tsip_msession.h */,
);
path = media;
sourceTree = "<group>";
};
ECF0E199118CC6C7001A3D6F /* parsers */ = {
isa = PBXGroup;
children = (
ECF0E19A118CC6C7001A3D6F /* tsip_parser_header.h */,
ECF0E19B118CC6C7001A3D6F /* tsip_parser_message.h */,
ECF0E19C118CC6C7001A3D6F /* tsip_parser_uri.h */,
);
path = parsers;
sourceTree = "<group>";
};
ECF0E19D118CC6C7001A3D6F /* transactions */ = {
isa = PBXGroup;
children = (
ECF0E19E118CC6C7001A3D6F /* tsip_transac.h */,
ECF0E19F118CC6C7001A3D6F /* tsip_transac_ict.h */,
ECF0E1A0118CC6C7001A3D6F /* tsip_transac_ist.h */,
ECF0E1A1118CC6C7001A3D6F /* tsip_transac_layer.h */,
ECF0E1A2118CC6C7001A3D6F /* tsip_transac_nict.h */,
ECF0E1A3118CC6C7001A3D6F /* tsip_transac_nist.h */,
);
path = transactions;
sourceTree = "<group>";
};
ECF0E1A4118CC6C7001A3D6F /* transports */ = {
isa = PBXGroup;
children = (
ECF0E1A5118CC6C7001A3D6F /* tsip_transport.h */,
ECF0E1A6118CC6C7001A3D6F /* tsip_transport_ipsec.h */,
ECF0E1A7118CC6C7001A3D6F /* tsip_transport_layer.h */,
ECF0E1A8118CC6C7001A3D6F /* tsip_transport_tls.h */,
);
path = transports;
sourceTree = "<group>";
};
ECF0E219118CC6C7001A3D6F /* src */ = {
isa = PBXGroup;
children = (
ECF0E21A118CC6C7001A3D6F /* api */,
ECF0E220118CC6C7001A3D6F /* authentication */,
ECF0E224118CC6C7001A3D6F /* dialogs */,
ECF0E230118CC6C7001A3D6F /* headers */,
ECF0E28F118CC6C7001A3D6F /* media */,
ECF0E291118CC6C7001A3D6F /* parsers */,
ECF0E295118CC6C7001A3D6F /* transactions */,
ECF0E29C118CC6C7001A3D6F /* transports */,
ECF0E2A1118CC6C7001A3D6F /* tsip.c */,
ECF0E2A2118CC6C7001A3D6F /* tsip_action.c */,
ECF0E2A3118CC6C7001A3D6F /* tsip_event.c */,
ECF0E2A4118CC6C7001A3D6F /* tsip_message.c */,
ECF0E2A5118CC6C7001A3D6F /* tsip_ssession.c */,
ECF0E2A6118CC6C7001A3D6F /* tsip_timers.c */,
ECF0E2A7118CC6C7001A3D6F /* tsip_uri.c */,
);
path = src;
sourceTree = "<group>";
};
ECF0E21A118CC6C7001A3D6F /* api */ = {
isa = PBXGroup;
children = (
ECF0E21B118CC6C7001A3D6F /* tsip_api_invite.c */,
ECF0E21C118CC6C7001A3D6F /* tsip_api_message.c */,
ECF0E21D118CC6C7001A3D6F /* tsip_api_publish.c */,
ECF0E21E118CC6C7001A3D6F /* tsip_api_register.c */,
ECF0E21F118CC6C7001A3D6F /* tsip_api_subscribe.c */,
);
path = api;
sourceTree = "<group>";
};
ECF0E220118CC6C7001A3D6F /* authentication */ = {
isa = PBXGroup;
children = (
ECF0E221118CC6C7001A3D6F /* tsip_challenge.c */,
ECF0E222118CC6C7001A3D6F /* tsip_milenage.c */,
ECF0E223118CC6C7001A3D6F /* tsip_rijndael.c */,
);
path = authentication;
sourceTree = "<group>";
};
ECF0E224118CC6C7001A3D6F /* dialogs */ = {
isa = PBXGroup;
children = (
ECF0E225118CC6C7001A3D6F /* tsip_dialog.c */,
ECF0E226118CC6C7001A3D6F /* tsip_dialog_invite.c */,
ECF0E227118CC6C7001A3D6F /* tsip_dialog_invite.client.c */,
ECF0E228118CC6C7001A3D6F /* tsip_dialog_invite.server.c */,
ECF0E229118CC6C7001A3D6F /* tsip_dialog_layer.c */,
ECF0E22A118CC6C7001A3D6F /* tsip_dialog_message.c */,
ECF0E22B118CC6C7001A3D6F /* tsip_dialog_publish.client.c */,
ECF0E22C118CC6C7001A3D6F /* tsip_dialog_register.client.c */,
ECF0E22D118CC6C7001A3D6F /* tsip_dialog_register.server.c */,
ECF0E22E118CC6C7001A3D6F /* tsip_dialog_subscribe.client.c */,
ECF0E22F118CC6C7001A3D6F /* tsip_dialog_subscribe.server.c */,
);
path = dialogs;
sourceTree = "<group>";
};
ECF0E230118CC6C7001A3D6F /* headers */ = {
isa = PBXGroup;
children = (
ECF0E231118CC6C7001A3D6F /* tsip_header.c */,
ECF0E232118CC6C7001A3D6F /* tsip_header_accept.c */,
ECF0E233118CC6C7001A3D6F /* tsip_header_Accept_Contact.c */,
ECF0E234118CC6C7001A3D6F /* tsip_header_Accept_Encoding.c */,
ECF0E235118CC6C7001A3D6F /* tsip_header_Accept_Language.c */,
ECF0E236118CC6C7001A3D6F /* tsip_header_Accept_Resource_Priority.c */,
ECF0E237118CC6C7001A3D6F /* tsip_header_Alert_Info.c */,
ECF0E238118CC6C7001A3D6F /* tsip_header_Allow.c */,
ECF0E239118CC6C7001A3D6F /* tsip_header_Allow_Events.c */,
ECF0E23A118CC6C7001A3D6F /* tsip_header_Authentication_Info.c */,
ECF0E23B118CC6C7001A3D6F /* tsip_header_Authorization.c */,
ECF0E23C118CC6C7001A3D6F /* tsip_header_Call_ID.c */,
ECF0E23D118CC6C7001A3D6F /* tsip_header_Call_Info.c */,
ECF0E23E118CC6C7001A3D6F /* tsip_header_Contact.c */,
ECF0E23F118CC6C7001A3D6F /* tsip_header_Content_Disposition.c */,
ECF0E240118CC6C7001A3D6F /* tsip_header_Content_Encoding.c */,
ECF0E241118CC6C7001A3D6F /* tsip_header_Content_Language.c */,
ECF0E242118CC6C7001A3D6F /* tsip_header_Content_Length.c */,
ECF0E243118CC6C7001A3D6F /* tsip_header_Content_Type.c */,
ECF0E244118CC6C7001A3D6F /* tsip_header_CSeq.c */,
ECF0E245118CC6C7001A3D6F /* tsip_header_Date.c */,
ECF0E246118CC6C7001A3D6F /* tsip_header_Dummy.c */,
ECF0E247118CC6C7001A3D6F /* tsip_header_Error_Info.c */,
ECF0E248118CC6C7001A3D6F /* tsip_header_Event.c */,
ECF0E249118CC6C7001A3D6F /* tsip_header_Expires.c */,
ECF0E24A118CC6C7001A3D6F /* tsip_header_From.c */,
ECF0E24B118CC6C7001A3D6F /* tsip_header_History_Info.c */,
ECF0E24C118CC6C7001A3D6F /* tsip_header_Identity.c */,
ECF0E24D118CC6C7001A3D6F /* tsip_header_Identity_Info.c */,
ECF0E24E118CC6C7001A3D6F /* tsip_header_In_Reply_To.c */,
ECF0E24F118CC6C7001A3D6F /* tsip_header_Join.c */,
ECF0E250118CC6C7001A3D6F /* tsip_header_Max_Forwards.c */,
ECF0E251118CC6C7001A3D6F /* tsip_header_MIME_Version.c */,
ECF0E252118CC6C7001A3D6F /* tsip_header_Min_Expires.c */,
ECF0E253118CC6C7001A3D6F /* tsip_header_Min_SE.c */,
ECF0E254118CC6C7001A3D6F /* tsip_header_Organization.c */,
ECF0E255118CC6C7001A3D6F /* tsip_header_P_Access_Network_Info.c */,
ECF0E256118CC6C7001A3D6F /* tsip_header_P_Answer_State.c */,
ECF0E257118CC6C7001A3D6F /* tsip_header_P_Asserted_Identity.c */,
ECF0E258118CC6C7001A3D6F /* tsip_header_P_Associated_URI.c */,
ECF0E259118CC6C7001A3D6F /* tsip_header_P_Called_Party_ID.c */,
ECF0E25A118CC6C7001A3D6F /* tsip_header_P_Charging_Function_Addresses.c */,
ECF0E25B118CC6C7001A3D6F /* tsip_header_P_Charging_Vector.c */,
ECF0E25C118CC6C7001A3D6F /* tsip_header_P_DCS_Billing_Info.c */,
ECF0E25D118CC6C7001A3D6F /* tsip_header_P_DCS_LAES.c */,
ECF0E25E118CC6C7001A3D6F /* tsip_header_P_DCS_OSPS.c */,
ECF0E25F118CC6C7001A3D6F /* tsip_header_P_DCS_Redirect.c */,
ECF0E260118CC6C7001A3D6F /* tsip_header_P_DCS_Trace_Party_ID.c */,
ECF0E261118CC6C7001A3D6F /* tsip_header_P_Early_Media.c */,
ECF0E262118CC6C7001A3D6F /* tsip_header_P_Media_Authorization.c */,
ECF0E263118CC6C7001A3D6F /* tsip_header_P_Preferred_Identity.c */,
ECF0E264118CC6C7001A3D6F /* tsip_header_P_Profile_Key.c */,
ECF0E265118CC6C7001A3D6F /* tsip_header_P_User_Database.c */,
ECF0E266118CC6C7001A3D6F /* tsip_header_P_Visited_Network_ID.c */,
ECF0E267118CC6C7001A3D6F /* tsip_header_Path.c */,
ECF0E268118CC6C7001A3D6F /* tsip_header_Priority.c */,
ECF0E269118CC6C7001A3D6F /* tsip_header_Privacy.c */,
ECF0E26A118CC6C7001A3D6F /* tsip_header_Proxy_Authenticate.c */,
ECF0E26B118CC6C7001A3D6F /* tsip_header_Proxy_Authorization.c */,
ECF0E26C118CC6C7001A3D6F /* tsip_header_Proxy_Require.c */,
ECF0E26D118CC6C7001A3D6F /* tsip_header_RAck.c */,
ECF0E26E118CC6C7001A3D6F /* tsip_header_Reason.c */,
ECF0E26F118CC6C7001A3D6F /* tsip_header_Record_Route.c */,
ECF0E270118CC6C7001A3D6F /* tsip_header_Refer_Sub.c */,
ECF0E271118CC6C7001A3D6F /* tsip_header_Refer_To.c */,
ECF0E272118CC6C7001A3D6F /* tsip_header_Referred_By.c */,
ECF0E273118CC6C7001A3D6F /* tsip_header_Reject_Contact.c */,
ECF0E274118CC6C7001A3D6F /* tsip_header_Replaces.c */,
ECF0E275118CC6C7001A3D6F /* tsip_header_Reply_To.c */,
ECF0E276118CC6C7001A3D6F /* tsip_header_Request_Disposition.c */,
ECF0E277118CC6C7001A3D6F /* tsip_header_Require.c */,
ECF0E278118CC6C7001A3D6F /* tsip_header_Resource_Priority.c */,
ECF0E279118CC6C7001A3D6F /* tsip_header_Retry_After.c */,
ECF0E27A118CC6C7001A3D6F /* tsip_header_Route.c */,
ECF0E27B118CC6C7001A3D6F /* tsip_header_RSeq.c */,
ECF0E27C118CC6C7001A3D6F /* tsip_header_Security_Client.c */,
ECF0E27D118CC6C7001A3D6F /* tsip_header_Security_Server.c */,
ECF0E27E118CC6C7001A3D6F /* tsip_header_Security_Verify.c */,
ECF0E27F118CC6C7001A3D6F /* tsip_header_Server.c */,
ECF0E280118CC6C7001A3D6F /* tsip_header_Service_Route.c */,
ECF0E281118CC6C7001A3D6F /* tsip_header_Session_Expires.c */,
ECF0E282118CC6C7001A3D6F /* tsip_header_SIP_ETag.c */,
ECF0E283118CC6C7001A3D6F /* tsip_header_SIP_If_Match.c */,
ECF0E284118CC6C7001A3D6F /* tsip_header_Subject.c */,
ECF0E285118CC6C7001A3D6F /* tsip_header_Subscription_State.c */,
ECF0E286118CC6C7001A3D6F /* tsip_header_Supported.c */,
ECF0E287118CC6C7001A3D6F /* tsip_header_Target_Dialog.c */,
ECF0E288118CC6C7001A3D6F /* tsip_header_Timestamp.c */,
ECF0E289118CC6C7001A3D6F /* tsip_header_To.c */,
ECF0E28A118CC6C7001A3D6F /* tsip_header_Unsupported.c */,
ECF0E28B118CC6C7001A3D6F /* tsip_header_User_Agent.c */,
ECF0E28C118CC6C7001A3D6F /* tsip_header_Via.c */,
ECF0E28D118CC6C7001A3D6F /* tsip_header_Warning.c */,
ECF0E28E118CC6C7001A3D6F /* tsip_header_WWW_Authenticate.c */,
);
path = headers;
sourceTree = "<group>";
};
ECF0E28F118CC6C7001A3D6F /* media */ = {
isa = PBXGroup;
children = (
ECF0E290118CC6C7001A3D6F /* tsip_msession.c */,
);
path = media;
sourceTree = "<group>";
};
ECF0E291118CC6C7001A3D6F /* parsers */ = {
isa = PBXGroup;
children = (
ECF0E292118CC6C7001A3D6F /* tsip_parser_header.c */,
ECF0E293118CC6C7001A3D6F /* tsip_parser_message.c */,
ECF0E294118CC6C7001A3D6F /* tsip_parser_uri.c */,
);
path = parsers;
sourceTree = "<group>";
};
ECF0E295118CC6C7001A3D6F /* transactions */ = {
isa = PBXGroup;
children = (
ECF0E296118CC6C7001A3D6F /* tsip_transac.c */,
ECF0E297118CC6C7001A3D6F /* tsip_transac_ict.c */,
ECF0E298118CC6C7001A3D6F /* tsip_transac_ist.c */,
ECF0E299118CC6C7001A3D6F /* tsip_transac_layer.c */,
ECF0E29A118CC6C7001A3D6F /* tsip_transac_nict.c */,
ECF0E29B118CC6C7001A3D6F /* tsip_transac_nist.c */,
);
path = transactions;
sourceTree = "<group>";
};
ECF0E29C118CC6C7001A3D6F /* transports */ = {
isa = PBXGroup;
children = (
ECF0E29D118CC6C7001A3D6F /* tsip_transport.c */,
ECF0E29E118CC6C7001A3D6F /* tsip_transport_ipsec.c */,
ECF0E29F118CC6C7001A3D6F /* tsip_transport_layer.c */,
ECF0E2A0118CC6C7001A3D6F /* tsip_transport_tls.c */,
);
path = transports;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
ECF0D6C8118CC01D001A3D6F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0DBAE118CC094001A3D6F /* tinySAK_config.h in Headers */,
ECF0DBB0118CC094001A3D6F /* tsk.h in Headers */,
ECF0DBB2118CC094001A3D6F /* tsk_base64.h in Headers */,
ECF0DBB4118CC094001A3D6F /* tsk_binaryutils.h in Headers */,
ECF0DBB6118CC094001A3D6F /* tsk_buffer.h in Headers */,
ECF0DBB7118CC094001A3D6F /* tsk_common.h in Headers */,
ECF0DBB9118CC094001A3D6F /* tsk_condwait.h in Headers */,
ECF0DBBB118CC094001A3D6F /* tsk_debug.h in Headers */,
ECF0DBBC118CC094001A3D6F /* tsk_errno.h in Headers */,
ECF0DBBE118CC094001A3D6F /* tsk_fsm.h in Headers */,
ECF0DBC0118CC094001A3D6F /* tsk_hmac.h in Headers */,
ECF0DBC2118CC094001A3D6F /* tsk_list.h in Headers */,
ECF0DBC4118CC094001A3D6F /* tsk_md5.h in Headers */,
ECF0DBC6118CC094001A3D6F /* tsk_memory.h in Headers */,
ECF0DBC8118CC094001A3D6F /* tsk_mutex.h in Headers */,
ECF0DBCA118CC094001A3D6F /* tsk_object.h in Headers */,
ECF0DBCC118CC094001A3D6F /* tsk_options.h in Headers */,
ECF0DBCE118CC094001A3D6F /* tsk_params.h in Headers */,
ECF0DBD0118CC094001A3D6F /* tsk_ppfcs16.h in Headers */,
ECF0DBD2118CC094001A3D6F /* tsk_ppfcs32.h in Headers */,
ECF0DBD4118CC094001A3D6F /* tsk_ragel_state.h in Headers */,
ECF0DBD6118CC094001A3D6F /* tsk_runnable.h in Headers */,
ECF0DBD8118CC094001A3D6F /* tsk_safeobj.h in Headers */,
ECF0DBDA118CC094001A3D6F /* tsk_semaphore.h in Headers */,
ECF0DBDC118CC094001A3D6F /* tsk_sha1.h in Headers */,
ECF0DBDE118CC094001A3D6F /* tsk_string.h in Headers */,
ECF0DBE0118CC094001A3D6F /* tsk_thread.h in Headers */,
ECF0DBE2118CC094001A3D6F /* tsk_time.h in Headers */,
ECF0DBE4118CC094001A3D6F /* tsk_timer.h in Headers */,
ECF0DBE6118CC094001A3D6F /* tsk_url.h in Headers */,
ECF0DBE8118CC094001A3D6F /* tsk_uuid.h in Headers */,
ECF0DBEA118CC094001A3D6F /* tsk_xml.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6CF118CC02E001A3D6F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0DEE4118CC19E001A3D6F /* tnet_dhcp.h in Headers */,
ECF0DEE6118CC19E001A3D6F /* tnet_dhcp_message.h in Headers */,
ECF0DEE8118CC19E001A3D6F /* tnet_dhcp_option.h in Headers */,
ECF0DEEA118CC19E001A3D6F /* tnet_dhcp_option_sip.h in Headers */,
ECF0DEEC118CC19E001A3D6F /* tnet_dhcp6.h in Headers */,
ECF0DEEE118CC19E001A3D6F /* tnet_dhcp6_duid.h in Headers */,
ECF0DEF0118CC19E001A3D6F /* tnet_dhcp6_message.h in Headers */,
ECF0DEF2118CC19E001A3D6F /* tnet_dhcp6_option.h in Headers */,
ECF0DEF4118CC19E001A3D6F /* tnet_dns.h in Headers */,
ECF0DEF6118CC19E001A3D6F /* tnet_dns_a.h in Headers */,
ECF0DEF8118CC19E001A3D6F /* tnet_dns_aaaa.h in Headers */,
ECF0DEFA118CC19E001A3D6F /* tnet_dns_cname.h in Headers */,
ECF0DEFC118CC19E001A3D6F /* tnet_dns_message.h in Headers */,
ECF0DEFE118CC19E001A3D6F /* tnet_dns_mx.h in Headers */,
ECF0DF00118CC19E001A3D6F /* tnet_dns_naptr.h in Headers */,
ECF0DF02118CC19E001A3D6F /* tnet_dns_ns.h in Headers */,
ECF0DF04118CC19E001A3D6F /* tnet_dns_opt.h in Headers */,
ECF0DF06118CC19E001A3D6F /* tnet_dns_ptr.h in Headers */,
ECF0DF08118CC19E001A3D6F /* tnet_dns_regexp.h in Headers */,
ECF0DF0A118CC19E001A3D6F /* tnet_dns_resolvconf.h in Headers */,
ECF0DF0C118CC19E001A3D6F /* tnet_dns_rr.h in Headers */,
ECF0DF0E118CC19E001A3D6F /* tnet_dns_soa.h in Headers */,
ECF0DF10118CC19E001A3D6F /* tnet_dns_srv.h in Headers */,
ECF0DF12118CC19E001A3D6F /* tnet_dns_txt.h in Headers */,
ECF0DF14118CC19E001A3D6F /* tnet_ice.h in Headers */,
ECF0DF16118CC19E001A3D6F /* tnet_stun.h in Headers */,
ECF0DF18118CC19E001A3D6F /* tnet_stun_attribute.h in Headers */,
ECF0DF1A118CC19E001A3D6F /* tnet_stun_message.h in Headers */,
ECF0DF1B118CC19E001A3D6F /* tinynet.h in Headers */,
ECF0DF1C118CC19E001A3D6F /* tinyNET_config.h in Headers */,
ECF0DF1E118CC19E001A3D6F /* tnet_tls.h in Headers */,
ECF0DF20118CC19E001A3D6F /* tnet.h in Headers */,
ECF0DF22118CC19E001A3D6F /* tnet_auth.h in Headers */,
ECF0DF24118CC19E001A3D6F /* tnet_endianness.h in Headers */,
ECF0DF25118CC19E001A3D6F /* tnet_hardwares.h in Headers */,
ECF0DF27118CC19E001A3D6F /* tnet_nat.h in Headers */,
ECF0DF29118CC19E001A3D6F /* tnet_poll.h in Headers */,
ECF0DF2A118CC19E001A3D6F /* tnet_proto.h in Headers */,
ECF0DF2C118CC19E001A3D6F /* tnet_socket.h in Headers */,
ECF0DF2E118CC19E001A3D6F /* tnet_transport.h in Headers */,
ECF0DF31118CC19E001A3D6F /* tnet_types.h in Headers */,
ECF0DF33118CC19E001A3D6F /* tnet_utils.h in Headers */,
ECF0DF35118CC19E001A3D6F /* tnet_turn.h in Headers */,
ECF0DF37118CC19E001A3D6F /* tnet_turn_attribute.h in Headers */,
ECF0DF39118CC19E001A3D6F /* tnet_turn_message.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6D6118CC042001A3D6F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E014118CC4B6001A3D6F /* thttp.h in Headers */,
ECF0E015118CC4B6001A3D6F /* thttp_auth.h in Headers */,
ECF0E016118CC4B6001A3D6F /* thttp_challenge.h in Headers */,
ECF0E017118CC4B6001A3D6F /* thttp_header.h in Headers */,
ECF0E018118CC4B6001A3D6F /* thttp_header_Authorization.h in Headers */,
ECF0E019118CC4B6001A3D6F /* thttp_header_Content_Length.h in Headers */,
ECF0E01A118CC4B6001A3D6F /* thttp_header_Content_Type.h in Headers */,
ECF0E01B118CC4B6001A3D6F /* thttp_header_Dummy.h in Headers */,
ECF0E01C118CC4B6001A3D6F /* thttp_header_ETag.h in Headers */,
ECF0E01D118CC4B6001A3D6F /* thttp_header_Transfer_Encoding.h in Headers */,
ECF0E01E118CC4B6001A3D6F /* thttp_header_WWW_Authenticate.h in Headers */,
ECF0E01F118CC4B6001A3D6F /* thttp_parser_header.h in Headers */,
ECF0E020118CC4B6001A3D6F /* thttp_parser_message.h in Headers */,
ECF0E021118CC4B6001A3D6F /* thttp_parser_url.h in Headers */,
ECF0E022118CC4B6001A3D6F /* thttp_action.h in Headers */,
ECF0E023118CC4B6001A3D6F /* thttp_dialog.h in Headers */,
ECF0E024118CC4B6001A3D6F /* thttp_event.h in Headers */,
ECF0E025118CC4B6001A3D6F /* thttp_message.h in Headers */,
ECF0E026118CC4B6001A3D6F /* thttp_session.h in Headers */,
ECF0E027118CC4B6001A3D6F /* thttp_url.h in Headers */,
ECF0E028118CC4B6001A3D6F /* tinyhttp.h in Headers */,
ECF0E029118CC4B6001A3D6F /* tinyhttp_config.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6DD118CC053001A3D6F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E0DA118CC667001A3D6F /* tsdp_header.h in Headers */,
ECF0E0DB118CC667001A3D6F /* tsdp_header_A.h in Headers */,
ECF0E0DC118CC667001A3D6F /* tsdp_header_B.h in Headers */,
ECF0E0DD118CC667001A3D6F /* tsdp_header_C.h in Headers */,
ECF0E0DE118CC667001A3D6F /* tsdp_header_Dummy.h in Headers */,
ECF0E0DF118CC667001A3D6F /* tsdp_header_E.h in Headers */,
ECF0E0E0118CC667001A3D6F /* tsdp_header_I.h in Headers */,
ECF0E0E1118CC667001A3D6F /* tsdp_header_K.h in Headers */,
ECF0E0E2118CC667001A3D6F /* tsdp_header_M.h in Headers */,
ECF0E0E3118CC667001A3D6F /* tsdp_header_O.h in Headers */,
ECF0E0E4118CC667001A3D6F /* tsdp_header_P.h in Headers */,
ECF0E0E5118CC667001A3D6F /* tsdp_header_R.h in Headers */,
ECF0E0E6118CC667001A3D6F /* tsdp_header_S.h in Headers */,
ECF0E0E7118CC667001A3D6F /* tsdp_header_T.h in Headers */,
ECF0E0E8118CC667001A3D6F /* tsdp_header_U.h in Headers */,
ECF0E0E9118CC667001A3D6F /* tsdp_header_V.h in Headers */,
ECF0E0EA118CC667001A3D6F /* tsdp_header_Z.h in Headers */,
ECF0E0EB118CC667001A3D6F /* tsdp_parser_header.h in Headers */,
ECF0E0EC118CC667001A3D6F /* tsdp_parser_message.h in Headers */,
ECF0E0ED118CC667001A3D6F /* tsdp_message.h in Headers */,
ECF0E0EE118CC667001A3D6F /* tinysdp_config.h in Headers */,
ECF0E0EF118CC667001A3D6F /* tsdp.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6E4118CC060001A3D6F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6EB118CC06F001A3D6F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E2B6118CC6C7001A3D6F /* tsip_api_invite.h in Headers */,
ECF0E2B7118CC6C7001A3D6F /* tsip_api_message.h in Headers */,
ECF0E2B8118CC6C7001A3D6F /* tsip_api_publish.h in Headers */,
ECF0E2B9118CC6C7001A3D6F /* tsip_api_register.h in Headers */,
ECF0E2BA118CC6C7001A3D6F /* tsip_api_subscribe.h in Headers */,
ECF0E2BB118CC6C7001A3D6F /* tsip_challenge.h in Headers */,
ECF0E2BC118CC6C7001A3D6F /* tsip_milenage.h in Headers */,
ECF0E2BD118CC6C7001A3D6F /* tsip_rijndael.h in Headers */,
ECF0E2BE118CC6C7001A3D6F /* tsip_dialog.h in Headers */,
ECF0E2BF118CC6C7001A3D6F /* tsip_dialog_invite.h in Headers */,
ECF0E2C0118CC6C7001A3D6F /* tsip_dialog_layer.h in Headers */,
ECF0E2C1118CC6C7001A3D6F /* tsip_dialog_message.h in Headers */,
ECF0E2C2118CC6C7001A3D6F /* tsip_dialog_publish.h in Headers */,
ECF0E2C3118CC6C7001A3D6F /* tsip_dialog_register.h in Headers */,
ECF0E2C4118CC6C7001A3D6F /* tsip_dialog_subscribe.h in Headers */,
ECF0E2C5118CC6C7001A3D6F /* tsip_header.h in Headers */,
ECF0E2C6118CC6C7001A3D6F /* tsip_header_accept.h in Headers */,
ECF0E2C7118CC6C7001A3D6F /* tsip_header_Accept_Contact.h in Headers */,
ECF0E2C8118CC6C7001A3D6F /* tsip_header_Accept_Encoding.h in Headers */,
ECF0E2C9118CC6C7001A3D6F /* tsip_header_Accept_Language.h in Headers */,
ECF0E2CA118CC6C7001A3D6F /* tsip_header_Accept_Resource_Priority.h in Headers */,
ECF0E2CB118CC6C7001A3D6F /* tsip_header_Alert_Info.h in Headers */,
ECF0E2CC118CC6C7001A3D6F /* tsip_header_Allow.h in Headers */,
ECF0E2CD118CC6C7001A3D6F /* tsip_header_Allow_Events.h in Headers */,
ECF0E2CE118CC6C7001A3D6F /* tsip_header_Authentication_Info.h in Headers */,
ECF0E2CF118CC6C7001A3D6F /* tsip_header_Authorization.h in Headers */,
ECF0E2D0118CC6C7001A3D6F /* tsip_header_Call_ID.h in Headers */,
ECF0E2D1118CC6C7001A3D6F /* tsip_header_Call_Info.h in Headers */,
ECF0E2D2118CC6C7001A3D6F /* tsip_header_Contact.h in Headers */,
ECF0E2D3118CC6C7001A3D6F /* tsip_header_Content_Disposition.h in Headers */,
ECF0E2D4118CC6C7001A3D6F /* tsip_header_Content_Encoding.h in Headers */,
ECF0E2D5118CC6C7001A3D6F /* tsip_header_Content_Language.h in Headers */,
ECF0E2D6118CC6C7001A3D6F /* tsip_header_Content_Length.h in Headers */,
ECF0E2D7118CC6C7001A3D6F /* tsip_header_Content_Type.h in Headers */,
ECF0E2D8118CC6C7001A3D6F /* tsip_header_CSeq.h in Headers */,
ECF0E2D9118CC6C7001A3D6F /* tsip_header_Date.h in Headers */,
ECF0E2DA118CC6C7001A3D6F /* tsip_header_Dummy.h in Headers */,
ECF0E2DB118CC6C7001A3D6F /* tsip_header_Error_Info.h in Headers */,
ECF0E2DC118CC6C7001A3D6F /* tsip_header_Event.h in Headers */,
ECF0E2DD118CC6C7001A3D6F /* tsip_header_Expires.h in Headers */,
ECF0E2DE118CC6C7001A3D6F /* tsip_header_From.h in Headers */,
ECF0E2DF118CC6C7001A3D6F /* tsip_header_History_Info.h in Headers */,
ECF0E2E0118CC6C7001A3D6F /* tsip_header_Identity.h in Headers */,
ECF0E2E1118CC6C7001A3D6F /* tsip_header_Identity_Info.h in Headers */,
ECF0E2E2118CC6C7001A3D6F /* tsip_header_In_Reply_To.h in Headers */,
ECF0E2E3118CC6C7001A3D6F /* tsip_header_Join.h in Headers */,
ECF0E2E4118CC6C7001A3D6F /* tsip_header_Max_Forwards.h in Headers */,
ECF0E2E5118CC6C7001A3D6F /* tsip_header_MIME_Version.h in Headers */,
ECF0E2E6118CC6C7001A3D6F /* tsip_header_Min_Expires.h in Headers */,
ECF0E2E7118CC6C7001A3D6F /* tsip_header_Min_SE.h in Headers */,
ECF0E2E8118CC6C7001A3D6F /* tsip_header_Organization.h in Headers */,
ECF0E2E9118CC6C7001A3D6F /* tsip_header_P_Access_Network_Info.h in Headers */,
ECF0E2EA118CC6C7001A3D6F /* tsip_header_P_Answer_State.h in Headers */,
ECF0E2EB118CC6C7001A3D6F /* tsip_header_P_Asserted_Identity.h in Headers */,
ECF0E2EC118CC6C7001A3D6F /* tsip_header_P_Associated_URI.h in Headers */,
ECF0E2ED118CC6C7001A3D6F /* tsip_header_P_Called_Party_ID.h in Headers */,
ECF0E2EE118CC6C7001A3D6F /* tsip_header_P_Charging_Function_Addresses.h in Headers */,
ECF0E2EF118CC6C7001A3D6F /* tsip_header_P_Charging_Vector.h in Headers */,
ECF0E2F0118CC6C7001A3D6F /* tsip_header_P_DCS_Billing_Info.h in Headers */,
ECF0E2F1118CC6C7001A3D6F /* tsip_header_P_DCS_LAES.h in Headers */,
ECF0E2F2118CC6C7001A3D6F /* tsip_header_P_DCS_OSPS.h in Headers */,
ECF0E2F3118CC6C7001A3D6F /* tsip_header_P_DCS_Redirect.h in Headers */,
ECF0E2F4118CC6C7001A3D6F /* tsip_header_P_DCS_Trace_Party_ID.h in Headers */,
ECF0E2F5118CC6C7001A3D6F /* tsip_header_P_Early_Media.h in Headers */,
ECF0E2F6118CC6C7001A3D6F /* tsip_header_P_Media_Authorization.h in Headers */,
ECF0E2F7118CC6C7001A3D6F /* tsip_header_P_Preferred_Identity.h in Headers */,
ECF0E2F8118CC6C7001A3D6F /* tsip_header_P_Profile_Key.h in Headers */,
ECF0E2F9118CC6C7001A3D6F /* tsip_header_P_User_Database.h in Headers */,
ECF0E2FA118CC6C7001A3D6F /* tsip_header_P_Visited_Network_ID.h in Headers */,
ECF0E2FB118CC6C7001A3D6F /* tsip_header_Path.h in Headers */,
ECF0E2FC118CC6C7001A3D6F /* tsip_header_Priority.h in Headers */,
ECF0E2FD118CC6C7001A3D6F /* tsip_header_Privacy.h in Headers */,
ECF0E2FE118CC6C7001A3D6F /* tsip_header_Proxy_Authenticate.h in Headers */,
ECF0E2FF118CC6C7001A3D6F /* tsip_header_Proxy_Authorization.h in Headers */,
ECF0E300118CC6C7001A3D6F /* tsip_header_Proxy_Require.h in Headers */,
ECF0E301118CC6C7001A3D6F /* tsip_header_RAck.h in Headers */,
ECF0E302118CC6C7001A3D6F /* tsip_header_Reason.h in Headers */,
ECF0E303118CC6C7001A3D6F /* tsip_header_Record_Route.h in Headers */,
ECF0E304118CC6C7001A3D6F /* tsip_header_Refer_Sub.h in Headers */,
ECF0E305118CC6C7001A3D6F /* tsip_header_Refer_To.h in Headers */,
ECF0E306118CC6C7001A3D6F /* tsip_header_Referred_By.h in Headers */,
ECF0E307118CC6C7001A3D6F /* tsip_header_Reject_Contact.h in Headers */,
ECF0E308118CC6C7001A3D6F /* tsip_header_Replaces.h in Headers */,
ECF0E309118CC6C7001A3D6F /* tsip_header_Reply_To.h in Headers */,
ECF0E30A118CC6C7001A3D6F /* tsip_header_Request_Disposition.h in Headers */,
ECF0E30B118CC6C7001A3D6F /* tsip_header_Require.h in Headers */,
ECF0E30C118CC6C7001A3D6F /* tsip_header_Resource_Priority.h in Headers */,
ECF0E30D118CC6C7001A3D6F /* tsip_header_Retry_After.h in Headers */,
ECF0E30E118CC6C7001A3D6F /* tsip_header_Route.h in Headers */,
ECF0E30F118CC6C7001A3D6F /* tsip_header_RSeq.h in Headers */,
ECF0E310118CC6C7001A3D6F /* tsip_header_Security_Client.h in Headers */,
ECF0E311118CC6C7001A3D6F /* tsip_header_Security_Server.h in Headers */,
ECF0E312118CC6C7001A3D6F /* tsip_header_Security_Verify.h in Headers */,
ECF0E313118CC6C7001A3D6F /* tsip_header_Server.h in Headers */,
ECF0E314118CC6C7001A3D6F /* tsip_header_Service_Route.h in Headers */,
ECF0E315118CC6C7001A3D6F /* tsip_header_Session_Expires.h in Headers */,
ECF0E316118CC6C7001A3D6F /* tsip_header_SIP_ETag.h in Headers */,
ECF0E317118CC6C7001A3D6F /* tsip_header_SIP_If_Match.h in Headers */,
ECF0E318118CC6C7001A3D6F /* tsip_header_Subject.h in Headers */,
ECF0E319118CC6C7001A3D6F /* tsip_header_Subscription_State.h in Headers */,
ECF0E31A118CC6C7001A3D6F /* tsip_header_Supported.h in Headers */,
ECF0E31B118CC6C7001A3D6F /* tsip_header_Target_Dialog.h in Headers */,
ECF0E31C118CC6C7001A3D6F /* tsip_header_Timestamp.h in Headers */,
ECF0E31D118CC6C7001A3D6F /* tsip_header_To.h in Headers */,
ECF0E31E118CC6C7001A3D6F /* tsip_header_Unsupported.h in Headers */,
ECF0E31F118CC6C7001A3D6F /* tsip_header_User_Agent.h in Headers */,
ECF0E320118CC6C7001A3D6F /* tsip_header_Via.h in Headers */,
ECF0E321118CC6C7001A3D6F /* tsip_header_Warning.h in Headers */,
ECF0E322118CC6C7001A3D6F /* tsip_header_WWW_Authenticate.h in Headers */,
ECF0E323118CC6C7001A3D6F /* tsip_headers.h in Headers */,
ECF0E324118CC6C7001A3D6F /* tsip_msession.h in Headers */,
ECF0E325118CC6C7001A3D6F /* tsip_parser_header.h in Headers */,
ECF0E326118CC6C7001A3D6F /* tsip_parser_message.h in Headers */,
ECF0E327118CC6C7001A3D6F /* tsip_parser_uri.h in Headers */,
ECF0E328118CC6C7001A3D6F /* tsip_transac.h in Headers */,
ECF0E329118CC6C7001A3D6F /* tsip_transac_ict.h in Headers */,
ECF0E32A118CC6C7001A3D6F /* tsip_transac_ist.h in Headers */,
ECF0E32B118CC6C7001A3D6F /* tsip_transac_layer.h in Headers */,
ECF0E32C118CC6C7001A3D6F /* tsip_transac_nict.h in Headers */,
ECF0E32D118CC6C7001A3D6F /* tsip_transac_nist.h in Headers */,
ECF0E32E118CC6C7001A3D6F /* tsip_transport.h in Headers */,
ECF0E32F118CC6C7001A3D6F /* tsip_transport_ipsec.h in Headers */,
ECF0E330118CC6C7001A3D6F /* tsip_transport_layer.h in Headers */,
ECF0E331118CC6C7001A3D6F /* tsip_transport_tls.h in Headers */,
ECF0E332118CC6C7001A3D6F /* tsip_action.h in Headers */,
ECF0E333118CC6C7001A3D6F /* tsip_event.h in Headers */,
ECF0E334118CC6C7001A3D6F /* tsip_message.h in Headers */,
ECF0E335118CC6C7001A3D6F /* tsip_ssession.h in Headers */,
ECF0E336118CC6C7001A3D6F /* tsip_timers.h in Headers */,
ECF0E337118CC6C7001A3D6F /* tsip_uri.h in Headers */,
ECF0E338118CC6C7001A3D6F /* tinysip.h in Headers */,
ECF0E339118CC6C7001A3D6F /* tinysip_config.h in Headers */,
ECF0E33A118CC6C7001A3D6F /* tsip.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0DF55118CC238001A3D6F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0DF93118CC270001A3D6F /* tsms_rpdu.h in Headers */,
ECF0DF94118CC270001A3D6F /* tsms_tpdu_command.h in Headers */,
ECF0DF95118CC270001A3D6F /* tsms_tpdu_deliver.h in Headers */,
ECF0DF96118CC270001A3D6F /* tsms_tpdu_report.h in Headers */,
ECF0DF97118CC270001A3D6F /* tsms_tpdu_status_report.h in Headers */,
ECF0DF98118CC270001A3D6F /* tsms_tpdu_submit.h in Headers */,
ECF0DF99118CC270001A3D6F /* tsms.h in Headers */,
ECF0DF9A118CC270001A3D6F /* tsms_address.h in Headers */,
ECF0DF9B118CC270001A3D6F /* tsms_common.h in Headers */,
ECF0DF9C118CC270001A3D6F /* tsms_etsi_gsm_03_38.h in Headers */,
ECF0DF9D118CC270001A3D6F /* tsms_packing.h in Headers */,
ECF0DF9E118CC270001A3D6F /* tinysms.h in Headers */,
ECF0DF9F118CC270001A3D6F /* tinysms_config.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0E050118CC592001A3D6F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E073118CC5B6001A3D6F /* tinyipsec_config.h in Headers */,
ECF0E075118CC5B6001A3D6F /* tipsec.h in Headers */,
ECF0E077118CC5B6001A3D6F /* tipsec_common.h in Headers */,
ECF0E079118CC5B6001A3D6F /* tipsec_racoon.h in Headers */,
ECF0E07B118CC5B6001A3D6F /* tipsec_vista.h in Headers */,
ECF0E07D118CC5B6001A3D6F /* tipsec_xp.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
8DD76FA90486AB0100D96B5E /* tinyDEMO */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1DEB928508733DD80010E9CD /* Build configuration list for PBXNativeTarget "tinyDEMO" */;
buildPhases = (
8DD76FAB0486AB0100D96B5E /* Sources */,
8DD76FAD0486AB0100D96B5E /* Frameworks */,
8DD76FAF0486AB0100D96B5E /* CopyFiles */,
);
buildRules = (
);
dependencies = (
ECF0E403118CCCB5001A3D6F /* PBXTargetDependency */,
ECF0E405118CCCB5001A3D6F /* PBXTargetDependency */,
ECF0E407118CCCB5001A3D6F /* PBXTargetDependency */,
ECF0E40E118CCCFF001A3D6F /* PBXTargetDependency */,
);
name = tinyDEMO;
productInstallPath = "$(HOME)/bin";
productName = tinyDEMO;
productReference = 8DD76FB20486AB0100D96B5E /* tinyDEMO */;
productType = "com.apple.product-type.tool";
};
ECF0D6CB118CC01D001A3D6F /* tinySAK */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECF0DE53118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinySAK" */;
buildPhases = (
ECF0D6C8118CC01D001A3D6F /* Headers */,
ECF0D6C9118CC01D001A3D6F /* Sources */,
ECF0D6CA118CC01D001A3D6F /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = tinySAK;
productName = tinySAK;
productReference = ECF0D6CC118CC01D001A3D6F /* libtinySAK.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECF0D6D2118CC02E001A3D6F /* tinyNET */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECF0DE54118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinyNET" */;
buildPhases = (
ECF0D6CF118CC02E001A3D6F /* Headers */,
ECF0D6D0118CC02E001A3D6F /* Sources */,
ECF0D6D1118CC02E001A3D6F /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECF0DF4B118CC1F7001A3D6F /* PBXTargetDependency */,
);
name = tinyNET;
productName = tinyNET;
productReference = ECF0D6D3118CC02E001A3D6F /* libtinyNET.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECF0D6D9118CC042001A3D6F /* tinyHTTP */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECF0DE55118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinyHTTP" */;
buildPhases = (
ECF0D6D6118CC042001A3D6F /* Headers */,
ECF0D6D7118CC042001A3D6F /* Sources */,
ECF0D6D8118CC042001A3D6F /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECF0E049118CC52B001A3D6F /* PBXTargetDependency */,
ECF0E04B118CC52B001A3D6F /* PBXTargetDependency */,
);
name = tinyHTTP;
productName = tinyHTTP;
productReference = ECF0D6DA118CC042001A3D6F /* libtinyHTTP.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECF0D6E0118CC053001A3D6F /* tinySDP */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECF0DE56118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinySDP" */;
buildPhases = (
ECF0D6DD118CC053001A3D6F /* Headers */,
ECF0D6DE118CC053001A3D6F /* Sources */,
ECF0D6DF118CC053001A3D6F /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECF0E10B118CC68F001A3D6F /* PBXTargetDependency */,
);
name = tinySDP;
productName = tinySDP;
productReference = ECF0D6E1118CC053001A3D6F /* libtinySDP.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECF0D6E7118CC060001A3D6F /* tinyMEDIA */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECF0DE57118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinyMEDIA" */;
buildPhases = (
ECF0D6E4118CC060001A3D6F /* Headers */,
ECF0D6E5118CC060001A3D6F /* Sources */,
ECF0D6E6118CC060001A3D6F /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = tinyMEDIA;
productName = tinyMEDIA;
productReference = ECF0D6E8118CC060001A3D6F /* libtinyMEDIA.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECF0D6EE118CC06F001A3D6F /* tinySIP */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECF0DE58118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinySIP" */;
buildPhases = (
ECF0D6EB118CC06F001A3D6F /* Headers */,
ECF0D6EC118CC06F001A3D6F /* Sources */,
ECF0D6ED118CC06F001A3D6F /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECF0E3CE118CCBE0001A3D6F /* PBXTargetDependency */,
ECF0E3D0118CCBE0001A3D6F /* PBXTargetDependency */,
ECF0E3D2118CCBE0001A3D6F /* PBXTargetDependency */,
ECF0E3D4118CCBE0001A3D6F /* PBXTargetDependency */,
);
name = tinySIP;
productName = tinySIP;
productReference = ECF0D6EF118CC06F001A3D6F /* libtinySIP.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECF0DF58118CC238001A3D6F /* tinySMS */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECF0DF5F118CC264001A3D6F /* Build configuration list for PBXNativeTarget "tinySMS" */;
buildPhases = (
ECF0DF55118CC238001A3D6F /* Headers */,
ECF0DF56118CC238001A3D6F /* Sources */,
ECF0DF57118CC238001A3D6F /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECF0DF5D118CC241001A3D6F /* PBXTargetDependency */,
);
name = tinySMS;
productName = tinySMS;
productReference = ECF0DF59118CC238001A3D6F /* libtinySMS.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECF0E053118CC592001A3D6F /* tinyIPSec */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECF0E081118CC5B7001A3D6F /* Build configuration list for PBXNativeTarget "tinyIPSec" */;
buildPhases = (
ECF0E050118CC592001A3D6F /* Headers */,
ECF0E051118CC592001A3D6F /* Sources */,
ECF0E052118CC592001A3D6F /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECF0E058118CC59B001A3D6F /* PBXTargetDependency */,
);
name = tinyIPSec;
productName = tinyIPSec;
productReference = ECF0E054118CC592001A3D6F /* libtinyIPSec.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
08FB7793FE84155DC02AAC07 /* Project object */ = {
isa = PBXProject;
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "tinyDEMO" */;
compatibilityVersion = "Xcode 3.1";
hasScannedForEncodings = 1;
mainGroup = 08FB7794FE84155DC02AAC07 /* tinyDEMO */;
projectDirPath = "";
projectRoot = "";
targets = (
8DD76FA90486AB0100D96B5E /* tinyDEMO */,
ECF0D6CB118CC01D001A3D6F /* tinySAK */,
ECF0D6D2118CC02E001A3D6F /* tinyNET */,
ECF0D6D9118CC042001A3D6F /* tinyHTTP */,
ECF0D6E0118CC053001A3D6F /* tinySDP */,
ECF0D6E7118CC060001A3D6F /* tinyMEDIA */,
ECF0D6EE118CC06F001A3D6F /* tinySIP */,
ECF0DF58118CC238001A3D6F /* tinySMS */,
ECF0E053118CC592001A3D6F /* tinyIPSec */,
);
};
/* End PBXProject section */
/* Begin PBXSourcesBuildPhase section */
8DD76FAB0486AB0100D96B5E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E3F9118CCC26001A3D6F /* cmd.c in Sources */,
ECF0E3FA118CCC26001A3D6F /* common.c in Sources */,
ECF0E3FB118CCC26001A3D6F /* dssl.c in Sources */,
ECF0E3FC118CCC26001A3D6F /* invite.c in Sources */,
ECF0E3FD118CCC26001A3D6F /* main.c in Sources */,
ECF0E3FE118CCC26001A3D6F /* message.c in Sources */,
ECF0E3FF118CCC26001A3D6F /* publish.c in Sources */,
ECF0E400118CCC26001A3D6F /* register.c in Sources */,
ECF0E401118CCC26001A3D6F /* subscribe.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6C9118CC01D001A3D6F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0DBAF118CC094001A3D6F /* tsk.c in Sources */,
ECF0DBB1118CC094001A3D6F /* tsk_base64.c in Sources */,
ECF0DBB3118CC094001A3D6F /* tsk_binaryutils.c in Sources */,
ECF0DBB5118CC094001A3D6F /* tsk_buffer.c in Sources */,
ECF0DBB8118CC094001A3D6F /* tsk_condwait.c in Sources */,
ECF0DBBA118CC094001A3D6F /* tsk_debug.c in Sources */,
ECF0DBBD118CC094001A3D6F /* tsk_fsm.c in Sources */,
ECF0DBBF118CC094001A3D6F /* tsk_hmac.c in Sources */,
ECF0DBC1118CC094001A3D6F /* tsk_list.c in Sources */,
ECF0DBC3118CC094001A3D6F /* tsk_md5.c in Sources */,
ECF0DBC5118CC094001A3D6F /* tsk_memory.c in Sources */,
ECF0DBC7118CC094001A3D6F /* tsk_mutex.c in Sources */,
ECF0DBC9118CC094001A3D6F /* tsk_object.c in Sources */,
ECF0DBCB118CC094001A3D6F /* tsk_options.c in Sources */,
ECF0DBCD118CC094001A3D6F /* tsk_params.c in Sources */,
ECF0DBCF118CC094001A3D6F /* tsk_ppfcs16.c in Sources */,
ECF0DBD1118CC094001A3D6F /* tsk_ppfcs32.c in Sources */,
ECF0DBD3118CC094001A3D6F /* tsk_ragel_state.c in Sources */,
ECF0DBD5118CC094001A3D6F /* tsk_runnable.c in Sources */,
ECF0DBD7118CC094001A3D6F /* tsk_safeobj.c in Sources */,
ECF0DBD9118CC094001A3D6F /* tsk_semaphore.c in Sources */,
ECF0DBDB118CC094001A3D6F /* tsk_sha1.c in Sources */,
ECF0DBDD118CC094001A3D6F /* tsk_string.c in Sources */,
ECF0DBDF118CC094001A3D6F /* tsk_thread.c in Sources */,
ECF0DBE1118CC094001A3D6F /* tsk_time.c in Sources */,
ECF0DBE3118CC094001A3D6F /* tsk_timer.c in Sources */,
ECF0DBE5118CC094001A3D6F /* tsk_url.c in Sources */,
ECF0DBE7118CC094001A3D6F /* tsk_uuid.c in Sources */,
ECF0DBE9118CC094001A3D6F /* tsk_xml.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6D0118CC02E001A3D6F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0DEE3118CC19E001A3D6F /* tnet_dhcp.c in Sources */,
ECF0DEE5118CC19E001A3D6F /* tnet_dhcp_message.c in Sources */,
ECF0DEE7118CC19E001A3D6F /* tnet_dhcp_option.c in Sources */,
ECF0DEE9118CC19E001A3D6F /* tnet_dhcp_option_sip.c in Sources */,
ECF0DEEB118CC19E001A3D6F /* tnet_dhcp6.c in Sources */,
ECF0DEED118CC19E001A3D6F /* tnet_dhcp6_duid.c in Sources */,
ECF0DEEF118CC19E001A3D6F /* tnet_dhcp6_message.c in Sources */,
ECF0DEF1118CC19E001A3D6F /* tnet_dhcp6_option.c in Sources */,
ECF0DEF3118CC19E001A3D6F /* tnet_dns.c in Sources */,
ECF0DEF5118CC19E001A3D6F /* tnet_dns_a.c in Sources */,
ECF0DEF7118CC19E001A3D6F /* tnet_dns_aaaa.c in Sources */,
ECF0DEF9118CC19E001A3D6F /* tnet_dns_cname.c in Sources */,
ECF0DEFB118CC19E001A3D6F /* tnet_dns_message.c in Sources */,
ECF0DEFD118CC19E001A3D6F /* tnet_dns_mx.c in Sources */,
ECF0DEFF118CC19E001A3D6F /* tnet_dns_naptr.c in Sources */,
ECF0DF01118CC19E001A3D6F /* tnet_dns_ns.c in Sources */,
ECF0DF03118CC19E001A3D6F /* tnet_dns_opt.c in Sources */,
ECF0DF05118CC19E001A3D6F /* tnet_dns_ptr.c in Sources */,
ECF0DF07118CC19E001A3D6F /* tnet_dns_regexp.c in Sources */,
ECF0DF09118CC19E001A3D6F /* tnet_dns_resolvconf.c in Sources */,
ECF0DF0B118CC19E001A3D6F /* tnet_dns_rr.c in Sources */,
ECF0DF0D118CC19E001A3D6F /* tnet_dns_soa.c in Sources */,
ECF0DF0F118CC19E001A3D6F /* tnet_dns_srv.c in Sources */,
ECF0DF11118CC19E001A3D6F /* tnet_dns_txt.c in Sources */,
ECF0DF13118CC19E001A3D6F /* tnet_ice.c in Sources */,
ECF0DF15118CC19E001A3D6F /* tnet_stun.c in Sources */,
ECF0DF17118CC19E001A3D6F /* tnet_stun_attribute.c in Sources */,
ECF0DF19118CC19E001A3D6F /* tnet_stun_message.c in Sources */,
ECF0DF1D118CC19E001A3D6F /* tnet_tls.c in Sources */,
ECF0DF1F118CC19E001A3D6F /* tnet.c in Sources */,
ECF0DF21118CC19E001A3D6F /* tnet_auth.c in Sources */,
ECF0DF23118CC19E001A3D6F /* tnet_endianness.c in Sources */,
ECF0DF26118CC19E001A3D6F /* tnet_nat.c in Sources */,
ECF0DF28118CC19E001A3D6F /* tnet_poll.c in Sources */,
ECF0DF2B118CC19E001A3D6F /* tnet_socket.c in Sources */,
ECF0DF2D118CC19E001A3D6F /* tnet_transport.c in Sources */,
ECF0DF2F118CC19E001A3D6F /* tnet_transport_poll.c in Sources */,
ECF0DF30118CC19E001A3D6F /* tnet_transport_win32.c in Sources */,
ECF0DF32118CC19E001A3D6F /* tnet_utils.c in Sources */,
ECF0DF34118CC19E001A3D6F /* tnet_turn.c in Sources */,
ECF0DF36118CC19E001A3D6F /* tnet_turn_attribute.c in Sources */,
ECF0DF38118CC19E001A3D6F /* tnet_turn_message.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6D7118CC042001A3D6F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E02A118CC4B6001A3D6F /* thttp_auth.c in Sources */,
ECF0E02B118CC4B6001A3D6F /* thttp_challenge.c in Sources */,
ECF0E02C118CC4B6001A3D6F /* thttp_header.c in Sources */,
ECF0E02D118CC4B6001A3D6F /* thttp_header_Authorization.c in Sources */,
ECF0E02E118CC4B6001A3D6F /* thttp_header_Content_Length.c in Sources */,
ECF0E02F118CC4B6001A3D6F /* thttp_header_Content_Type.c in Sources */,
ECF0E030118CC4B6001A3D6F /* thttp_header_Dummy.c in Sources */,
ECF0E031118CC4B6001A3D6F /* thttp_header_ETag.c in Sources */,
ECF0E032118CC4B6001A3D6F /* thttp_header_Transfer_Encoding.c in Sources */,
ECF0E033118CC4B6001A3D6F /* thttp_header_WWW_Authenticate.c in Sources */,
ECF0E035118CC4B6001A3D6F /* thttp_parser_header.c in Sources */,
ECF0E036118CC4B6001A3D6F /* thttp_parser_message.c in Sources */,
ECF0E037118CC4B6001A3D6F /* thttp_parser_url.c in Sources */,
ECF0E038118CC4B6001A3D6F /* thttp.c in Sources */,
ECF0E039118CC4B6001A3D6F /* thttp_action.c in Sources */,
ECF0E03A118CC4B6001A3D6F /* thttp_dialog.c in Sources */,
ECF0E03B118CC4B6001A3D6F /* thttp_event.c in Sources */,
ECF0E03C118CC4B6001A3D6F /* thttp_message.c in Sources */,
ECF0E03D118CC4B6001A3D6F /* thttp_session.c in Sources */,
ECF0E03E118CC4B6001A3D6F /* thttp_url.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6DE118CC053001A3D6F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E0F0118CC667001A3D6F /* tsdp_header.c in Sources */,
ECF0E0F1118CC667001A3D6F /* tsdp_header_A.c in Sources */,
ECF0E0F2118CC667001A3D6F /* tsdp_header_B.c in Sources */,
ECF0E0F3118CC667001A3D6F /* tsdp_header_C.c in Sources */,
ECF0E0F4118CC667001A3D6F /* tsdp_header_Dummy.c in Sources */,
ECF0E0F5118CC667001A3D6F /* tsdp_header_E.c in Sources */,
ECF0E0F6118CC667001A3D6F /* tsdp_header_I.c in Sources */,
ECF0E0F7118CC667001A3D6F /* tsdp_header_K.c in Sources */,
ECF0E0F8118CC667001A3D6F /* tsdp_header_M.c in Sources */,
ECF0E0F9118CC667001A3D6F /* tsdp_header_O.c in Sources */,
ECF0E0FA118CC667001A3D6F /* tsdp_header_P.c in Sources */,
ECF0E0FB118CC667001A3D6F /* tsdp_header_R.c in Sources */,
ECF0E0FC118CC667001A3D6F /* tsdp_header_S.c in Sources */,
ECF0E0FD118CC667001A3D6F /* tsdp_header_T.c in Sources */,
ECF0E0FE118CC667001A3D6F /* tsdp_header_U.c in Sources */,
ECF0E0FF118CC667001A3D6F /* tsdp_header_V.c in Sources */,
ECF0E100118CC667001A3D6F /* tsdp_header_Z.c in Sources */,
ECF0E101118CC667001A3D6F /* tsdp_parser_message.c in Sources */,
ECF0E102118CC667001A3D6F /* tsdp.c in Sources */,
ECF0E103118CC667001A3D6F /* tsdp_message.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6E5118CC060001A3D6F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0D6EC118CC06F001A3D6F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E33B118CC6C7001A3D6F /* tsip_api_invite.c in Sources */,
ECF0E33C118CC6C7001A3D6F /* tsip_api_message.c in Sources */,
ECF0E33D118CC6C7001A3D6F /* tsip_api_publish.c in Sources */,
ECF0E33E118CC6C7001A3D6F /* tsip_api_register.c in Sources */,
ECF0E33F118CC6C7001A3D6F /* tsip_api_subscribe.c in Sources */,
ECF0E340118CC6C7001A3D6F /* tsip_challenge.c in Sources */,
ECF0E341118CC6C7001A3D6F /* tsip_milenage.c in Sources */,
ECF0E342118CC6C7001A3D6F /* tsip_rijndael.c in Sources */,
ECF0E343118CC6C7001A3D6F /* tsip_dialog.c in Sources */,
ECF0E344118CC6C7001A3D6F /* tsip_dialog_invite.c in Sources */,
ECF0E345118CC6C7001A3D6F /* tsip_dialog_invite.client.c in Sources */,
ECF0E346118CC6C7001A3D6F /* tsip_dialog_invite.server.c in Sources */,
ECF0E347118CC6C7001A3D6F /* tsip_dialog_layer.c in Sources */,
ECF0E348118CC6C7001A3D6F /* tsip_dialog_message.c in Sources */,
ECF0E349118CC6C7001A3D6F /* tsip_dialog_publish.client.c in Sources */,
ECF0E34A118CC6C7001A3D6F /* tsip_dialog_register.client.c in Sources */,
ECF0E34B118CC6C7001A3D6F /* tsip_dialog_register.server.c in Sources */,
ECF0E34C118CC6C7001A3D6F /* tsip_dialog_subscribe.client.c in Sources */,
ECF0E34D118CC6C7001A3D6F /* tsip_dialog_subscribe.server.c in Sources */,
ECF0E34E118CC6C7001A3D6F /* tsip_header.c in Sources */,
ECF0E34F118CC6C7001A3D6F /* tsip_header_accept.c in Sources */,
ECF0E350118CC6C7001A3D6F /* tsip_header_Accept_Contact.c in Sources */,
ECF0E351118CC6C7001A3D6F /* tsip_header_Accept_Encoding.c in Sources */,
ECF0E352118CC6C7001A3D6F /* tsip_header_Accept_Language.c in Sources */,
ECF0E353118CC6C7001A3D6F /* tsip_header_Accept_Resource_Priority.c in Sources */,
ECF0E354118CC6C7001A3D6F /* tsip_header_Alert_Info.c in Sources */,
ECF0E355118CC6C7001A3D6F /* tsip_header_Allow.c in Sources */,
ECF0E356118CC6C7001A3D6F /* tsip_header_Allow_Events.c in Sources */,
ECF0E357118CC6C7001A3D6F /* tsip_header_Authentication_Info.c in Sources */,
ECF0E358118CC6C7001A3D6F /* tsip_header_Authorization.c in Sources */,
ECF0E359118CC6C7001A3D6F /* tsip_header_Call_ID.c in Sources */,
ECF0E35A118CC6C7001A3D6F /* tsip_header_Call_Info.c in Sources */,
ECF0E35B118CC6C7001A3D6F /* tsip_header_Contact.c in Sources */,
ECF0E35C118CC6C7001A3D6F /* tsip_header_Content_Disposition.c in Sources */,
ECF0E35D118CC6C7001A3D6F /* tsip_header_Content_Encoding.c in Sources */,
ECF0E35E118CC6C7001A3D6F /* tsip_header_Content_Language.c in Sources */,
ECF0E35F118CC6C7001A3D6F /* tsip_header_Content_Length.c in Sources */,
ECF0E360118CC6C7001A3D6F /* tsip_header_Content_Type.c in Sources */,
ECF0E361118CC6C7001A3D6F /* tsip_header_CSeq.c in Sources */,
ECF0E362118CC6C7001A3D6F /* tsip_header_Date.c in Sources */,
ECF0E363118CC6C7001A3D6F /* tsip_header_Dummy.c in Sources */,
ECF0E364118CC6C7001A3D6F /* tsip_header_Error_Info.c in Sources */,
ECF0E365118CC6C7001A3D6F /* tsip_header_Event.c in Sources */,
ECF0E366118CC6C7001A3D6F /* tsip_header_Expires.c in Sources */,
ECF0E367118CC6C7001A3D6F /* tsip_header_From.c in Sources */,
ECF0E368118CC6C7001A3D6F /* tsip_header_History_Info.c in Sources */,
ECF0E369118CC6C7001A3D6F /* tsip_header_Identity.c in Sources */,
ECF0E36A118CC6C7001A3D6F /* tsip_header_Identity_Info.c in Sources */,
ECF0E36B118CC6C7001A3D6F /* tsip_header_In_Reply_To.c in Sources */,
ECF0E36C118CC6C7001A3D6F /* tsip_header_Join.c in Sources */,
ECF0E36D118CC6C7001A3D6F /* tsip_header_Max_Forwards.c in Sources */,
ECF0E36E118CC6C7001A3D6F /* tsip_header_MIME_Version.c in Sources */,
ECF0E36F118CC6C7001A3D6F /* tsip_header_Min_Expires.c in Sources */,
ECF0E370118CC6C7001A3D6F /* tsip_header_Min_SE.c in Sources */,
ECF0E371118CC6C7001A3D6F /* tsip_header_Organization.c in Sources */,
ECF0E372118CC6C7001A3D6F /* tsip_header_P_Access_Network_Info.c in Sources */,
ECF0E373118CC6C7001A3D6F /* tsip_header_P_Answer_State.c in Sources */,
ECF0E374118CC6C7001A3D6F /* tsip_header_P_Asserted_Identity.c in Sources */,
ECF0E375118CC6C7001A3D6F /* tsip_header_P_Associated_URI.c in Sources */,
ECF0E376118CC6C7001A3D6F /* tsip_header_P_Called_Party_ID.c in Sources */,
ECF0E377118CC6C7001A3D6F /* tsip_header_P_Charging_Function_Addresses.c in Sources */,
ECF0E378118CC6C7001A3D6F /* tsip_header_P_Charging_Vector.c in Sources */,
ECF0E379118CC6C7001A3D6F /* tsip_header_P_DCS_Billing_Info.c in Sources */,
ECF0E37A118CC6C7001A3D6F /* tsip_header_P_DCS_LAES.c in Sources */,
ECF0E37B118CC6C7001A3D6F /* tsip_header_P_DCS_OSPS.c in Sources */,
ECF0E37C118CC6C7001A3D6F /* tsip_header_P_DCS_Redirect.c in Sources */,
ECF0E37D118CC6C7001A3D6F /* tsip_header_P_DCS_Trace_Party_ID.c in Sources */,
ECF0E37E118CC6C7001A3D6F /* tsip_header_P_Early_Media.c in Sources */,
ECF0E37F118CC6C7001A3D6F /* tsip_header_P_Media_Authorization.c in Sources */,
ECF0E380118CC6C7001A3D6F /* tsip_header_P_Preferred_Identity.c in Sources */,
ECF0E381118CC6C7001A3D6F /* tsip_header_P_Profile_Key.c in Sources */,
ECF0E382118CC6C7001A3D6F /* tsip_header_P_User_Database.c in Sources */,
ECF0E383118CC6C7001A3D6F /* tsip_header_P_Visited_Network_ID.c in Sources */,
ECF0E384118CC6C7001A3D6F /* tsip_header_Path.c in Sources */,
ECF0E385118CC6C7001A3D6F /* tsip_header_Priority.c in Sources */,
ECF0E386118CC6C7001A3D6F /* tsip_header_Privacy.c in Sources */,
ECF0E387118CC6C7001A3D6F /* tsip_header_Proxy_Authenticate.c in Sources */,
ECF0E388118CC6C7001A3D6F /* tsip_header_Proxy_Authorization.c in Sources */,
ECF0E389118CC6C7001A3D6F /* tsip_header_Proxy_Require.c in Sources */,
ECF0E38A118CC6C7001A3D6F /* tsip_header_RAck.c in Sources */,
ECF0E38B118CC6C7001A3D6F /* tsip_header_Reason.c in Sources */,
ECF0E38C118CC6C7001A3D6F /* tsip_header_Record_Route.c in Sources */,
ECF0E38D118CC6C7001A3D6F /* tsip_header_Refer_Sub.c in Sources */,
ECF0E38E118CC6C7001A3D6F /* tsip_header_Refer_To.c in Sources */,
ECF0E38F118CC6C7001A3D6F /* tsip_header_Referred_By.c in Sources */,
ECF0E390118CC6C7001A3D6F /* tsip_header_Reject_Contact.c in Sources */,
ECF0E391118CC6C7001A3D6F /* tsip_header_Replaces.c in Sources */,
ECF0E392118CC6C7001A3D6F /* tsip_header_Reply_To.c in Sources */,
ECF0E393118CC6C7001A3D6F /* tsip_header_Request_Disposition.c in Sources */,
ECF0E394118CC6C7001A3D6F /* tsip_header_Require.c in Sources */,
ECF0E395118CC6C7001A3D6F /* tsip_header_Resource_Priority.c in Sources */,
ECF0E396118CC6C7001A3D6F /* tsip_header_Retry_After.c in Sources */,
ECF0E397118CC6C7001A3D6F /* tsip_header_Route.c in Sources */,
ECF0E398118CC6C7001A3D6F /* tsip_header_RSeq.c in Sources */,
ECF0E399118CC6C7001A3D6F /* tsip_header_Security_Client.c in Sources */,
ECF0E39A118CC6C7001A3D6F /* tsip_header_Security_Server.c in Sources */,
ECF0E39B118CC6C7001A3D6F /* tsip_header_Security_Verify.c in Sources */,
ECF0E39C118CC6C7001A3D6F /* tsip_header_Server.c in Sources */,
ECF0E39D118CC6C7001A3D6F /* tsip_header_Service_Route.c in Sources */,
ECF0E39E118CC6C7001A3D6F /* tsip_header_Session_Expires.c in Sources */,
ECF0E39F118CC6C7001A3D6F /* tsip_header_SIP_ETag.c in Sources */,
ECF0E3A0118CC6C7001A3D6F /* tsip_header_SIP_If_Match.c in Sources */,
ECF0E3A1118CC6C7001A3D6F /* tsip_header_Subject.c in Sources */,
ECF0E3A2118CC6C7001A3D6F /* tsip_header_Subscription_State.c in Sources */,
ECF0E3A3118CC6C7001A3D6F /* tsip_header_Supported.c in Sources */,
ECF0E3A4118CC6C7001A3D6F /* tsip_header_Target_Dialog.c in Sources */,
ECF0E3A5118CC6C7001A3D6F /* tsip_header_Timestamp.c in Sources */,
ECF0E3A6118CC6C7001A3D6F /* tsip_header_To.c in Sources */,
ECF0E3A7118CC6C7001A3D6F /* tsip_header_Unsupported.c in Sources */,
ECF0E3A8118CC6C7001A3D6F /* tsip_header_User_Agent.c in Sources */,
ECF0E3A9118CC6C7001A3D6F /* tsip_header_Via.c in Sources */,
ECF0E3AA118CC6C7001A3D6F /* tsip_header_Warning.c in Sources */,
ECF0E3AB118CC6C7001A3D6F /* tsip_header_WWW_Authenticate.c in Sources */,
ECF0E3AC118CC6C7001A3D6F /* tsip_msession.c in Sources */,
ECF0E3AD118CC6C7001A3D6F /* tsip_parser_header.c in Sources */,
ECF0E3AE118CC6C7001A3D6F /* tsip_parser_message.c in Sources */,
ECF0E3AF118CC6C7001A3D6F /* tsip_parser_uri.c in Sources */,
ECF0E3B0118CC6C7001A3D6F /* tsip_transac.c in Sources */,
ECF0E3B1118CC6C7001A3D6F /* tsip_transac_ict.c in Sources */,
ECF0E3B2118CC6C7001A3D6F /* tsip_transac_ist.c in Sources */,
ECF0E3B3118CC6C7001A3D6F /* tsip_transac_layer.c in Sources */,
ECF0E3B4118CC6C7001A3D6F /* tsip_transac_nict.c in Sources */,
ECF0E3B5118CC6C7001A3D6F /* tsip_transac_nist.c in Sources */,
ECF0E3B6118CC6C7001A3D6F /* tsip_transport.c in Sources */,
ECF0E3B7118CC6C7001A3D6F /* tsip_transport_ipsec.c in Sources */,
ECF0E3B8118CC6C7001A3D6F /* tsip_transport_layer.c in Sources */,
ECF0E3B9118CC6C7001A3D6F /* tsip_transport_tls.c in Sources */,
ECF0E3BA118CC6C7001A3D6F /* tsip.c in Sources */,
ECF0E3BB118CC6C7001A3D6F /* tsip_action.c in Sources */,
ECF0E3BC118CC6C7001A3D6F /* tsip_event.c in Sources */,
ECF0E3BD118CC6C7001A3D6F /* tsip_message.c in Sources */,
ECF0E3BE118CC6C7001A3D6F /* tsip_ssession.c in Sources */,
ECF0E3BF118CC6C7001A3D6F /* tsip_timers.c in Sources */,
ECF0E3C0118CC6C7001A3D6F /* tsip_uri.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0DF56118CC238001A3D6F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0DFA0118CC270001A3D6F /* tsms_rpdu.c in Sources */,
ECF0DFA1118CC270001A3D6F /* tsms_tpdu_command.c in Sources */,
ECF0DFA2118CC270001A3D6F /* tsms_tpdu_deliver.c in Sources */,
ECF0DFA3118CC270001A3D6F /* tsms_tpdu_report.c in Sources */,
ECF0DFA4118CC270001A3D6F /* tsms_tpdu_status_report.c in Sources */,
ECF0DFA5118CC270001A3D6F /* tsms_tpdu_submit.c in Sources */,
ECF0DFA6118CC270001A3D6F /* tsms.c in Sources */,
ECF0DFA7118CC270001A3D6F /* tsms_address.c in Sources */,
ECF0DFA8118CC270001A3D6F /* tsms_common.c in Sources */,
ECF0DFA9118CC270001A3D6F /* tsms_packing.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF0E051118CC592001A3D6F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECF0E074118CC5B6001A3D6F /* tipsec.c in Sources */,
ECF0E076118CC5B6001A3D6F /* tipsec_common.c in Sources */,
ECF0E078118CC5B6001A3D6F /* tipsec_racoon.c in Sources */,
ECF0E07A118CC5B6001A3D6F /* tipsec_vista.c in Sources */,
ECF0E07C118CC5B6001A3D6F /* tipsec_xp.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
ECF0DF4B118CC1F7001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6CB118CC01D001A3D6F /* tinySAK */;
targetProxy = ECF0DF4A118CC1F7001A3D6F /* PBXContainerItemProxy */;
};
ECF0DF5D118CC241001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6CB118CC01D001A3D6F /* tinySAK */;
targetProxy = ECF0DF5C118CC241001A3D6F /* PBXContainerItemProxy */;
};
ECF0E049118CC52B001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6CB118CC01D001A3D6F /* tinySAK */;
targetProxy = ECF0E048118CC52B001A3D6F /* PBXContainerItemProxy */;
};
ECF0E04B118CC52B001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6D2118CC02E001A3D6F /* tinyNET */;
targetProxy = ECF0E04A118CC52B001A3D6F /* PBXContainerItemProxy */;
};
ECF0E058118CC59B001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6CB118CC01D001A3D6F /* tinySAK */;
targetProxy = ECF0E057118CC59B001A3D6F /* PBXContainerItemProxy */;
};
ECF0E10B118CC68F001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6CB118CC01D001A3D6F /* tinySAK */;
targetProxy = ECF0E10A118CC68F001A3D6F /* PBXContainerItemProxy */;
};
ECF0E3CE118CCBE0001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6CB118CC01D001A3D6F /* tinySAK */;
targetProxy = ECF0E3CD118CCBE0001A3D6F /* PBXContainerItemProxy */;
};
ECF0E3D0118CCBE0001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6D2118CC02E001A3D6F /* tinyNET */;
targetProxy = ECF0E3CF118CCBE0001A3D6F /* PBXContainerItemProxy */;
};
ECF0E3D2118CCBE0001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6D9118CC042001A3D6F /* tinyHTTP */;
targetProxy = ECF0E3D1118CCBE0001A3D6F /* PBXContainerItemProxy */;
};
ECF0E3D4118CCBE0001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0E053118CC592001A3D6F /* tinyIPSec */;
targetProxy = ECF0E3D3118CCBE0001A3D6F /* PBXContainerItemProxy */;
};
ECF0E403118CCCB5001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6CB118CC01D001A3D6F /* tinySAK */;
targetProxy = ECF0E402118CCCB5001A3D6F /* PBXContainerItemProxy */;
};
ECF0E405118CCCB5001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6EE118CC06F001A3D6F /* tinySIP */;
targetProxy = ECF0E404118CCCB5001A3D6F /* PBXContainerItemProxy */;
};
ECF0E407118CCCB5001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0DF58118CC238001A3D6F /* tinySMS */;
targetProxy = ECF0E406118CCCB5001A3D6F /* PBXContainerItemProxy */;
};
ECF0E40E118CCCFF001A3D6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF0D6D2118CC02E001A3D6F /* tinyNET */;
targetProxy = ECF0E40D118CCCFF001A3D6F /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
1DEB928608733DD80010E9CD /* 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/tinyDEMO,
../../../doubango/tinySAK/src,
../../../doubango/tinyNET/src,
../../../doubango/tinySIP/include,
../../../doubango/tinySMS/include,
);
INSTALL_PATH = /usr/local/bin;
OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
PRODUCT_NAME = tinyDEMO;
};
name = Debug;
};
1DEB928708733DD80010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_MODEL_TUNING = G5;
INSTALL_PATH = /usr/local/bin;
PRODUCT_NAME = tinyDEMO;
};
name = Release;
};
1DEB928A08733DD80010E9CD /* 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;
ONLY_ACTIVE_ARCH = YES;
PREBINDING = NO;
SDKROOT = macosx10.5;
};
name = Debug;
};
1DEB928B08733DD80010E9CD /* 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;
};
ECF0D6CD118CC01D001A3D6F /* 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;
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/../../tinySAK/Debug\"",
);
OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
PREBINDING = NO;
PRODUCT_NAME = tinySAK;
};
name = Debug;
};
ECF0D6CE118CC01D001A3D6F /* 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;
};
ECF0D6D4118CC02E001A3D6F /* 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;
OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
PREBINDING = NO;
PRODUCT_NAME = tinyNET;
};
name = Debug;
};
ECF0D6D5118CC02E001A3D6F /* 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;
};
ECF0D6DB118CC042001A3D6F /* 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/tinyHTTP/include;
INSTALL_PATH = /usr/local/lib;
OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
PREBINDING = NO;
PRODUCT_NAME = tinyHTTP;
};
name = Debug;
};
ECF0D6DC118CC042001A3D6F /* 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;
};
ECF0D6E2118CC054001A3D6F /* 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 = tinySDP;
};
name = Debug;
};
ECF0D6E3118CC054001A3D6F /* 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 = tinySDP;
ZERO_LINK = NO;
};
name = Release;
};
ECF0D6E9118CC060001A3D6F /* 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 = tinyMEDIA;
};
name = Debug;
};
ECF0D6EA118CC060001A3D6F /* 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 = tinyMEDIA;
ZERO_LINK = NO;
};
name = Release;
};
ECF0D6F0118CC06F001A3D6F /* 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";
PREBINDING = NO;
PRODUCT_NAME = tinySIP;
};
name = Debug;
};
ECF0D6F1118CC06F001A3D6F /* 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 = tinySIP;
ZERO_LINK = NO;
};
name = Release;
};
ECF0DF5A118CC238001A3D6F /* 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/tinySMS/include,
../../../doubango/tinySAK/src,
);
INSTALL_PATH = /usr/local/lib;
OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
PREBINDING = NO;
PRODUCT_NAME = tinySMS;
};
name = Debug;
};
ECF0DF5B118CC238001A3D6F /* 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 = tinySMS;
ZERO_LINK = NO;
};
name = Release;
};
ECF0E055118CC592001A3D6F /* 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 = tinyIPSec;
};
name = Debug;
};
ECF0E056118CC592001A3D6F /* 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 */
1DEB928508733DD80010E9CD /* Build configuration list for PBXNativeTarget "tinyDEMO" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB928608733DD80010E9CD /* Debug */,
1DEB928708733DD80010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "tinyDEMO" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB928A08733DD80010E9CD /* Debug */,
1DEB928B08733DD80010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECF0DE53118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinySAK" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECF0D6CD118CC01D001A3D6F /* Debug */,
ECF0D6CE118CC01D001A3D6F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECF0DE54118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinyNET" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECF0D6D4118CC02E001A3D6F /* Debug */,
ECF0D6D5118CC02E001A3D6F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECF0DE55118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinyHTTP" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECF0D6DB118CC042001A3D6F /* Debug */,
ECF0D6DC118CC042001A3D6F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECF0DE56118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinySDP" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECF0D6E2118CC054001A3D6F /* Debug */,
ECF0D6E3118CC054001A3D6F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECF0DE57118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinyMEDIA" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECF0D6E9118CC060001A3D6F /* Debug */,
ECF0D6EA118CC060001A3D6F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECF0DE58118CC094001A3D6F /* Build configuration list for PBXNativeTarget "tinySIP" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECF0D6F0118CC06F001A3D6F /* Debug */,
ECF0D6F1118CC06F001A3D6F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECF0DF5F118CC264001A3D6F /* Build configuration list for PBXNativeTarget "tinySMS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECF0DF5A118CC238001A3D6F /* Debug */,
ECF0DF5B118CC238001A3D6F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECF0E081118CC5B7001A3D6F /* Build configuration list for PBXNativeTarget "tinyIPSec" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECF0E055118CC592001A3D6F /* Debug */,
ECF0E056118CC592001A3D6F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
}
|