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
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 45;
objects = {
/* Begin PBXBuildFile section */
ECE40753117CE04B00A43CEB /* tnet_endianness.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40751117CE04B00A43CEB /* tnet_endianness.c */; };
ECE40754117CE04B00A43CEB /* tnet_endianness.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40752117CE04B00A43CEB /* tnet_endianness.h */; };
ECE40759117CE09C00A43CEB /* tnet_dns_regexp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40755117CE09C00A43CEB /* tnet_dns_regexp.c */; };
ECE4075A117CE09C00A43CEB /* tnet_dns_regexp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40756117CE09C00A43CEB /* tnet_dns_regexp.h */; };
ECE4075B117CE09C00A43CEB /* tnet_dns_resolvconf.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40757117CE09C00A43CEB /* tnet_dns_resolvconf.c */; };
ECE4075C117CE09C00A43CEB /* tnet_dns_resolvconf.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40758117CE09C00A43CEB /* tnet_dns_resolvconf.h */; };
ECE407AE117CE1FD00A43CEB /* thttp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40762117CE1FC00A43CEB /* thttp.h */; };
ECE407AF117CE1FD00A43CEB /* thttp_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40765117CE1FC00A43CEB /* thttp_auth.h */; };
ECE407B0117CE1FD00A43CEB /* thttp_challenge.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40766117CE1FC00A43CEB /* thttp_challenge.h */; };
ECE407B1117CE1FD00A43CEB /* thttp_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40768117CE1FC00A43CEB /* thttp_header.h */; };
ECE407B2117CE1FD00A43CEB /* thttp_header_Authorization.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40769117CE1FC00A43CEB /* thttp_header_Authorization.h */; };
ECE407B3117CE1FD00A43CEB /* thttp_header_Content_Length.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE4076A117CE1FD00A43CEB /* thttp_header_Content_Length.h */; };
ECE407B4117CE1FD00A43CEB /* thttp_header_Content_Type.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE4076B117CE1FD00A43CEB /* thttp_header_Content_Type.h */; };
ECE407B5117CE1FD00A43CEB /* thttp_header_Dummy.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE4076C117CE1FD00A43CEB /* thttp_header_Dummy.h */; };
ECE407B6117CE1FD00A43CEB /* thttp_header_ETag.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE4076D117CE1FD00A43CEB /* thttp_header_ETag.h */; };
ECE407B7117CE1FD00A43CEB /* thttp_header_Transfer_Encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE4076E117CE1FD00A43CEB /* thttp_header_Transfer_Encoding.h */; };
ECE407B8117CE1FD00A43CEB /* thttp_header_WWW_Authenticate.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE4076F117CE1FD00A43CEB /* thttp_header_WWW_Authenticate.h */; };
ECE407B9117CE1FD00A43CEB /* thttp_parser_header.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40771117CE1FD00A43CEB /* thttp_parser_header.h */; };
ECE407BA117CE1FD00A43CEB /* thttp_parser_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40772117CE1FD00A43CEB /* thttp_parser_message.h */; };
ECE407BB117CE1FD00A43CEB /* thttp_parser_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40773117CE1FD00A43CEB /* thttp_parser_url.h */; };
ECE407BC117CE1FD00A43CEB /* thttp_action.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40774117CE1FD00A43CEB /* thttp_action.h */; };
ECE407BD117CE1FD00A43CEB /* thttp_dialog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40775117CE1FD00A43CEB /* thttp_dialog.h */; };
ECE407BE117CE1FD00A43CEB /* thttp_event.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40776117CE1FD00A43CEB /* thttp_event.h */; };
ECE407BF117CE1FD00A43CEB /* thttp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40777117CE1FD00A43CEB /* thttp_message.h */; };
ECE407C0117CE1FD00A43CEB /* thttp_session.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40778117CE1FD00A43CEB /* thttp_session.h */; };
ECE407C1117CE1FD00A43CEB /* thttp_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE40779117CE1FD00A43CEB /* thttp_url.h */; };
ECE407C2117CE1FD00A43CEB /* tinyhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE4077A117CE1FD00A43CEB /* tinyhttp.h */; };
ECE407C3117CE1FD00A43CEB /* tinyhttp_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE4077B117CE1FD00A43CEB /* tinyhttp_config.h */; };
ECE407C4117CE1FD00A43CEB /* thttp_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE4078C117CE1FD00A43CEB /* thttp_auth.c */; };
ECE407C5117CE1FD00A43CEB /* thttp_challenge.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE4078D117CE1FD00A43CEB /* thttp_challenge.c */; };
ECE407C6117CE1FD00A43CEB /* thttp_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE4078F117CE1FD00A43CEB /* thttp_header.c */; };
ECE407C7117CE1FD00A43CEB /* thttp_header_Authorization.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40790117CE1FD00A43CEB /* thttp_header_Authorization.c */; };
ECE407C8117CE1FD00A43CEB /* thttp_header_Content_Length.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40791117CE1FD00A43CEB /* thttp_header_Content_Length.c */; };
ECE407C9117CE1FD00A43CEB /* thttp_header_Content_Type.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40792117CE1FD00A43CEB /* thttp_header_Content_Type.c */; };
ECE407CA117CE1FD00A43CEB /* thttp_header_Dummy.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40793117CE1FD00A43CEB /* thttp_header_Dummy.c */; };
ECE407CB117CE1FD00A43CEB /* thttp_header_ETag.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40794117CE1FD00A43CEB /* thttp_header_ETag.c */; };
ECE407CC117CE1FD00A43CEB /* thttp_header_Transfer_Encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40795117CE1FD00A43CEB /* thttp_header_Transfer_Encoding.c */; };
ECE407CD117CE1FD00A43CEB /* thttp_header_WWW_Authenticate.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40796117CE1FD00A43CEB /* thttp_header_WWW_Authenticate.c */; };
ECE407CF117CE1FD00A43CEB /* thttp_parser_header.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40799117CE1FD00A43CEB /* thttp_parser_header.c */; };
ECE407D0117CE1FD00A43CEB /* thttp_parser_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE4079A117CE1FD00A43CEB /* thttp_parser_message.c */; };
ECE407D1117CE1FD00A43CEB /* thttp_parser_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE4079B117CE1FD00A43CEB /* thttp_parser_url.c */; };
ECE407D2117CE1FD00A43CEB /* thttp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE4079C117CE1FD00A43CEB /* thttp.c */; };
ECE407D3117CE1FD00A43CEB /* thttp_action.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE4079D117CE1FD00A43CEB /* thttp_action.c */; };
ECE407D4117CE1FD00A43CEB /* thttp_dialog.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE4079E117CE1FD00A43CEB /* thttp_dialog.c */; };
ECE407D5117CE1FD00A43CEB /* thttp_event.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE4079F117CE1FD00A43CEB /* thttp_event.c */; };
ECE407D6117CE1FD00A43CEB /* thttp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE407A0117CE1FD00A43CEB /* thttp_message.c */; };
ECE407D7117CE1FD00A43CEB /* thttp_session.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE407A1117CE1FD00A43CEB /* thttp_session.c */; };
ECE407D8117CE1FD00A43CEB /* thttp_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE407A2117CE1FD00A43CEB /* thttp_url.c */; };
ECE407E8117CE27700A43CEB /* tsk_common.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE407E5117CE27700A43CEB /* tsk_common.h */; };
ECE407E9117CE27700A43CEB /* tsk_options.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE407E6117CE27700A43CEB /* tsk_options.c */; };
ECE407EA117CE27700A43CEB /* tsk_options.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE407E7117CE27700A43CEB /* tsk_options.h */; };
ECE4083A117CE48D00A43CEB /* stdafx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40832117CE48D00A43CEB /* stdafx.c */; };
ECE4083B117CE48D00A43CEB /* test.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE40835117CE48D00A43CEB /* test.c */; };
ECED61F610F98926006B4DC9 /* tinySAK_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61C110F98926006B4DC9 /* tinySAK_config.h */; };
ECED61F710F98926006B4DC9 /* tsk.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61C210F98926006B4DC9 /* tsk.c */; };
ECED61F810F98926006B4DC9 /* tsk.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61C310F98926006B4DC9 /* tsk.h */; };
ECED61F910F98926006B4DC9 /* tsk_base64.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61C410F98926006B4DC9 /* tsk_base64.c */; };
ECED61FA10F98926006B4DC9 /* tsk_base64.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61C510F98926006B4DC9 /* tsk_base64.h */; };
ECED61FB10F98926006B4DC9 /* tsk_binaryutils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61C610F98926006B4DC9 /* tsk_binaryutils.c */; };
ECED61FC10F98926006B4DC9 /* tsk_binaryutils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61C710F98926006B4DC9 /* tsk_binaryutils.h */; };
ECED61FD10F98926006B4DC9 /* tsk_buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61C810F98926006B4DC9 /* tsk_buffer.c */; };
ECED61FE10F98926006B4DC9 /* tsk_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61C910F98926006B4DC9 /* tsk_buffer.h */; };
ECED61FF10F98926006B4DC9 /* tsk_condwait.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61CA10F98926006B4DC9 /* tsk_condwait.c */; };
ECED620010F98926006B4DC9 /* tsk_condwait.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61CB10F98926006B4DC9 /* tsk_condwait.h */; };
ECED620110F98926006B4DC9 /* tsk_debug.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61CC10F98926006B4DC9 /* tsk_debug.c */; };
ECED620210F98926006B4DC9 /* tsk_debug.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61CD10F98926006B4DC9 /* tsk_debug.h */; };
ECED620310F98926006B4DC9 /* tsk_errno.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61CE10F98926006B4DC9 /* tsk_errno.h */; };
ECED620610F98926006B4DC9 /* tsk_hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61D110F98926006B4DC9 /* tsk_hmac.c */; };
ECED620710F98926006B4DC9 /* tsk_hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61D210F98926006B4DC9 /* tsk_hmac.h */; };
ECED620810F98926006B4DC9 /* tsk_list.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61D310F98926006B4DC9 /* tsk_list.c */; };
ECED620910F98926006B4DC9 /* tsk_list.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61D410F98926006B4DC9 /* tsk_list.h */; };
ECED620B10F98926006B4DC9 /* tsk_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61D610F98926006B4DC9 /* tsk_md5.c */; };
ECED620C10F98926006B4DC9 /* tsk_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61D710F98926006B4DC9 /* tsk_md5.h */; };
ECED620D10F98926006B4DC9 /* tsk_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61D810F98926006B4DC9 /* tsk_memory.c */; };
ECED620E10F98926006B4DC9 /* tsk_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61D910F98926006B4DC9 /* tsk_memory.h */; };
ECED620F10F98926006B4DC9 /* tsk_mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61DA10F98926006B4DC9 /* tsk_mutex.c */; };
ECED621010F98926006B4DC9 /* tsk_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61DB10F98926006B4DC9 /* tsk_mutex.h */; };
ECED621110F98926006B4DC9 /* tsk_object.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61DC10F98926006B4DC9 /* tsk_object.c */; };
ECED621210F98926006B4DC9 /* tsk_object.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61DD10F98926006B4DC9 /* tsk_object.h */; };
ECED621310F98926006B4DC9 /* tsk_params.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61DE10F98926006B4DC9 /* tsk_params.c */; };
ECED621410F98926006B4DC9 /* tsk_params.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61DF10F98926006B4DC9 /* tsk_params.h */; };
ECED621510F98926006B4DC9 /* tsk_ppfcs16.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61E010F98926006B4DC9 /* tsk_ppfcs16.c */; };
ECED621610F98926006B4DC9 /* tsk_ppfcs16.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61E110F98926006B4DC9 /* tsk_ppfcs16.h */; };
ECED621710F98926006B4DC9 /* tsk_runnable.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61E210F98926006B4DC9 /* tsk_runnable.c */; };
ECED621810F98926006B4DC9 /* tsk_runnable.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61E310F98926006B4DC9 /* tsk_runnable.h */; };
ECED621910F98926006B4DC9 /* tsk_safeobj.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61E410F98926006B4DC9 /* tsk_safeobj.c */; };
ECED621A10F98926006B4DC9 /* tsk_safeobj.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61E510F98926006B4DC9 /* tsk_safeobj.h */; };
ECED621B10F98926006B4DC9 /* tsk_semaphore.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61E610F98926006B4DC9 /* tsk_semaphore.c */; };
ECED621C10F98926006B4DC9 /* tsk_semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61E710F98926006B4DC9 /* tsk_semaphore.h */; };
ECED621D10F98926006B4DC9 /* tsk_sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61E810F98926006B4DC9 /* tsk_sha1.c */; };
ECED621E10F98926006B4DC9 /* tsk_sha1.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61E910F98926006B4DC9 /* tsk_sha1.h */; };
ECED621F10F98926006B4DC9 /* tsk_string.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61EA10F98926006B4DC9 /* tsk_string.c */; };
ECED622010F98926006B4DC9 /* tsk_string.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61EB10F98926006B4DC9 /* tsk_string.h */; };
ECED622110F98926006B4DC9 /* tsk_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61EC10F98926006B4DC9 /* tsk_thread.c */; };
ECED622210F98926006B4DC9 /* tsk_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61ED10F98926006B4DC9 /* tsk_thread.h */; };
ECED622310F98926006B4DC9 /* tsk_time.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61EE10F98926006B4DC9 /* tsk_time.c */; };
ECED622410F98926006B4DC9 /* tsk_time.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61EF10F98926006B4DC9 /* tsk_time.h */; };
ECED622510F98926006B4DC9 /* tsk_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61F010F98926006B4DC9 /* tsk_timer.c */; };
ECED622610F98926006B4DC9 /* tsk_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61F110F98926006B4DC9 /* tsk_timer.h */; };
ECED622710F98926006B4DC9 /* tsk_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61F210F98926006B4DC9 /* tsk_url.c */; };
ECED622810F98926006B4DC9 /* tsk_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61F310F98926006B4DC9 /* tsk_url.h */; };
ECED622910F98926006B4DC9 /* tsk_xml.c in Sources */ = {isa = PBXBuildFile; fileRef = ECED61F410F98926006B4DC9 /* tsk_xml.c */; };
ECED622A10F98926006B4DC9 /* tsk_xml.h in Headers */ = {isa = PBXBuildFile; fileRef = ECED61F510F98926006B4DC9 /* tsk_xml.h */; };
ECED622F10F989A3006B4DC9 /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED61BC10F988E7006B4DC9 /* libtinySAK.dylib */; };
ECED624F10F98B8B006B4DC9 /* libtinyHTTP.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D2AAC0630554660B00DB518D /* libtinyHTTP.dylib */; };
ECED625010F98B8B006B4DC9 /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED61BC10F988E7006B4DC9 /* libtinySAK.dylib */; };
ECF4BCBA11434BF900B7C09B /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECED61BC10F988E7006B4DC9 /* libtinySAK.dylib */; };
ECF4BD3311434C1100B7C09B /* tnet_dhcp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCC811434C1000B7C09B /* tnet_dhcp.c */; };
ECF4BD3411434C1100B7C09B /* tnet_dhcp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCC911434C1000B7C09B /* tnet_dhcp.h */; };
ECF4BD3511434C1100B7C09B /* tnet_dhcp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCCA11434C1000B7C09B /* tnet_dhcp_message.c */; };
ECF4BD3611434C1100B7C09B /* tnet_dhcp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCCB11434C1000B7C09B /* tnet_dhcp_message.h */; };
ECF4BD3711434C1100B7C09B /* tnet_dhcp_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCCC11434C1000B7C09B /* tnet_dhcp_option.c */; };
ECF4BD3811434C1100B7C09B /* tnet_dhcp_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCCD11434C1000B7C09B /* tnet_dhcp_option.h */; };
ECF4BD3911434C1100B7C09B /* tnet_dhcp_option_sip.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCCE11434C1000B7C09B /* tnet_dhcp_option_sip.c */; };
ECF4BD3A11434C1100B7C09B /* tnet_dhcp_option_sip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCCF11434C1000B7C09B /* tnet_dhcp_option_sip.h */; };
ECF4BD3B11434C1100B7C09B /* tnet_dhcp6.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCD111434C1000B7C09B /* tnet_dhcp6.c */; };
ECF4BD3C11434C1100B7C09B /* tnet_dhcp6.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCD211434C1000B7C09B /* tnet_dhcp6.h */; };
ECF4BD3D11434C1100B7C09B /* tnet_dhcp6_duid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCD311434C1000B7C09B /* tnet_dhcp6_duid.c */; };
ECF4BD3E11434C1100B7C09B /* tnet_dhcp6_duid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCD411434C1000B7C09B /* tnet_dhcp6_duid.h */; };
ECF4BD3F11434C1100B7C09B /* tnet_dhcp6_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCD511434C1000B7C09B /* tnet_dhcp6_message.c */; };
ECF4BD4011434C1100B7C09B /* tnet_dhcp6_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCD611434C1000B7C09B /* tnet_dhcp6_message.h */; };
ECF4BD4111434C1100B7C09B /* tnet_dhcp6_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCD711434C1000B7C09B /* tnet_dhcp6_option.c */; };
ECF4BD4211434C1100B7C09B /* tnet_dhcp6_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCD811434C1100B7C09B /* tnet_dhcp6_option.h */; };
ECF4BD4311434C1100B7C09B /* tnet_dns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCDA11434C1100B7C09B /* tnet_dns.c */; };
ECF4BD4411434C1100B7C09B /* tnet_dns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCDB11434C1100B7C09B /* tnet_dns.h */; };
ECF4BD4511434C1100B7C09B /* tnet_dns_a.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCDC11434C1100B7C09B /* tnet_dns_a.c */; };
ECF4BD4611434C1100B7C09B /* tnet_dns_a.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCDD11434C1100B7C09B /* tnet_dns_a.h */; };
ECF4BD4711434C1100B7C09B /* tnet_dns_aaaa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCDE11434C1100B7C09B /* tnet_dns_aaaa.c */; };
ECF4BD4811434C1100B7C09B /* tnet_dns_aaaa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCDF11434C1100B7C09B /* tnet_dns_aaaa.h */; };
ECF4BD4911434C1100B7C09B /* tnet_dns_cname.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCE011434C1100B7C09B /* tnet_dns_cname.c */; };
ECF4BD4A11434C1100B7C09B /* tnet_dns_cname.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCE111434C1100B7C09B /* tnet_dns_cname.h */; };
ECF4BD4B11434C1100B7C09B /* tnet_dns_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCE211434C1100B7C09B /* tnet_dns_message.c */; };
ECF4BD4C11434C1100B7C09B /* tnet_dns_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCE311434C1100B7C09B /* tnet_dns_message.h */; };
ECF4BD4D11434C1100B7C09B /* tnet_dns_mx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCE411434C1100B7C09B /* tnet_dns_mx.c */; };
ECF4BD4E11434C1100B7C09B /* tnet_dns_mx.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCE511434C1100B7C09B /* tnet_dns_mx.h */; };
ECF4BD4F11434C1100B7C09B /* tnet_dns_naptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCE611434C1100B7C09B /* tnet_dns_naptr.c */; };
ECF4BD5011434C1100B7C09B /* tnet_dns_naptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCE711434C1100B7C09B /* tnet_dns_naptr.h */; };
ECF4BD5111434C1100B7C09B /* tnet_dns_ns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCE811434C1100B7C09B /* tnet_dns_ns.c */; };
ECF4BD5211434C1100B7C09B /* tnet_dns_ns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCE911434C1100B7C09B /* tnet_dns_ns.h */; };
ECF4BD5311434C1100B7C09B /* tnet_dns_opt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCEA11434C1100B7C09B /* tnet_dns_opt.c */; };
ECF4BD5411434C1100B7C09B /* tnet_dns_opt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCEB11434C1100B7C09B /* tnet_dns_opt.h */; };
ECF4BD5511434C1100B7C09B /* tnet_dns_ptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCEC11434C1100B7C09B /* tnet_dns_ptr.c */; };
ECF4BD5611434C1100B7C09B /* tnet_dns_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCED11434C1100B7C09B /* tnet_dns_ptr.h */; };
ECF4BD5711434C1100B7C09B /* tnet_dns_rr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCEE11434C1100B7C09B /* tnet_dns_rr.c */; };
ECF4BD5811434C1100B7C09B /* tnet_dns_rr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCEF11434C1100B7C09B /* tnet_dns_rr.h */; };
ECF4BD5911434C1100B7C09B /* tnet_dns_soa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCF011434C1100B7C09B /* tnet_dns_soa.c */; };
ECF4BD5A11434C1100B7C09B /* tnet_dns_soa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCF111434C1100B7C09B /* tnet_dns_soa.h */; };
ECF4BD5B11434C1100B7C09B /* tnet_dns_srv.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCF211434C1100B7C09B /* tnet_dns_srv.c */; };
ECF4BD5C11434C1100B7C09B /* tnet_dns_srv.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCF311434C1100B7C09B /* tnet_dns_srv.h */; };
ECF4BD5D11434C1100B7C09B /* tnet_dns_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCF411434C1100B7C09B /* tnet_dns_txt.c */; };
ECF4BD5E11434C1100B7C09B /* tnet_dns_txt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCF511434C1100B7C09B /* tnet_dns_txt.h */; };
ECF4BD5F11434C1100B7C09B /* tnet_ice.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCF711434C1100B7C09B /* tnet_ice.c */; };
ECF4BD6011434C1100B7C09B /* tnet_ice.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCF811434C1100B7C09B /* tnet_ice.h */; };
ECF4BD6211434C1100B7C09B /* tnet_stun.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCFC11434C1100B7C09B /* tnet_stun.c */; };
ECF4BD6311434C1100B7C09B /* tnet_stun.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCFD11434C1100B7C09B /* tnet_stun.h */; };
ECF4BD6411434C1100B7C09B /* tnet_stun_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BCFE11434C1100B7C09B /* tnet_stun_attribute.c */; };
ECF4BD6511434C1100B7C09B /* tnet_stun_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BCFF11434C1100B7C09B /* tnet_stun_attribute.h */; };
ECF4BD6611434C1100B7C09B /* tnet_stun_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0011434C1100B7C09B /* tnet_stun_message.c */; };
ECF4BD6711434C1100B7C09B /* tnet_stun_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0111434C1100B7C09B /* tnet_stun_message.h */; };
ECF4BD6811434C1100B7C09B /* tinyNET_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0211434C1100B7C09B /* tinyNET_config.h */; };
ECF4BD6911434C1100B7C09B /* tnet_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0411434C1100B7C09B /* tnet_tls.c */; };
ECF4BD6A11434C1100B7C09B /* tnet_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0511434C1100B7C09B /* tnet_tls.h */; };
ECF4BD6B11434C1100B7C09B /* tnet.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0611434C1100B7C09B /* tnet.c */; };
ECF4BD6C11434C1100B7C09B /* tnet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0711434C1100B7C09B /* tnet.h */; };
ECF4BD6D11434C1100B7C09B /* tnet_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0811434C1100B7C09B /* tnet_auth.c */; };
ECF4BD6E11434C1100B7C09B /* tnet_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0911434C1100B7C09B /* tnet_auth.h */; };
ECF4BD6F11434C1100B7C09B /* tnet_hardwares.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0A11434C1100B7C09B /* tnet_hardwares.h */; };
ECF4BD7011434C1100B7C09B /* tnet_nat.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0B11434C1100B7C09B /* tnet_nat.c */; };
ECF4BD7111434C1100B7C09B /* tnet_nat.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0C11434C1100B7C09B /* tnet_nat.h */; };
ECF4BD7211434C1100B7C09B /* tnet_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD0D11434C1100B7C09B /* tnet_poll.c */; };
ECF4BD7311434C1100B7C09B /* tnet_poll.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0E11434C1100B7C09B /* tnet_poll.h */; };
ECF4BD7411434C1100B7C09B /* tnet_proto.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD0F11434C1100B7C09B /* tnet_proto.h */; };
ECF4BD7511434C1100B7C09B /* tnet_socket.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1011434C1100B7C09B /* tnet_socket.c */; };
ECF4BD7611434C1100B7C09B /* tnet_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1111434C1100B7C09B /* tnet_socket.h */; };
ECF4BD7711434C1100B7C09B /* tnet_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1211434C1100B7C09B /* tnet_transport.c */; };
ECF4BD7811434C1100B7C09B /* tnet_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1311434C1100B7C09B /* tnet_transport.h */; };
ECF4BD7911434C1100B7C09B /* tnet_transport_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1411434C1100B7C09B /* tnet_transport_poll.c */; };
ECF4BD7A11434C1100B7C09B /* tnet_transport_win32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1511434C1100B7C09B /* tnet_transport_win32.c */; };
ECF4BD7B11434C1100B7C09B /* tnet_types.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1611434C1100B7C09B /* tnet_types.h */; };
ECF4BD7C11434C1100B7C09B /* tnet_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1711434C1100B7C09B /* tnet_utils.c */; };
ECF4BD7D11434C1100B7C09B /* tnet_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1811434C1100B7C09B /* tnet_utils.h */; };
ECF4BD7E11434C1100B7C09B /* tnet_turn.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1A11434C1100B7C09B /* tnet_turn.c */; };
ECF4BD7F11434C1100B7C09B /* tnet_turn.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1B11434C1100B7C09B /* tnet_turn.h */; };
ECF4BD8011434C1100B7C09B /* tnet_turn_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1C11434C1100B7C09B /* tnet_turn_attribute.c */; };
ECF4BD8111434C1100B7C09B /* tnet_turn_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1D11434C1100B7C09B /* tnet_turn_attribute.h */; };
ECF4BD8211434C1100B7C09B /* tnet_turn_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD1E11434C1100B7C09B /* tnet_turn_message.c */; };
ECF4BD8311434C1100B7C09B /* tnet_turn_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD1F11434C1100B7C09B /* tnet_turn_message.h */; };
ECF4BD9D11434CA000B7C09B /* tsk_fsm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD9511434CA000B7C09B /* tsk_fsm.c */; };
ECF4BD9E11434CA000B7C09B /* tsk_fsm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD9611434CA000B7C09B /* tsk_fsm.h */; };
ECF4BD9F11434CA000B7C09B /* tsk_ppfcs32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD9711434CA000B7C09B /* tsk_ppfcs32.c */; };
ECF4BDA011434CA000B7C09B /* tsk_ppfcs32.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD9811434CA000B7C09B /* tsk_ppfcs32.h */; };
ECF4BDA111434CA000B7C09B /* tsk_ragel_state.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD9911434CA000B7C09B /* tsk_ragel_state.c */; };
ECF4BDA211434CA000B7C09B /* tsk_ragel_state.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD9A11434CA000B7C09B /* tsk_ragel_state.h */; };
ECF4BDA311434CA000B7C09B /* tsk_uuid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF4BD9B11434CA000B7C09B /* tsk_uuid.c */; };
ECF4BDA411434CA000B7C09B /* tsk_uuid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF4BD9C11434CA000B7C09B /* tsk_uuid.h */; };
ECF4BDAA11434CC600B7C09B /* libtinyNET.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF4BCB411434BA800B7C09B /* libtinyNET.dylib */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
ECE4083D117CE52000A43CEB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF4BCB311434BA800B7C09B;
remoteInfo = tinyNET;
};
ECED622D10F9899F006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED61BB10F988E7006B4DC9;
remoteInfo = tinySAK;
};
ECED624B10F98B85006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = D2AAC0620554660B00DB518D;
remoteInfo = tinyHTTP;
};
ECED624D10F98B85006B4DC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED61BB10F988E7006B4DC9;
remoteInfo = tinySAK;
};
ECF4BCB811434BF400B7C09B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECED61BB10F988E7006B4DC9;
remoteInfo = tinySAK;
};
ECF4BDA811434CC200B7C09B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECF4BCB311434BA800B7C09B;
remoteInfo = tinyNET;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
D2AAC0630554660B00DB518D /* libtinyHTTP.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyHTTP.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECE40751117CE04B00A43CEB /* tnet_endianness.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_endianness.c; sourceTree = "<group>"; };
ECE40752117CE04B00A43CEB /* tnet_endianness.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_endianness.h; sourceTree = "<group>"; };
ECE40755117CE09C00A43CEB /* tnet_dns_regexp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_regexp.c; sourceTree = "<group>"; };
ECE40756117CE09C00A43CEB /* tnet_dns_regexp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_regexp.h; sourceTree = "<group>"; };
ECE40757117CE09C00A43CEB /* tnet_dns_resolvconf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_resolvconf.c; sourceTree = "<group>"; };
ECE40758117CE09C00A43CEB /* tnet_dns_resolvconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_resolvconf.h; sourceTree = "<group>"; };
ECE4075F117CE19100A43CEB /* tnet_dns_regexp.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tnet_dns_regexp.rl; sourceTree = "<group>"; };
ECE40760117CE19100A43CEB /* tnet_dns_resolvconf.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tnet_dns_resolvconf.rl; sourceTree = "<group>"; };
ECE40762117CE1FC00A43CEB /* thttp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp.h; sourceTree = "<group>"; };
ECE40765117CE1FC00A43CEB /* thttp_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_auth.h; sourceTree = "<group>"; };
ECE40766117CE1FC00A43CEB /* thttp_challenge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_challenge.h; sourceTree = "<group>"; };
ECE40768117CE1FC00A43CEB /* thttp_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header.h; sourceTree = "<group>"; };
ECE40769117CE1FC00A43CEB /* thttp_header_Authorization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Authorization.h; sourceTree = "<group>"; };
ECE4076A117CE1FD00A43CEB /* thttp_header_Content_Length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Content_Length.h; sourceTree = "<group>"; };
ECE4076B117CE1FD00A43CEB /* thttp_header_Content_Type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Content_Type.h; sourceTree = "<group>"; };
ECE4076C117CE1FD00A43CEB /* thttp_header_Dummy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Dummy.h; sourceTree = "<group>"; };
ECE4076D117CE1FD00A43CEB /* thttp_header_ETag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_ETag.h; sourceTree = "<group>"; };
ECE4076E117CE1FD00A43CEB /* thttp_header_Transfer_Encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_Transfer_Encoding.h; sourceTree = "<group>"; };
ECE4076F117CE1FD00A43CEB /* thttp_header_WWW_Authenticate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_header_WWW_Authenticate.h; sourceTree = "<group>"; };
ECE40771117CE1FD00A43CEB /* thttp_parser_header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_header.h; sourceTree = "<group>"; };
ECE40772117CE1FD00A43CEB /* thttp_parser_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_message.h; sourceTree = "<group>"; };
ECE40773117CE1FD00A43CEB /* thttp_parser_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_parser_url.h; sourceTree = "<group>"; };
ECE40774117CE1FD00A43CEB /* thttp_action.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_action.h; sourceTree = "<group>"; };
ECE40775117CE1FD00A43CEB /* thttp_dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_dialog.h; sourceTree = "<group>"; };
ECE40776117CE1FD00A43CEB /* thttp_event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_event.h; sourceTree = "<group>"; };
ECE40777117CE1FD00A43CEB /* thttp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_message.h; sourceTree = "<group>"; };
ECE40778117CE1FD00A43CEB /* thttp_session.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_session.h; sourceTree = "<group>"; };
ECE40779117CE1FD00A43CEB /* thttp_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thttp_url.h; sourceTree = "<group>"; };
ECE4077A117CE1FD00A43CEB /* tinyhttp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyhttp.h; sourceTree = "<group>"; };
ECE4077B117CE1FD00A43CEB /* tinyhttp_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyhttp_config.h; sourceTree = "<group>"; };
ECE4077D117CE1FD00A43CEB /* thttp_machine_header.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_machine_header.rl; sourceTree = "<group>"; };
ECE4077E117CE1FD00A43CEB /* thttp_machine_message.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_machine_message.rl; sourceTree = "<group>"; };
ECE4077F117CE1FD00A43CEB /* thttp_machine_utils.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_machine_utils.rl; sourceTree = "<group>"; };
ECE40780117CE1FD00A43CEB /* thttp_parser_header.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header.rl; sourceTree = "<group>"; };
ECE40781117CE1FD00A43CEB /* thttp_parser_header_Authorization.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header_Authorization.rl; sourceTree = "<group>"; };
ECE40782117CE1FD00A43CEB /* thttp_parser_header_Content_Length.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header_Content_Length.rl; sourceTree = "<group>"; };
ECE40783117CE1FD00A43CEB /* thttp_parser_header_Content_Type.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header_Content_Type.rl; sourceTree = "<group>"; };
ECE40784117CE1FD00A43CEB /* thttp_parser_header_Dummy.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header_Dummy.rl; sourceTree = "<group>"; };
ECE40785117CE1FD00A43CEB /* thttp_parser_header_ETag.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header_ETag.rl; sourceTree = "<group>"; };
ECE40786117CE1FD00A43CEB /* thttp_parser_header_Transfer_Encoding.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header_Transfer_Encoding.rl; sourceTree = "<group>"; };
ECE40787117CE1FD00A43CEB /* thttp_parser_header_WWW_Authenticate.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_header_WWW_Authenticate.rl; sourceTree = "<group>"; };
ECE40788117CE1FD00A43CEB /* thttp_parser_message.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_message.rl; sourceTree = "<group>"; };
ECE40789117CE1FD00A43CEB /* thttp_parser_url.rl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = thttp_parser_url.rl; sourceTree = "<group>"; };
ECE4078C117CE1FD00A43CEB /* thttp_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_auth.c; sourceTree = "<group>"; };
ECE4078D117CE1FD00A43CEB /* thttp_challenge.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_challenge.c; sourceTree = "<group>"; };
ECE4078F117CE1FD00A43CEB /* thttp_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header.c; sourceTree = "<group>"; };
ECE40790117CE1FD00A43CEB /* thttp_header_Authorization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Authorization.c; sourceTree = "<group>"; };
ECE40791117CE1FD00A43CEB /* thttp_header_Content_Length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Length.c; sourceTree = "<group>"; };
ECE40792117CE1FD00A43CEB /* thttp_header_Content_Type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Content_Type.c; sourceTree = "<group>"; };
ECE40793117CE1FD00A43CEB /* thttp_header_Dummy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Dummy.c; sourceTree = "<group>"; };
ECE40794117CE1FD00A43CEB /* thttp_header_ETag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_ETag.c; sourceTree = "<group>"; };
ECE40795117CE1FD00A43CEB /* thttp_header_Transfer_Encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_Transfer_Encoding.c; sourceTree = "<group>"; };
ECE40796117CE1FD00A43CEB /* thttp_header_WWW_Authenticate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_header_WWW_Authenticate.c; sourceTree = "<group>"; };
ECE40799117CE1FD00A43CEB /* thttp_parser_header.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_header.c; sourceTree = "<group>"; };
ECE4079A117CE1FD00A43CEB /* thttp_parser_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_message.c; sourceTree = "<group>"; };
ECE4079B117CE1FD00A43CEB /* thttp_parser_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_parser_url.c; sourceTree = "<group>"; };
ECE4079C117CE1FD00A43CEB /* thttp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp.c; sourceTree = "<group>"; };
ECE4079D117CE1FD00A43CEB /* thttp_action.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_action.c; sourceTree = "<group>"; };
ECE4079E117CE1FD00A43CEB /* thttp_dialog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_dialog.c; sourceTree = "<group>"; };
ECE4079F117CE1FD00A43CEB /* thttp_event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_event.c; sourceTree = "<group>"; };
ECE407A0117CE1FD00A43CEB /* thttp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_message.c; sourceTree = "<group>"; };
ECE407A1117CE1FD00A43CEB /* thttp_session.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_session.c; sourceTree = "<group>"; };
ECE407A2117CE1FD00A43CEB /* thttp_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thttp_url.c; sourceTree = "<group>"; };
ECE407E5117CE27700A43CEB /* tsk_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_common.h; path = ../../tinySAK/src/tsk_common.h; sourceTree = SOURCE_ROOT; };
ECE407E6117CE27700A43CEB /* tsk_options.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_options.c; path = ../../tinySAK/src/tsk_options.c; sourceTree = SOURCE_ROOT; };
ECE407E7117CE27700A43CEB /* tsk_options.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_options.h; path = ../../tinySAK/src/tsk_options.h; sourceTree = SOURCE_ROOT; };
ECE40832117CE48D00A43CEB /* stdafx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stdafx.c; sourceTree = "<group>"; };
ECE40833117CE48D00A43CEB /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = "<group>"; };
ECE40834117CE48D00A43CEB /* targetver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = targetver.h; sourceTree = "<group>"; };
ECE40835117CE48D00A43CEB /* test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = test.c; sourceTree = "<group>"; };
ECE40836117CE48D00A43CEB /* test_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_auth.h; sourceTree = "<group>"; };
ECE40837117CE48D00A43CEB /* test_messages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_messages.h; sourceTree = "<group>"; };
ECE40838117CE48D00A43CEB /* test_stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_stack.h; sourceTree = "<group>"; };
ECE40839117CE48D00A43CEB /* test_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_url.h; sourceTree = "<group>"; };
ECED61BC10F988E7006B4DC9 /* libtinySAK.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinySAK.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECED61C110F98926006B4DC9 /* tinySAK_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tinySAK_config.h; path = ../../tinySAK/src/tinySAK_config.h; sourceTree = SOURCE_ROOT; };
ECED61C210F98926006B4DC9 /* tsk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk.c; path = ../../tinySAK/src/tsk.c; sourceTree = SOURCE_ROOT; };
ECED61C310F98926006B4DC9 /* tsk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk.h; path = ../../tinySAK/src/tsk.h; sourceTree = SOURCE_ROOT; };
ECED61C410F98926006B4DC9 /* tsk_base64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_base64.c; path = ../../tinySAK/src/tsk_base64.c; sourceTree = SOURCE_ROOT; };
ECED61C510F98926006B4DC9 /* tsk_base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_base64.h; path = ../../tinySAK/src/tsk_base64.h; sourceTree = SOURCE_ROOT; };
ECED61C610F98926006B4DC9 /* tsk_binaryutils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_binaryutils.c; path = ../../tinySAK/src/tsk_binaryutils.c; sourceTree = SOURCE_ROOT; };
ECED61C710F98926006B4DC9 /* tsk_binaryutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_binaryutils.h; path = ../../tinySAK/src/tsk_binaryutils.h; sourceTree = SOURCE_ROOT; };
ECED61C810F98926006B4DC9 /* tsk_buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_buffer.c; path = ../../tinySAK/src/tsk_buffer.c; sourceTree = SOURCE_ROOT; };
ECED61C910F98926006B4DC9 /* tsk_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_buffer.h; path = ../../tinySAK/src/tsk_buffer.h; sourceTree = SOURCE_ROOT; };
ECED61CA10F98926006B4DC9 /* tsk_condwait.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_condwait.c; path = ../../tinySAK/src/tsk_condwait.c; sourceTree = SOURCE_ROOT; };
ECED61CB10F98926006B4DC9 /* tsk_condwait.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_condwait.h; path = ../../tinySAK/src/tsk_condwait.h; sourceTree = SOURCE_ROOT; };
ECED61CC10F98926006B4DC9 /* tsk_debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_debug.c; path = ../../tinySAK/src/tsk_debug.c; sourceTree = SOURCE_ROOT; };
ECED61CD10F98926006B4DC9 /* tsk_debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_debug.h; path = ../../tinySAK/src/tsk_debug.h; sourceTree = SOURCE_ROOT; };
ECED61CE10F98926006B4DC9 /* tsk_errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_errno.h; path = ../../tinySAK/src/tsk_errno.h; sourceTree = SOURCE_ROOT; };
ECED61D110F98926006B4DC9 /* tsk_hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_hmac.c; path = ../../tinySAK/src/tsk_hmac.c; sourceTree = SOURCE_ROOT; };
ECED61D210F98926006B4DC9 /* tsk_hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_hmac.h; path = ../../tinySAK/src/tsk_hmac.h; sourceTree = SOURCE_ROOT; };
ECED61D310F98926006B4DC9 /* tsk_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_list.c; path = ../../tinySAK/src/tsk_list.c; sourceTree = SOURCE_ROOT; };
ECED61D410F98926006B4DC9 /* tsk_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_list.h; path = ../../tinySAK/src/tsk_list.h; sourceTree = SOURCE_ROOT; };
ECED61D610F98926006B4DC9 /* tsk_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_md5.c; path = ../../tinySAK/src/tsk_md5.c; sourceTree = SOURCE_ROOT; };
ECED61D710F98926006B4DC9 /* tsk_md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_md5.h; path = ../../tinySAK/src/tsk_md5.h; sourceTree = SOURCE_ROOT; };
ECED61D810F98926006B4DC9 /* tsk_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_memory.c; path = ../../tinySAK/src/tsk_memory.c; sourceTree = SOURCE_ROOT; };
ECED61D910F98926006B4DC9 /* tsk_memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_memory.h; path = ../../tinySAK/src/tsk_memory.h; sourceTree = SOURCE_ROOT; };
ECED61DA10F98926006B4DC9 /* tsk_mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_mutex.c; path = ../../tinySAK/src/tsk_mutex.c; sourceTree = SOURCE_ROOT; };
ECED61DB10F98926006B4DC9 /* tsk_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_mutex.h; path = ../../tinySAK/src/tsk_mutex.h; sourceTree = SOURCE_ROOT; };
ECED61DC10F98926006B4DC9 /* tsk_object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_object.c; path = ../../tinySAK/src/tsk_object.c; sourceTree = SOURCE_ROOT; };
ECED61DD10F98926006B4DC9 /* tsk_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_object.h; path = ../../tinySAK/src/tsk_object.h; sourceTree = SOURCE_ROOT; };
ECED61DE10F98926006B4DC9 /* tsk_params.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_params.c; path = ../../tinySAK/src/tsk_params.c; sourceTree = SOURCE_ROOT; };
ECED61DF10F98926006B4DC9 /* tsk_params.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_params.h; path = ../../tinySAK/src/tsk_params.h; sourceTree = SOURCE_ROOT; };
ECED61E010F98926006B4DC9 /* tsk_ppfcs16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_ppfcs16.c; path = ../../tinySAK/src/tsk_ppfcs16.c; sourceTree = SOURCE_ROOT; };
ECED61E110F98926006B4DC9 /* tsk_ppfcs16.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_ppfcs16.h; path = ../../tinySAK/src/tsk_ppfcs16.h; sourceTree = SOURCE_ROOT; };
ECED61E210F98926006B4DC9 /* tsk_runnable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_runnable.c; path = ../../tinySAK/src/tsk_runnable.c; sourceTree = SOURCE_ROOT; };
ECED61E310F98926006B4DC9 /* tsk_runnable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_runnable.h; path = ../../tinySAK/src/tsk_runnable.h; sourceTree = SOURCE_ROOT; };
ECED61E410F98926006B4DC9 /* tsk_safeobj.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_safeobj.c; path = ../../tinySAK/src/tsk_safeobj.c; sourceTree = SOURCE_ROOT; };
ECED61E510F98926006B4DC9 /* tsk_safeobj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_safeobj.h; path = ../../tinySAK/src/tsk_safeobj.h; sourceTree = SOURCE_ROOT; };
ECED61E610F98926006B4DC9 /* tsk_semaphore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_semaphore.c; path = ../../tinySAK/src/tsk_semaphore.c; sourceTree = SOURCE_ROOT; };
ECED61E710F98926006B4DC9 /* tsk_semaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_semaphore.h; path = ../../tinySAK/src/tsk_semaphore.h; sourceTree = SOURCE_ROOT; };
ECED61E810F98926006B4DC9 /* tsk_sha1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_sha1.c; path = ../../tinySAK/src/tsk_sha1.c; sourceTree = SOURCE_ROOT; };
ECED61E910F98926006B4DC9 /* tsk_sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_sha1.h; path = ../../tinySAK/src/tsk_sha1.h; sourceTree = SOURCE_ROOT; };
ECED61EA10F98926006B4DC9 /* tsk_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_string.c; path = ../../tinySAK/src/tsk_string.c; sourceTree = SOURCE_ROOT; };
ECED61EB10F98926006B4DC9 /* tsk_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_string.h; path = ../../tinySAK/src/tsk_string.h; sourceTree = SOURCE_ROOT; };
ECED61EC10F98926006B4DC9 /* tsk_thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_thread.c; path = ../../tinySAK/src/tsk_thread.c; sourceTree = SOURCE_ROOT; };
ECED61ED10F98926006B4DC9 /* tsk_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_thread.h; path = ../../tinySAK/src/tsk_thread.h; sourceTree = SOURCE_ROOT; };
ECED61EE10F98926006B4DC9 /* tsk_time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_time.c; path = ../../tinySAK/src/tsk_time.c; sourceTree = SOURCE_ROOT; };
ECED61EF10F98926006B4DC9 /* tsk_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_time.h; path = ../../tinySAK/src/tsk_time.h; sourceTree = SOURCE_ROOT; };
ECED61F010F98926006B4DC9 /* tsk_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_timer.c; path = ../../tinySAK/src/tsk_timer.c; sourceTree = SOURCE_ROOT; };
ECED61F110F98926006B4DC9 /* tsk_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_timer.h; path = ../../tinySAK/src/tsk_timer.h; sourceTree = SOURCE_ROOT; };
ECED61F210F98926006B4DC9 /* tsk_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_url.c; path = ../../tinySAK/src/tsk_url.c; sourceTree = SOURCE_ROOT; };
ECED61F310F98926006B4DC9 /* tsk_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_url.h; path = ../../tinySAK/src/tsk_url.h; sourceTree = SOURCE_ROOT; };
ECED61F410F98926006B4DC9 /* tsk_xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_xml.c; path = ../../tinySAK/src/tsk_xml.c; sourceTree = SOURCE_ROOT; };
ECED61F510F98926006B4DC9 /* tsk_xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_xml.h; path = ../../tinySAK/src/tsk_xml.h; sourceTree = SOURCE_ROOT; };
ECED623D10F98B46006B4DC9 /* test */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = test; sourceTree = BUILT_PRODUCTS_DIR; };
ECF4BCB411434BA800B7C09B /* libtinyNET.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyNET.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECF4BCC811434C1000B7C09B /* tnet_dhcp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp.c; sourceTree = "<group>"; };
ECF4BCC911434C1000B7C09B /* tnet_dhcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp.h; sourceTree = "<group>"; };
ECF4BCCA11434C1000B7C09B /* tnet_dhcp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_message.c; sourceTree = "<group>"; };
ECF4BCCB11434C1000B7C09B /* tnet_dhcp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_message.h; sourceTree = "<group>"; };
ECF4BCCC11434C1000B7C09B /* tnet_dhcp_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option.c; sourceTree = "<group>"; };
ECF4BCCD11434C1000B7C09B /* tnet_dhcp_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option.h; sourceTree = "<group>"; };
ECF4BCCE11434C1000B7C09B /* tnet_dhcp_option_sip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option_sip.c; sourceTree = "<group>"; };
ECF4BCCF11434C1000B7C09B /* tnet_dhcp_option_sip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option_sip.h; sourceTree = "<group>"; };
ECF4BCD111434C1000B7C09B /* tnet_dhcp6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6.c; sourceTree = "<group>"; };
ECF4BCD211434C1000B7C09B /* tnet_dhcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6.h; sourceTree = "<group>"; };
ECF4BCD311434C1000B7C09B /* tnet_dhcp6_duid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_duid.c; sourceTree = "<group>"; };
ECF4BCD411434C1000B7C09B /* tnet_dhcp6_duid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_duid.h; sourceTree = "<group>"; };
ECF4BCD511434C1000B7C09B /* tnet_dhcp6_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_message.c; sourceTree = "<group>"; };
ECF4BCD611434C1000B7C09B /* tnet_dhcp6_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_message.h; sourceTree = "<group>"; };
ECF4BCD711434C1000B7C09B /* tnet_dhcp6_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_option.c; sourceTree = "<group>"; };
ECF4BCD811434C1100B7C09B /* tnet_dhcp6_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_option.h; sourceTree = "<group>"; };
ECF4BCDA11434C1100B7C09B /* tnet_dns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns.c; sourceTree = "<group>"; };
ECF4BCDB11434C1100B7C09B /* tnet_dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns.h; sourceTree = "<group>"; };
ECF4BCDC11434C1100B7C09B /* tnet_dns_a.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_a.c; sourceTree = "<group>"; };
ECF4BCDD11434C1100B7C09B /* tnet_dns_a.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_a.h; sourceTree = "<group>"; };
ECF4BCDE11434C1100B7C09B /* tnet_dns_aaaa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_aaaa.c; sourceTree = "<group>"; };
ECF4BCDF11434C1100B7C09B /* tnet_dns_aaaa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_aaaa.h; sourceTree = "<group>"; };
ECF4BCE011434C1100B7C09B /* tnet_dns_cname.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_cname.c; sourceTree = "<group>"; };
ECF4BCE111434C1100B7C09B /* tnet_dns_cname.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_cname.h; sourceTree = "<group>"; };
ECF4BCE211434C1100B7C09B /* tnet_dns_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_message.c; sourceTree = "<group>"; };
ECF4BCE311434C1100B7C09B /* tnet_dns_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_message.h; sourceTree = "<group>"; };
ECF4BCE411434C1100B7C09B /* tnet_dns_mx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_mx.c; sourceTree = "<group>"; };
ECF4BCE511434C1100B7C09B /* tnet_dns_mx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_mx.h; sourceTree = "<group>"; };
ECF4BCE611434C1100B7C09B /* tnet_dns_naptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_naptr.c; sourceTree = "<group>"; };
ECF4BCE711434C1100B7C09B /* tnet_dns_naptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_naptr.h; sourceTree = "<group>"; };
ECF4BCE811434C1100B7C09B /* tnet_dns_ns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ns.c; sourceTree = "<group>"; };
ECF4BCE911434C1100B7C09B /* tnet_dns_ns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ns.h; sourceTree = "<group>"; };
ECF4BCEA11434C1100B7C09B /* tnet_dns_opt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_opt.c; sourceTree = "<group>"; };
ECF4BCEB11434C1100B7C09B /* tnet_dns_opt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_opt.h; sourceTree = "<group>"; };
ECF4BCEC11434C1100B7C09B /* tnet_dns_ptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ptr.c; sourceTree = "<group>"; };
ECF4BCED11434C1100B7C09B /* tnet_dns_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ptr.h; sourceTree = "<group>"; };
ECF4BCEE11434C1100B7C09B /* tnet_dns_rr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_rr.c; sourceTree = "<group>"; };
ECF4BCEF11434C1100B7C09B /* tnet_dns_rr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_rr.h; sourceTree = "<group>"; };
ECF4BCF011434C1100B7C09B /* tnet_dns_soa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_soa.c; sourceTree = "<group>"; };
ECF4BCF111434C1100B7C09B /* tnet_dns_soa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_soa.h; sourceTree = "<group>"; };
ECF4BCF211434C1100B7C09B /* tnet_dns_srv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_srv.c; sourceTree = "<group>"; };
ECF4BCF311434C1100B7C09B /* tnet_dns_srv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_srv.h; sourceTree = "<group>"; };
ECF4BCF411434C1100B7C09B /* tnet_dns_txt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_txt.c; sourceTree = "<group>"; };
ECF4BCF511434C1100B7C09B /* tnet_dns_txt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_txt.h; sourceTree = "<group>"; };
ECF4BCF711434C1100B7C09B /* tnet_ice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_ice.c; sourceTree = "<group>"; };
ECF4BCF811434C1100B7C09B /* tnet_ice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_ice.h; sourceTree = "<group>"; };
ECF4BCFC11434C1100B7C09B /* tnet_stun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun.c; sourceTree = "<group>"; };
ECF4BCFD11434C1100B7C09B /* tnet_stun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun.h; sourceTree = "<group>"; };
ECF4BCFE11434C1100B7C09B /* tnet_stun_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_attribute.c; sourceTree = "<group>"; };
ECF4BCFF11434C1100B7C09B /* tnet_stun_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_attribute.h; sourceTree = "<group>"; };
ECF4BD0011434C1100B7C09B /* tnet_stun_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_message.c; sourceTree = "<group>"; };
ECF4BD0111434C1100B7C09B /* tnet_stun_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_message.h; sourceTree = "<group>"; };
ECF4BD0211434C1100B7C09B /* tinyNET_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyNET_config.h; sourceTree = "<group>"; };
ECF4BD0411434C1100B7C09B /* tnet_tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_tls.c; sourceTree = "<group>"; };
ECF4BD0511434C1100B7C09B /* tnet_tls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_tls.h; sourceTree = "<group>"; };
ECF4BD0611434C1100B7C09B /* tnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet.c; sourceTree = "<group>"; };
ECF4BD0711434C1100B7C09B /* tnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet.h; sourceTree = "<group>"; };
ECF4BD0811434C1100B7C09B /* tnet_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_auth.c; sourceTree = "<group>"; };
ECF4BD0911434C1100B7C09B /* tnet_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_auth.h; sourceTree = "<group>"; };
ECF4BD0A11434C1100B7C09B /* tnet_hardwares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_hardwares.h; sourceTree = "<group>"; };
ECF4BD0B11434C1100B7C09B /* tnet_nat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_nat.c; sourceTree = "<group>"; };
ECF4BD0C11434C1100B7C09B /* tnet_nat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_nat.h; sourceTree = "<group>"; };
ECF4BD0D11434C1100B7C09B /* tnet_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_poll.c; sourceTree = "<group>"; };
ECF4BD0E11434C1100B7C09B /* tnet_poll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_poll.h; sourceTree = "<group>"; };
ECF4BD0F11434C1100B7C09B /* tnet_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_proto.h; sourceTree = "<group>"; };
ECF4BD1011434C1100B7C09B /* tnet_socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_socket.c; sourceTree = "<group>"; };
ECF4BD1111434C1100B7C09B /* tnet_socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_socket.h; sourceTree = "<group>"; };
ECF4BD1211434C1100B7C09B /* tnet_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport.c; sourceTree = "<group>"; };
ECF4BD1311434C1100B7C09B /* tnet_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_transport.h; sourceTree = "<group>"; };
ECF4BD1411434C1100B7C09B /* tnet_transport_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_poll.c; sourceTree = "<group>"; };
ECF4BD1511434C1100B7C09B /* tnet_transport_win32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_win32.c; sourceTree = "<group>"; };
ECF4BD1611434C1100B7C09B /* tnet_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_types.h; sourceTree = "<group>"; };
ECF4BD1711434C1100B7C09B /* tnet_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_utils.c; sourceTree = "<group>"; };
ECF4BD1811434C1100B7C09B /* tnet_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_utils.h; sourceTree = "<group>"; };
ECF4BD1A11434C1100B7C09B /* tnet_turn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn.c; sourceTree = "<group>"; };
ECF4BD1B11434C1100B7C09B /* tnet_turn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn.h; sourceTree = "<group>"; };
ECF4BD1C11434C1100B7C09B /* tnet_turn_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_attribute.c; sourceTree = "<group>"; };
ECF4BD1D11434C1100B7C09B /* tnet_turn_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_attribute.h; sourceTree = "<group>"; };
ECF4BD1E11434C1100B7C09B /* tnet_turn_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_message.c; sourceTree = "<group>"; };
ECF4BD1F11434C1100B7C09B /* tnet_turn_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_message.h; sourceTree = "<group>"; };
ECF4BD9511434CA000B7C09B /* tsk_fsm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_fsm.c; path = ../../tinySAK/src/tsk_fsm.c; sourceTree = SOURCE_ROOT; };
ECF4BD9611434CA000B7C09B /* tsk_fsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_fsm.h; path = ../../tinySAK/src/tsk_fsm.h; sourceTree = SOURCE_ROOT; };
ECF4BD9711434CA000B7C09B /* tsk_ppfcs32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_ppfcs32.c; path = ../../tinySAK/src/tsk_ppfcs32.c; sourceTree = SOURCE_ROOT; };
ECF4BD9811434CA000B7C09B /* tsk_ppfcs32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_ppfcs32.h; path = ../../tinySAK/src/tsk_ppfcs32.h; sourceTree = SOURCE_ROOT; };
ECF4BD9911434CA000B7C09B /* tsk_ragel_state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_ragel_state.c; path = ../../tinySAK/src/tsk_ragel_state.c; sourceTree = SOURCE_ROOT; };
ECF4BD9A11434CA000B7C09B /* tsk_ragel_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_ragel_state.h; path = ../../tinySAK/src/tsk_ragel_state.h; sourceTree = SOURCE_ROOT; };
ECF4BD9B11434CA000B7C09B /* tsk_uuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_uuid.c; path = ../../tinySAK/src/tsk_uuid.c; sourceTree = SOURCE_ROOT; };
ECF4BD9C11434CA000B7C09B /* tsk_uuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_uuid.h; path = ../../tinySAK/src/tsk_uuid.h; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
D289988505E68E00004EDB86 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECED622F10F989A3006B4DC9 /* libtinySAK.dylib in Frameworks */,
ECF4BDAA11434CC600B7C09B /* libtinyNET.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECED61BA10F988E7006B4DC9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
ECED623B10F98B46006B4DC9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECED624F10F98B8B006B4DC9 /* libtinyHTTP.dylib in Frameworks */,
ECED625010F98B8B006B4DC9 /* libtinySAK.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF4BCB211434BA800B7C09B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECF4BCBA11434BF900B7C09B /* libtinySAK.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
08FB7794FE84155DC02AAC07 /* tinyHTTP */ = {
isa = PBXGroup;
children = (
ECE40761117CE1FC00A43CEB /* include */,
ECE4077C117CE1FD00A43CEB /* ragel */,
ECE4078A117CE1FD00A43CEB /* src */,
ECE407A3117CE1FD00A43CEB /* test */,
ECF4BCBB11434C1000B7C09B /* tinyNET */,
ECED61BF10F988F6006B4DC9 /* tinySAK */,
1AB674ADFE9D54B511CA2CBB /* Products */,
);
name = tinyHTTP;
sourceTree = "<group>";
};
1AB674ADFE9D54B511CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
D2AAC0630554660B00DB518D /* libtinyHTTP.dylib */,
ECED61BC10F988E7006B4DC9 /* libtinySAK.dylib */,
ECED623D10F98B46006B4DC9 /* test */,
ECF4BCB411434BA800B7C09B /* libtinyNET.dylib */,
);
name = Products;
sourceTree = "<group>";
};
ECE4075E117CE19100A43CEB /* ragel */ = {
isa = PBXGroup;
children = (
ECE4075F117CE19100A43CEB /* tnet_dns_regexp.rl */,
ECE40760117CE19100A43CEB /* tnet_dns_resolvconf.rl */,
);
path = ragel;
sourceTree = "<group>";
};
ECE40761117CE1FC00A43CEB /* include */ = {
isa = PBXGroup;
children = (
ECE40763117CE1FC00A43CEB /* tinyHTTP */,
ECE40762117CE1FC00A43CEB /* thttp.h */,
ECE4077A117CE1FD00A43CEB /* tinyhttp.h */,
ECE4077B117CE1FD00A43CEB /* tinyhttp_config.h */,
);
name = include;
path = ../../tinyHTTP/include;
sourceTree = SOURCE_ROOT;
};
ECE40763117CE1FC00A43CEB /* tinyHTTP */ = {
isa = PBXGroup;
children = (
ECE40764117CE1FC00A43CEB /* auth */,
ECE40767117CE1FC00A43CEB /* headers */,
ECE40770117CE1FD00A43CEB /* parsers */,
ECE40774117CE1FD00A43CEB /* thttp_action.h */,
ECE40775117CE1FD00A43CEB /* thttp_dialog.h */,
ECE40776117CE1FD00A43CEB /* thttp_event.h */,
ECE40777117CE1FD00A43CEB /* thttp_message.h */,
ECE40778117CE1FD00A43CEB /* thttp_session.h */,
ECE40779117CE1FD00A43CEB /* thttp_url.h */,
);
path = tinyHTTP;
sourceTree = "<group>";
};
ECE40764117CE1FC00A43CEB /* auth */ = {
isa = PBXGroup;
children = (
ECE40765117CE1FC00A43CEB /* thttp_auth.h */,
ECE40766117CE1FC00A43CEB /* thttp_challenge.h */,
);
path = auth;
sourceTree = "<group>";
};
ECE40767117CE1FC00A43CEB /* headers */ = {
isa = PBXGroup;
children = (
ECE40768117CE1FC00A43CEB /* thttp_header.h */,
ECE40769117CE1FC00A43CEB /* thttp_header_Authorization.h */,
ECE4076A117CE1FD00A43CEB /* thttp_header_Content_Length.h */,
ECE4076B117CE1FD00A43CEB /* thttp_header_Content_Type.h */,
ECE4076C117CE1FD00A43CEB /* thttp_header_Dummy.h */,
ECE4076D117CE1FD00A43CEB /* thttp_header_ETag.h */,
ECE4076E117CE1FD00A43CEB /* thttp_header_Transfer_Encoding.h */,
ECE4076F117CE1FD00A43CEB /* thttp_header_WWW_Authenticate.h */,
);
path = headers;
sourceTree = "<group>";
};
ECE40770117CE1FD00A43CEB /* parsers */ = {
isa = PBXGroup;
children = (
ECE40771117CE1FD00A43CEB /* thttp_parser_header.h */,
ECE40772117CE1FD00A43CEB /* thttp_parser_message.h */,
ECE40773117CE1FD00A43CEB /* thttp_parser_url.h */,
);
path = parsers;
sourceTree = "<group>";
};
ECE4077C117CE1FD00A43CEB /* ragel */ = {
isa = PBXGroup;
children = (
ECE4077D117CE1FD00A43CEB /* thttp_machine_header.rl */,
ECE4077E117CE1FD00A43CEB /* thttp_machine_message.rl */,
ECE4077F117CE1FD00A43CEB /* thttp_machine_utils.rl */,
ECE40780117CE1FD00A43CEB /* thttp_parser_header.rl */,
ECE40781117CE1FD00A43CEB /* thttp_parser_header_Authorization.rl */,
ECE40782117CE1FD00A43CEB /* thttp_parser_header_Content_Length.rl */,
ECE40783117CE1FD00A43CEB /* thttp_parser_header_Content_Type.rl */,
ECE40784117CE1FD00A43CEB /* thttp_parser_header_Dummy.rl */,
ECE40785117CE1FD00A43CEB /* thttp_parser_header_ETag.rl */,
ECE40786117CE1FD00A43CEB /* thttp_parser_header_Transfer_Encoding.rl */,
ECE40787117CE1FD00A43CEB /* thttp_parser_header_WWW_Authenticate.rl */,
ECE40788117CE1FD00A43CEB /* thttp_parser_message.rl */,
ECE40789117CE1FD00A43CEB /* thttp_parser_url.rl */,
);
name = ragel;
path = ../../tinyHTTP/ragel;
sourceTree = SOURCE_ROOT;
};
ECE4078A117CE1FD00A43CEB /* src */ = {
isa = PBXGroup;
children = (
ECE4078B117CE1FD00A43CEB /* auth */,
ECE4078E117CE1FD00A43CEB /* headers */,
ECE40798117CE1FD00A43CEB /* parsers */,
ECE4079C117CE1FD00A43CEB /* thttp.c */,
ECE4079D117CE1FD00A43CEB /* thttp_action.c */,
ECE4079E117CE1FD00A43CEB /* thttp_dialog.c */,
ECE4079F117CE1FD00A43CEB /* thttp_event.c */,
ECE407A0117CE1FD00A43CEB /* thttp_message.c */,
ECE407A1117CE1FD00A43CEB /* thttp_session.c */,
ECE407A2117CE1FD00A43CEB /* thttp_url.c */,
);
name = src;
path = ../../tinyHTTP/src;
sourceTree = SOURCE_ROOT;
};
ECE4078B117CE1FD00A43CEB /* auth */ = {
isa = PBXGroup;
children = (
ECE4078C117CE1FD00A43CEB /* thttp_auth.c */,
ECE4078D117CE1FD00A43CEB /* thttp_challenge.c */,
);
path = auth;
sourceTree = "<group>";
};
ECE4078E117CE1FD00A43CEB /* headers */ = {
isa = PBXGroup;
children = (
ECE4078F117CE1FD00A43CEB /* thttp_header.c */,
ECE40790117CE1FD00A43CEB /* thttp_header_Authorization.c */,
ECE40791117CE1FD00A43CEB /* thttp_header_Content_Length.c */,
ECE40792117CE1FD00A43CEB /* thttp_header_Content_Type.c */,
ECE40793117CE1FD00A43CEB /* thttp_header_Dummy.c */,
ECE40794117CE1FD00A43CEB /* thttp_header_ETag.c */,
ECE40795117CE1FD00A43CEB /* thttp_header_Transfer_Encoding.c */,
ECE40796117CE1FD00A43CEB /* thttp_header_WWW_Authenticate.c */,
);
path = headers;
sourceTree = "<group>";
};
ECE40798117CE1FD00A43CEB /* parsers */ = {
isa = PBXGroup;
children = (
ECE40799117CE1FD00A43CEB /* thttp_parser_header.c */,
ECE4079A117CE1FD00A43CEB /* thttp_parser_message.c */,
ECE4079B117CE1FD00A43CEB /* thttp_parser_url.c */,
);
path = parsers;
sourceTree = "<group>";
};
ECE407A3117CE1FD00A43CEB /* test */ = {
isa = PBXGroup;
children = (
ECE40832117CE48D00A43CEB /* stdafx.c */,
ECE40833117CE48D00A43CEB /* stdafx.h */,
ECE40834117CE48D00A43CEB /* targetver.h */,
ECE40835117CE48D00A43CEB /* test.c */,
ECE40836117CE48D00A43CEB /* test_auth.h */,
ECE40837117CE48D00A43CEB /* test_messages.h */,
ECE40838117CE48D00A43CEB /* test_stack.h */,
ECE40839117CE48D00A43CEB /* test_url.h */,
);
name = test;
path = ../../tinyHTTP/test;
sourceTree = SOURCE_ROOT;
};
ECED61BF10F988F6006B4DC9 /* tinySAK */ = {
isa = PBXGroup;
children = (
ECE407E5117CE27700A43CEB /* tsk_common.h */,
ECE407E6117CE27700A43CEB /* tsk_options.c */,
ECE407E7117CE27700A43CEB /* tsk_options.h */,
ECF4BD9511434CA000B7C09B /* tsk_fsm.c */,
ECF4BD9611434CA000B7C09B /* tsk_fsm.h */,
ECF4BD9711434CA000B7C09B /* tsk_ppfcs32.c */,
ECF4BD9811434CA000B7C09B /* tsk_ppfcs32.h */,
ECF4BD9911434CA000B7C09B /* tsk_ragel_state.c */,
ECF4BD9A11434CA000B7C09B /* tsk_ragel_state.h */,
ECF4BD9B11434CA000B7C09B /* tsk_uuid.c */,
ECF4BD9C11434CA000B7C09B /* tsk_uuid.h */,
ECED61C110F98926006B4DC9 /* tinySAK_config.h */,
ECED61C210F98926006B4DC9 /* tsk.c */,
ECED61C310F98926006B4DC9 /* tsk.h */,
ECED61C410F98926006B4DC9 /* tsk_base64.c */,
ECED61C510F98926006B4DC9 /* tsk_base64.h */,
ECED61C610F98926006B4DC9 /* tsk_binaryutils.c */,
ECED61C710F98926006B4DC9 /* tsk_binaryutils.h */,
ECED61C810F98926006B4DC9 /* tsk_buffer.c */,
ECED61C910F98926006B4DC9 /* tsk_buffer.h */,
ECED61CA10F98926006B4DC9 /* tsk_condwait.c */,
ECED61CB10F98926006B4DC9 /* tsk_condwait.h */,
ECED61CC10F98926006B4DC9 /* tsk_debug.c */,
ECED61CD10F98926006B4DC9 /* tsk_debug.h */,
ECED61CE10F98926006B4DC9 /* tsk_errno.h */,
ECED61D110F98926006B4DC9 /* tsk_hmac.c */,
ECED61D210F98926006B4DC9 /* tsk_hmac.h */,
ECED61D310F98926006B4DC9 /* tsk_list.c */,
ECED61D410F98926006B4DC9 /* tsk_list.h */,
ECED61D610F98926006B4DC9 /* tsk_md5.c */,
ECED61D710F98926006B4DC9 /* tsk_md5.h */,
ECED61D810F98926006B4DC9 /* tsk_memory.c */,
ECED61D910F98926006B4DC9 /* tsk_memory.h */,
ECED61DA10F98926006B4DC9 /* tsk_mutex.c */,
ECED61DB10F98926006B4DC9 /* tsk_mutex.h */,
ECED61DC10F98926006B4DC9 /* tsk_object.c */,
ECED61DD10F98926006B4DC9 /* tsk_object.h */,
ECED61DE10F98926006B4DC9 /* tsk_params.c */,
ECED61DF10F98926006B4DC9 /* tsk_params.h */,
ECED61E010F98926006B4DC9 /* tsk_ppfcs16.c */,
ECED61E110F98926006B4DC9 /* tsk_ppfcs16.h */,
ECED61E210F98926006B4DC9 /* tsk_runnable.c */,
ECED61E310F98926006B4DC9 /* tsk_runnable.h */,
ECED61E410F98926006B4DC9 /* tsk_safeobj.c */,
ECED61E510F98926006B4DC9 /* tsk_safeobj.h */,
ECED61E610F98926006B4DC9 /* tsk_semaphore.c */,
ECED61E710F98926006B4DC9 /* tsk_semaphore.h */,
ECED61E810F98926006B4DC9 /* tsk_sha1.c */,
ECED61E910F98926006B4DC9 /* tsk_sha1.h */,
ECED61EA10F98926006B4DC9 /* tsk_string.c */,
ECED61EB10F98926006B4DC9 /* tsk_string.h */,
ECED61EC10F98926006B4DC9 /* tsk_thread.c */,
ECED61ED10F98926006B4DC9 /* tsk_thread.h */,
ECED61EE10F98926006B4DC9 /* tsk_time.c */,
ECED61EF10F98926006B4DC9 /* tsk_time.h */,
ECED61F010F98926006B4DC9 /* tsk_timer.c */,
ECED61F110F98926006B4DC9 /* tsk_timer.h */,
ECED61F210F98926006B4DC9 /* tsk_url.c */,
ECED61F310F98926006B4DC9 /* tsk_url.h */,
ECED61F410F98926006B4DC9 /* tsk_xml.c */,
ECED61F510F98926006B4DC9 /* tsk_xml.h */,
);
name = tinySAK;
sourceTree = "<group>";
};
ECF4BCBB11434C1000B7C09B /* tinyNET */ = {
isa = PBXGroup;
children = (
ECE4075E117CE19100A43CEB /* ragel */,
ECF4BCC611434C1000B7C09B /* src */,
);
name = tinyNET;
path = ../../tinyNET;
sourceTree = SOURCE_ROOT;
};
ECF4BCC611434C1000B7C09B /* src */ = {
isa = PBXGroup;
children = (
ECF4BCC711434C1000B7C09B /* dhcp */,
ECF4BCD011434C1000B7C09B /* dhcp6 */,
ECF4BCD911434C1100B7C09B /* dns */,
ECF4BCF611434C1100B7C09B /* ice */,
ECF4BCFB11434C1100B7C09B /* stun */,
ECF4BD0311434C1100B7C09B /* tls */,
ECF4BD1911434C1100B7C09B /* turn */,
ECE40751117CE04B00A43CEB /* tnet_endianness.c */,
ECE40752117CE04B00A43CEB /* tnet_endianness.h */,
ECF4BD0711434C1100B7C09B /* tnet.h */,
ECF4BD0811434C1100B7C09B /* tnet_auth.c */,
ECF4BD0911434C1100B7C09B /* tnet_auth.h */,
ECF4BD0A11434C1100B7C09B /* tnet_hardwares.h */,
ECF4BD0611434C1100B7C09B /* tnet.c */,
ECF4BD0211434C1100B7C09B /* tinyNET_config.h */,
ECF4BD0B11434C1100B7C09B /* tnet_nat.c */,
ECF4BD0C11434C1100B7C09B /* tnet_nat.h */,
ECF4BD0D11434C1100B7C09B /* tnet_poll.c */,
ECF4BD0E11434C1100B7C09B /* tnet_poll.h */,
ECF4BD0F11434C1100B7C09B /* tnet_proto.h */,
ECF4BD1011434C1100B7C09B /* tnet_socket.c */,
ECF4BD1111434C1100B7C09B /* tnet_socket.h */,
ECF4BD1211434C1100B7C09B /* tnet_transport.c */,
ECF4BD1311434C1100B7C09B /* tnet_transport.h */,
ECF4BD1411434C1100B7C09B /* tnet_transport_poll.c */,
ECF4BD1511434C1100B7C09B /* tnet_transport_win32.c */,
ECF4BD1611434C1100B7C09B /* tnet_types.h */,
ECF4BD1711434C1100B7C09B /* tnet_utils.c */,
ECF4BD1811434C1100B7C09B /* tnet_utils.h */,
);
path = src;
sourceTree = "<group>";
};
ECF4BCC711434C1000B7C09B /* dhcp */ = {
isa = PBXGroup;
children = (
ECF4BCC811434C1000B7C09B /* tnet_dhcp.c */,
ECF4BCC911434C1000B7C09B /* tnet_dhcp.h */,
ECF4BCCA11434C1000B7C09B /* tnet_dhcp_message.c */,
ECF4BCCB11434C1000B7C09B /* tnet_dhcp_message.h */,
ECF4BCCC11434C1000B7C09B /* tnet_dhcp_option.c */,
ECF4BCCD11434C1000B7C09B /* tnet_dhcp_option.h */,
ECF4BCCE11434C1000B7C09B /* tnet_dhcp_option_sip.c */,
ECF4BCCF11434C1000B7C09B /* tnet_dhcp_option_sip.h */,
);
path = dhcp;
sourceTree = "<group>";
};
ECF4BCD011434C1000B7C09B /* dhcp6 */ = {
isa = PBXGroup;
children = (
ECF4BCD111434C1000B7C09B /* tnet_dhcp6.c */,
ECF4BCD211434C1000B7C09B /* tnet_dhcp6.h */,
ECF4BCD311434C1000B7C09B /* tnet_dhcp6_duid.c */,
ECF4BCD411434C1000B7C09B /* tnet_dhcp6_duid.h */,
ECF4BCD511434C1000B7C09B /* tnet_dhcp6_message.c */,
ECF4BCD611434C1000B7C09B /* tnet_dhcp6_message.h */,
ECF4BCD711434C1000B7C09B /* tnet_dhcp6_option.c */,
ECF4BCD811434C1100B7C09B /* tnet_dhcp6_option.h */,
);
path = dhcp6;
sourceTree = "<group>";
};
ECF4BCD911434C1100B7C09B /* dns */ = {
isa = PBXGroup;
children = (
ECE40755117CE09C00A43CEB /* tnet_dns_regexp.c */,
ECE40756117CE09C00A43CEB /* tnet_dns_regexp.h */,
ECE40757117CE09C00A43CEB /* tnet_dns_resolvconf.c */,
ECE40758117CE09C00A43CEB /* tnet_dns_resolvconf.h */,
ECF4BCDA11434C1100B7C09B /* tnet_dns.c */,
ECF4BCDB11434C1100B7C09B /* tnet_dns.h */,
ECF4BCDC11434C1100B7C09B /* tnet_dns_a.c */,
ECF4BCDD11434C1100B7C09B /* tnet_dns_a.h */,
ECF4BCDE11434C1100B7C09B /* tnet_dns_aaaa.c */,
ECF4BCDF11434C1100B7C09B /* tnet_dns_aaaa.h */,
ECF4BCE011434C1100B7C09B /* tnet_dns_cname.c */,
ECF4BCE111434C1100B7C09B /* tnet_dns_cname.h */,
ECF4BCE211434C1100B7C09B /* tnet_dns_message.c */,
ECF4BCE311434C1100B7C09B /* tnet_dns_message.h */,
ECF4BCE411434C1100B7C09B /* tnet_dns_mx.c */,
ECF4BCE511434C1100B7C09B /* tnet_dns_mx.h */,
ECF4BCE611434C1100B7C09B /* tnet_dns_naptr.c */,
ECF4BCE711434C1100B7C09B /* tnet_dns_naptr.h */,
ECF4BCE811434C1100B7C09B /* tnet_dns_ns.c */,
ECF4BCE911434C1100B7C09B /* tnet_dns_ns.h */,
ECF4BCEA11434C1100B7C09B /* tnet_dns_opt.c */,
ECF4BCEB11434C1100B7C09B /* tnet_dns_opt.h */,
ECF4BCEC11434C1100B7C09B /* tnet_dns_ptr.c */,
ECF4BCED11434C1100B7C09B /* tnet_dns_ptr.h */,
ECF4BCEE11434C1100B7C09B /* tnet_dns_rr.c */,
ECF4BCEF11434C1100B7C09B /* tnet_dns_rr.h */,
ECF4BCF011434C1100B7C09B /* tnet_dns_soa.c */,
ECF4BCF111434C1100B7C09B /* tnet_dns_soa.h */,
ECF4BCF211434C1100B7C09B /* tnet_dns_srv.c */,
ECF4BCF311434C1100B7C09B /* tnet_dns_srv.h */,
ECF4BCF411434C1100B7C09B /* tnet_dns_txt.c */,
ECF4BCF511434C1100B7C09B /* tnet_dns_txt.h */,
);
path = dns;
sourceTree = "<group>";
};
ECF4BCF611434C1100B7C09B /* ice */ = {
isa = PBXGroup;
children = (
ECF4BCF711434C1100B7C09B /* tnet_ice.c */,
ECF4BCF811434C1100B7C09B /* tnet_ice.h */,
);
path = ice;
sourceTree = "<group>";
};
ECF4BCFB11434C1100B7C09B /* stun */ = {
isa = PBXGroup;
children = (
ECF4BCFC11434C1100B7C09B /* tnet_stun.c */,
ECF4BCFD11434C1100B7C09B /* tnet_stun.h */,
ECF4BCFE11434C1100B7C09B /* tnet_stun_attribute.c */,
ECF4BCFF11434C1100B7C09B /* tnet_stun_attribute.h */,
ECF4BD0011434C1100B7C09B /* tnet_stun_message.c */,
ECF4BD0111434C1100B7C09B /* tnet_stun_message.h */,
);
path = stun;
sourceTree = "<group>";
};
ECF4BD0311434C1100B7C09B /* tls */ = {
isa = PBXGroup;
children = (
ECF4BD0411434C1100B7C09B /* tnet_tls.c */,
ECF4BD0511434C1100B7C09B /* tnet_tls.h */,
);
path = tls;
sourceTree = "<group>";
};
ECF4BD1911434C1100B7C09B /* turn */ = {
isa = PBXGroup;
children = (
ECF4BD1A11434C1100B7C09B /* tnet_turn.c */,
ECF4BD1B11434C1100B7C09B /* tnet_turn.h */,
ECF4BD1C11434C1100B7C09B /* tnet_turn_attribute.c */,
ECF4BD1D11434C1100B7C09B /* tnet_turn_attribute.h */,
ECF4BD1E11434C1100B7C09B /* tnet_turn_message.c */,
ECF4BD1F11434C1100B7C09B /* tnet_turn_message.h */,
);
path = turn;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
D2AAC0600554660B00DB518D /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECE407AE117CE1FD00A43CEB /* thttp.h in Headers */,
ECE407AF117CE1FD00A43CEB /* thttp_auth.h in Headers */,
ECE407B0117CE1FD00A43CEB /* thttp_challenge.h in Headers */,
ECE407B1117CE1FD00A43CEB /* thttp_header.h in Headers */,
ECE407B2117CE1FD00A43CEB /* thttp_header_Authorization.h in Headers */,
ECE407B3117CE1FD00A43CEB /* thttp_header_Content_Length.h in Headers */,
ECE407B4117CE1FD00A43CEB /* thttp_header_Content_Type.h in Headers */,
ECE407B5117CE1FD00A43CEB /* thttp_header_Dummy.h in Headers */,
ECE407B6117CE1FD00A43CEB /* thttp_header_ETag.h in Headers */,
ECE407B7117CE1FD00A43CEB /* thttp_header_Transfer_Encoding.h in Headers */,
ECE407B8117CE1FD00A43CEB /* thttp_header_WWW_Authenticate.h in Headers */,
ECE407B9117CE1FD00A43CEB /* thttp_parser_header.h in Headers */,
ECE407BA117CE1FD00A43CEB /* thttp_parser_message.h in Headers */,
ECE407BB117CE1FD00A43CEB /* thttp_parser_url.h in Headers */,
ECE407BC117CE1FD00A43CEB /* thttp_action.h in Headers */,
ECE407BD117CE1FD00A43CEB /* thttp_dialog.h in Headers */,
ECE407BE117CE1FD00A43CEB /* thttp_event.h in Headers */,
ECE407BF117CE1FD00A43CEB /* thttp_message.h in Headers */,
ECE407C0117CE1FD00A43CEB /* thttp_session.h in Headers */,
ECE407C1117CE1FD00A43CEB /* thttp_url.h in Headers */,
ECE407C2117CE1FD00A43CEB /* tinyhttp.h in Headers */,
ECE407C3117CE1FD00A43CEB /* tinyhttp_config.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECED61B810F988E7006B4DC9 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECED61F610F98926006B4DC9 /* tinySAK_config.h in Headers */,
ECED61F810F98926006B4DC9 /* tsk.h in Headers */,
ECED61FA10F98926006B4DC9 /* tsk_base64.h in Headers */,
ECED61FC10F98926006B4DC9 /* tsk_binaryutils.h in Headers */,
ECED61FE10F98926006B4DC9 /* tsk_buffer.h in Headers */,
ECED620010F98926006B4DC9 /* tsk_condwait.h in Headers */,
ECED620210F98926006B4DC9 /* tsk_debug.h in Headers */,
ECED620310F98926006B4DC9 /* tsk_errno.h in Headers */,
ECED620710F98926006B4DC9 /* tsk_hmac.h in Headers */,
ECED620910F98926006B4DC9 /* tsk_list.h in Headers */,
ECED620C10F98926006B4DC9 /* tsk_md5.h in Headers */,
ECED620E10F98926006B4DC9 /* tsk_memory.h in Headers */,
ECED621010F98926006B4DC9 /* tsk_mutex.h in Headers */,
ECED621210F98926006B4DC9 /* tsk_object.h in Headers */,
ECED621410F98926006B4DC9 /* tsk_params.h in Headers */,
ECED621610F98926006B4DC9 /* tsk_ppfcs16.h in Headers */,
ECED621810F98926006B4DC9 /* tsk_runnable.h in Headers */,
ECED621A10F98926006B4DC9 /* tsk_safeobj.h in Headers */,
ECED621C10F98926006B4DC9 /* tsk_semaphore.h in Headers */,
ECED621E10F98926006B4DC9 /* tsk_sha1.h in Headers */,
ECED622010F98926006B4DC9 /* tsk_string.h in Headers */,
ECED622210F98926006B4DC9 /* tsk_thread.h in Headers */,
ECED622410F98926006B4DC9 /* tsk_time.h in Headers */,
ECED622610F98926006B4DC9 /* tsk_timer.h in Headers */,
ECED622810F98926006B4DC9 /* tsk_url.h in Headers */,
ECED622A10F98926006B4DC9 /* tsk_xml.h in Headers */,
ECF4BD9E11434CA000B7C09B /* tsk_fsm.h in Headers */,
ECF4BDA011434CA000B7C09B /* tsk_ppfcs32.h in Headers */,
ECF4BDA211434CA000B7C09B /* tsk_ragel_state.h in Headers */,
ECF4BDA411434CA000B7C09B /* tsk_uuid.h in Headers */,
ECE407E8117CE27700A43CEB /* tsk_common.h in Headers */,
ECE407EA117CE27700A43CEB /* tsk_options.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF4BCB011434BA800B7C09B /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECF4BD3411434C1100B7C09B /* tnet_dhcp.h in Headers */,
ECF4BD3611434C1100B7C09B /* tnet_dhcp_message.h in Headers */,
ECF4BD3811434C1100B7C09B /* tnet_dhcp_option.h in Headers */,
ECF4BD3A11434C1100B7C09B /* tnet_dhcp_option_sip.h in Headers */,
ECF4BD3C11434C1100B7C09B /* tnet_dhcp6.h in Headers */,
ECF4BD3E11434C1100B7C09B /* tnet_dhcp6_duid.h in Headers */,
ECF4BD4011434C1100B7C09B /* tnet_dhcp6_message.h in Headers */,
ECF4BD4211434C1100B7C09B /* tnet_dhcp6_option.h in Headers */,
ECF4BD4411434C1100B7C09B /* tnet_dns.h in Headers */,
ECF4BD4611434C1100B7C09B /* tnet_dns_a.h in Headers */,
ECF4BD4811434C1100B7C09B /* tnet_dns_aaaa.h in Headers */,
ECF4BD4A11434C1100B7C09B /* tnet_dns_cname.h in Headers */,
ECF4BD4C11434C1100B7C09B /* tnet_dns_message.h in Headers */,
ECF4BD4E11434C1100B7C09B /* tnet_dns_mx.h in Headers */,
ECF4BD5011434C1100B7C09B /* tnet_dns_naptr.h in Headers */,
ECF4BD5211434C1100B7C09B /* tnet_dns_ns.h in Headers */,
ECF4BD5411434C1100B7C09B /* tnet_dns_opt.h in Headers */,
ECF4BD5611434C1100B7C09B /* tnet_dns_ptr.h in Headers */,
ECF4BD5811434C1100B7C09B /* tnet_dns_rr.h in Headers */,
ECF4BD5A11434C1100B7C09B /* tnet_dns_soa.h in Headers */,
ECF4BD5C11434C1100B7C09B /* tnet_dns_srv.h in Headers */,
ECF4BD5E11434C1100B7C09B /* tnet_dns_txt.h in Headers */,
ECF4BD6011434C1100B7C09B /* tnet_ice.h in Headers */,
ECF4BD6311434C1100B7C09B /* tnet_stun.h in Headers */,
ECF4BD6511434C1100B7C09B /* tnet_stun_attribute.h in Headers */,
ECF4BD6711434C1100B7C09B /* tnet_stun_message.h in Headers */,
ECF4BD6811434C1100B7C09B /* tinyNET_config.h in Headers */,
ECF4BD6A11434C1100B7C09B /* tnet_tls.h in Headers */,
ECF4BD6C11434C1100B7C09B /* tnet.h in Headers */,
ECF4BD6E11434C1100B7C09B /* tnet_auth.h in Headers */,
ECF4BD6F11434C1100B7C09B /* tnet_hardwares.h in Headers */,
ECF4BD7111434C1100B7C09B /* tnet_nat.h in Headers */,
ECF4BD7311434C1100B7C09B /* tnet_poll.h in Headers */,
ECF4BD7411434C1100B7C09B /* tnet_proto.h in Headers */,
ECF4BD7611434C1100B7C09B /* tnet_socket.h in Headers */,
ECF4BD7811434C1100B7C09B /* tnet_transport.h in Headers */,
ECF4BD7B11434C1100B7C09B /* tnet_types.h in Headers */,
ECF4BD7D11434C1100B7C09B /* tnet_utils.h in Headers */,
ECF4BD7F11434C1100B7C09B /* tnet_turn.h in Headers */,
ECF4BD8111434C1100B7C09B /* tnet_turn_attribute.h in Headers */,
ECF4BD8311434C1100B7C09B /* tnet_turn_message.h in Headers */,
ECE40754117CE04B00A43CEB /* tnet_endianness.h in Headers */,
ECE4075A117CE09C00A43CEB /* tnet_dns_regexp.h in Headers */,
ECE4075C117CE09C00A43CEB /* tnet_dns_resolvconf.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
D2AAC0620554660B00DB518D /* tinyHTTP */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1DEB914A08733D8E0010E9CD /* Build configuration list for PBXNativeTarget "tinyHTTP" */;
buildPhases = (
D2AAC0600554660B00DB518D /* Headers */,
D2AAC0610554660B00DB518D /* Sources */,
D289988505E68E00004EDB86 /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECED622E10F9899F006B4DC9 /* PBXTargetDependency */,
ECF4BDA911434CC200B7C09B /* PBXTargetDependency */,
);
name = tinyHTTP;
productName = tinyHTTP;
productReference = D2AAC0630554660B00DB518D /* libtinyHTTP.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECED61BB10F988E7006B4DC9 /* tinySAK */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECED61C010F988F6006B4DC9 /* Build configuration list for PBXNativeTarget "tinySAK" */;
buildPhases = (
ECED61B810F988E7006B4DC9 /* Headers */,
ECED61B910F988E7006B4DC9 /* Sources */,
ECED61BA10F988E7006B4DC9 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = tinySAK;
productName = tinySAK;
productReference = ECED61BC10F988E7006B4DC9 /* libtinySAK.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECED623C10F98B46006B4DC9 /* test */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECED624110F98B65006B4DC9 /* Build configuration list for PBXNativeTarget "test" */;
buildPhases = (
ECED623A10F98B46006B4DC9 /* Sources */,
ECED623B10F98B46006B4DC9 /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECED624C10F98B85006B4DC9 /* PBXTargetDependency */,
ECED624E10F98B85006B4DC9 /* PBXTargetDependency */,
ECE4083E117CE52000A43CEB /* PBXTargetDependency */,
);
name = test;
productName = test;
productReference = ECED623D10F98B46006B4DC9 /* test */;
productType = "com.apple.product-type.tool";
};
ECF4BCB311434BA800B7C09B /* tinyNET */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECF4BCB711434BC700B7C09B /* Build configuration list for PBXNativeTarget "tinyNET" */;
buildPhases = (
ECF4BCB011434BA800B7C09B /* Headers */,
ECF4BCB111434BA800B7C09B /* Sources */,
ECF4BCB211434BA800B7C09B /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECF4BCB911434BF400B7C09B /* PBXTargetDependency */,
);
name = tinyNET;
productName = tinyNET;
productReference = ECF4BCB411434BA800B7C09B /* libtinyNET.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
08FB7793FE84155DC02AAC07 /* Project object */ = {
isa = PBXProject;
buildConfigurationList = 1DEB914E08733D8E0010E9CD /* Build configuration list for PBXProject "tinyHTTP" */;
compatibilityVersion = "Xcode 3.1";
hasScannedForEncodings = 1;
mainGroup = 08FB7794FE84155DC02AAC07 /* tinyHTTP */;
projectDirPath = "";
projectRoot = "";
targets = (
D2AAC0620554660B00DB518D /* tinyHTTP */,
ECED61BB10F988E7006B4DC9 /* tinySAK */,
ECED623C10F98B46006B4DC9 /* test */,
ECF4BCB311434BA800B7C09B /* tinyNET */,
);
};
/* End PBXProject section */
/* Begin PBXSourcesBuildPhase section */
D2AAC0610554660B00DB518D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECE407C4117CE1FD00A43CEB /* thttp_auth.c in Sources */,
ECE407C5117CE1FD00A43CEB /* thttp_challenge.c in Sources */,
ECE407C6117CE1FD00A43CEB /* thttp_header.c in Sources */,
ECE407C7117CE1FD00A43CEB /* thttp_header_Authorization.c in Sources */,
ECE407C8117CE1FD00A43CEB /* thttp_header_Content_Length.c in Sources */,
ECE407C9117CE1FD00A43CEB /* thttp_header_Content_Type.c in Sources */,
ECE407CA117CE1FD00A43CEB /* thttp_header_Dummy.c in Sources */,
ECE407CB117CE1FD00A43CEB /* thttp_header_ETag.c in Sources */,
ECE407CC117CE1FD00A43CEB /* thttp_header_Transfer_Encoding.c in Sources */,
ECE407CD117CE1FD00A43CEB /* thttp_header_WWW_Authenticate.c in Sources */,
ECE407CF117CE1FD00A43CEB /* thttp_parser_header.c in Sources */,
ECE407D0117CE1FD00A43CEB /* thttp_parser_message.c in Sources */,
ECE407D1117CE1FD00A43CEB /* thttp_parser_url.c in Sources */,
ECE407D2117CE1FD00A43CEB /* thttp.c in Sources */,
ECE407D3117CE1FD00A43CEB /* thttp_action.c in Sources */,
ECE407D4117CE1FD00A43CEB /* thttp_dialog.c in Sources */,
ECE407D5117CE1FD00A43CEB /* thttp_event.c in Sources */,
ECE407D6117CE1FD00A43CEB /* thttp_message.c in Sources */,
ECE407D7117CE1FD00A43CEB /* thttp_session.c in Sources */,
ECE407D8117CE1FD00A43CEB /* thttp_url.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECED61B910F988E7006B4DC9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECED61F710F98926006B4DC9 /* tsk.c in Sources */,
ECED61F910F98926006B4DC9 /* tsk_base64.c in Sources */,
ECED61FB10F98926006B4DC9 /* tsk_binaryutils.c in Sources */,
ECED61FD10F98926006B4DC9 /* tsk_buffer.c in Sources */,
ECED61FF10F98926006B4DC9 /* tsk_condwait.c in Sources */,
ECED620110F98926006B4DC9 /* tsk_debug.c in Sources */,
ECED620610F98926006B4DC9 /* tsk_hmac.c in Sources */,
ECED620810F98926006B4DC9 /* tsk_list.c in Sources */,
ECED620B10F98926006B4DC9 /* tsk_md5.c in Sources */,
ECED620D10F98926006B4DC9 /* tsk_memory.c in Sources */,
ECED620F10F98926006B4DC9 /* tsk_mutex.c in Sources */,
ECED621110F98926006B4DC9 /* tsk_object.c in Sources */,
ECED621310F98926006B4DC9 /* tsk_params.c in Sources */,
ECED621510F98926006B4DC9 /* tsk_ppfcs16.c in Sources */,
ECED621710F98926006B4DC9 /* tsk_runnable.c in Sources */,
ECED621910F98926006B4DC9 /* tsk_safeobj.c in Sources */,
ECED621B10F98926006B4DC9 /* tsk_semaphore.c in Sources */,
ECED621D10F98926006B4DC9 /* tsk_sha1.c in Sources */,
ECED621F10F98926006B4DC9 /* tsk_string.c in Sources */,
ECED622110F98926006B4DC9 /* tsk_thread.c in Sources */,
ECED622310F98926006B4DC9 /* tsk_time.c in Sources */,
ECED622510F98926006B4DC9 /* tsk_timer.c in Sources */,
ECED622710F98926006B4DC9 /* tsk_url.c in Sources */,
ECED622910F98926006B4DC9 /* tsk_xml.c in Sources */,
ECF4BD9D11434CA000B7C09B /* tsk_fsm.c in Sources */,
ECF4BD9F11434CA000B7C09B /* tsk_ppfcs32.c in Sources */,
ECF4BDA111434CA000B7C09B /* tsk_ragel_state.c in Sources */,
ECF4BDA311434CA000B7C09B /* tsk_uuid.c in Sources */,
ECE407E9117CE27700A43CEB /* tsk_options.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECED623A10F98B46006B4DC9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECE4083A117CE48D00A43CEB /* stdafx.c in Sources */,
ECE4083B117CE48D00A43CEB /* test.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECF4BCB111434BA800B7C09B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECF4BD3311434C1100B7C09B /* tnet_dhcp.c in Sources */,
ECF4BD3511434C1100B7C09B /* tnet_dhcp_message.c in Sources */,
ECF4BD3711434C1100B7C09B /* tnet_dhcp_option.c in Sources */,
ECF4BD3911434C1100B7C09B /* tnet_dhcp_option_sip.c in Sources */,
ECF4BD3B11434C1100B7C09B /* tnet_dhcp6.c in Sources */,
ECF4BD3D11434C1100B7C09B /* tnet_dhcp6_duid.c in Sources */,
ECF4BD3F11434C1100B7C09B /* tnet_dhcp6_message.c in Sources */,
ECF4BD4111434C1100B7C09B /* tnet_dhcp6_option.c in Sources */,
ECF4BD4311434C1100B7C09B /* tnet_dns.c in Sources */,
ECF4BD4511434C1100B7C09B /* tnet_dns_a.c in Sources */,
ECF4BD4711434C1100B7C09B /* tnet_dns_aaaa.c in Sources */,
ECF4BD4911434C1100B7C09B /* tnet_dns_cname.c in Sources */,
ECF4BD4B11434C1100B7C09B /* tnet_dns_message.c in Sources */,
ECF4BD4D11434C1100B7C09B /* tnet_dns_mx.c in Sources */,
ECF4BD4F11434C1100B7C09B /* tnet_dns_naptr.c in Sources */,
ECF4BD5111434C1100B7C09B /* tnet_dns_ns.c in Sources */,
ECF4BD5311434C1100B7C09B /* tnet_dns_opt.c in Sources */,
ECF4BD5511434C1100B7C09B /* tnet_dns_ptr.c in Sources */,
ECF4BD5711434C1100B7C09B /* tnet_dns_rr.c in Sources */,
ECF4BD5911434C1100B7C09B /* tnet_dns_soa.c in Sources */,
ECF4BD5B11434C1100B7C09B /* tnet_dns_srv.c in Sources */,
ECF4BD5D11434C1100B7C09B /* tnet_dns_txt.c in Sources */,
ECF4BD5F11434C1100B7C09B /* tnet_ice.c in Sources */,
ECF4BD6211434C1100B7C09B /* tnet_stun.c in Sources */,
ECF4BD6411434C1100B7C09B /* tnet_stun_attribute.c in Sources */,
ECF4BD6611434C1100B7C09B /* tnet_stun_message.c in Sources */,
ECF4BD6911434C1100B7C09B /* tnet_tls.c in Sources */,
ECF4BD6B11434C1100B7C09B /* tnet.c in Sources */,
ECF4BD6D11434C1100B7C09B /* tnet_auth.c in Sources */,
ECF4BD7011434C1100B7C09B /* tnet_nat.c in Sources */,
ECF4BD7211434C1100B7C09B /* tnet_poll.c in Sources */,
ECF4BD7511434C1100B7C09B /* tnet_socket.c in Sources */,
ECF4BD7711434C1100B7C09B /* tnet_transport.c in Sources */,
ECF4BD7911434C1100B7C09B /* tnet_transport_poll.c in Sources */,
ECF4BD7A11434C1100B7C09B /* tnet_transport_win32.c in Sources */,
ECF4BD7C11434C1100B7C09B /* tnet_utils.c in Sources */,
ECF4BD7E11434C1100B7C09B /* tnet_turn.c in Sources */,
ECF4BD8011434C1100B7C09B /* tnet_turn_attribute.c in Sources */,
ECF4BD8211434C1100B7C09B /* tnet_turn_message.c in Sources */,
ECE40753117CE04B00A43CEB /* tnet_endianness.c in Sources */,
ECE40759117CE09C00A43CEB /* tnet_dns_regexp.c in Sources */,
ECE4075B117CE09C00A43CEB /* tnet_dns_resolvconf.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
ECE4083E117CE52000A43CEB /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF4BCB311434BA800B7C09B /* tinyNET */;
targetProxy = ECE4083D117CE52000A43CEB /* PBXContainerItemProxy */;
};
ECED622E10F9899F006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECED61BB10F988E7006B4DC9 /* tinySAK */;
targetProxy = ECED622D10F9899F006B4DC9 /* PBXContainerItemProxy */;
};
ECED624C10F98B85006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = D2AAC0620554660B00DB518D /* tinyHTTP */;
targetProxy = ECED624B10F98B85006B4DC9 /* PBXContainerItemProxy */;
};
ECED624E10F98B85006B4DC9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECED61BB10F988E7006B4DC9 /* tinySAK */;
targetProxy = ECED624D10F98B85006B4DC9 /* PBXContainerItemProxy */;
};
ECF4BCB911434BF400B7C09B /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECED61BB10F988E7006B4DC9 /* tinySAK */;
targetProxy = ECF4BCB811434BF400B7C09B /* PBXContainerItemProxy */;
};
ECF4BDA911434CC200B7C09B /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECF4BCB311434BA800B7C09B /* tinyNET */;
targetProxy = ECF4BDA811434CC200B7C09B /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
1DEB914B08733D8E0010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
EXECUTABLE_PREFIX = lib;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
HEADER_SEARCH_PATHS = (
../../../doubango/tinyHTTP/include,
../../../doubango/tinySAK/src,
);
INSTALL_PATH = /usr/local/lib;
LIBRARY_SEARCH_PATHS = "";
OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
PRODUCT_NAME = tinyHTTP;
};
name = Debug;
};
1DEB914C08733D8E0010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
EXECUTABLE_PREFIX = lib;
GCC_MODEL_TUNING = G5;
INSTALL_PATH = /usr/local/lib;
PRODUCT_NAME = tinyHTTP;
};
name = Release;
};
1DEB914F08733D8E0010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
ONLY_ACTIVE_ARCH = YES;
PREBINDING = NO;
SDKROOT = macosx10.5;
};
name = Debug;
};
1DEB915008733D8E0010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
SDKROOT = macosx10.5;
};
name = Release;
};
ECED61BD10F988E8006B4DC9 /* 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;
OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
OTHER_CPLUSPLUSFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
PREBINDING = NO;
PRODUCT_NAME = tinySAK;
};
name = Debug;
};
ECED61BE10F988E8006B4DC9 /* 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 = tinySAK;
ZERO_LINK = NO;
};
name = Release;
};
ECED623F10F98B47006B4DC9 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
HEADER_SEARCH_PATHS = (
../../../doubango/tinyHTTP/include,
../../../doubango/tinyNET/src,
../../../doubango/tinySAK/src,
);
INSTALL_PATH = /usr/local/bin;
OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
PREBINDING = NO;
PRODUCT_NAME = test;
};
name = Debug;
};
ECED624010F98B47006B4DC9 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
GCC_MODEL_TUNING = G5;
INSTALL_PATH = /usr/local/bin;
PREBINDING = NO;
PRODUCT_NAME = test;
ZERO_LINK = NO;
};
name = Release;
};
ECF4BCB511434BA800B7C09B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
EXECUTABLE_PREFIX = lib;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
HEADER_SEARCH_PATHS = (
../../../doubango/tinySAK/src,
../../../doubango/tinyNET/src,
);
INSTALL_PATH = /usr/local/lib;
OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
PREBINDING = NO;
PRODUCT_NAME = tinyNET;
};
name = Debug;
};
ECF4BCB611434BA800B7C09B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
EXECUTABLE_PREFIX = lib;
GCC_ENABLE_FIX_AND_CONTINUE = NO;
GCC_MODEL_TUNING = G5;
INSTALL_PATH = /usr/local/lib;
PREBINDING = NO;
PRODUCT_NAME = tinyNET;
ZERO_LINK = NO;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1DEB914A08733D8E0010E9CD /* Build configuration list for PBXNativeTarget "tinyHTTP" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB914B08733D8E0010E9CD /* Debug */,
1DEB914C08733D8E0010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
1DEB914E08733D8E0010E9CD /* Build configuration list for PBXProject "tinyHTTP" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB914F08733D8E0010E9CD /* Debug */,
1DEB915008733D8E0010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECED61C010F988F6006B4DC9 /* Build configuration list for PBXNativeTarget "tinySAK" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECED61BD10F988E8006B4DC9 /* Debug */,
ECED61BE10F988E8006B4DC9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECED624110F98B65006B4DC9 /* Build configuration list for PBXNativeTarget "test" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECED623F10F98B47006B4DC9 /* Debug */,
ECED624010F98B47006B4DC9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECF4BCB711434BC700B7C09B /* Build configuration list for PBXNativeTarget "tinyNET" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECF4BCB511434BA800B7C09B /* Debug */,
ECF4BCB611434BA800B7C09B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
}
|