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
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 45;
objects = {
/* Begin PBXBuildFile section */
EC9A8D391124B7C90046F5EC /* tsk_ppfcs32.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D351124B7C90046F5EC /* tsk_ppfcs32.c */; };
EC9A8D3A1124B7C90046F5EC /* tsk_ppfcs32.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D361124B7C90046F5EC /* tsk_ppfcs32.h */; };
EC9A8D3B1124B7C90046F5EC /* tsk_uuid.c in Sources */ = {isa = PBXBuildFile; fileRef = EC9A8D371124B7C90046F5EC /* tsk_uuid.c */; };
EC9A8D3C1124B7C90046F5EC /* tsk_uuid.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A8D381124B7C90046F5EC /* tsk_uuid.h */; };
ECE408D3117CE92D00A43CEB /* tsk_options.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE408D1117CE92D00A43CEB /* tsk_options.c */; };
ECE408D4117CE92D00A43CEB /* tsk_options.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE408D2117CE92D00A43CEB /* tsk_options.h */; };
ECE5BA4A10EF6D8500B7EDDD /* tinySAK_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA1510EF6D8500B7EDDD /* tinySAK_config.h */; };
ECE5BA4B10EF6D8500B7EDDD /* tsk.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA1610EF6D8500B7EDDD /* tsk.c */; };
ECE5BA4C10EF6D8500B7EDDD /* tsk.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA1710EF6D8500B7EDDD /* tsk.h */; };
ECE5BA4D10EF6D8500B7EDDD /* tsk_base64.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA1810EF6D8500B7EDDD /* tsk_base64.c */; };
ECE5BA4E10EF6D8500B7EDDD /* tsk_base64.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA1910EF6D8500B7EDDD /* tsk_base64.h */; };
ECE5BA4F10EF6D8500B7EDDD /* tsk_binaryutils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA1A10EF6D8500B7EDDD /* tsk_binaryutils.c */; };
ECE5BA5010EF6D8500B7EDDD /* tsk_binaryutils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA1B10EF6D8500B7EDDD /* tsk_binaryutils.h */; };
ECE5BA5110EF6D8500B7EDDD /* tsk_buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA1C10EF6D8500B7EDDD /* tsk_buffer.c */; };
ECE5BA5210EF6D8500B7EDDD /* tsk_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA1D10EF6D8500B7EDDD /* tsk_buffer.h */; };
ECE5BA5310EF6D8500B7EDDD /* tsk_condwait.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA1E10EF6D8500B7EDDD /* tsk_condwait.c */; };
ECE5BA5410EF6D8500B7EDDD /* tsk_condwait.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA1F10EF6D8500B7EDDD /* tsk_condwait.h */; };
ECE5BA5510EF6D8500B7EDDD /* tsk_debug.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2010EF6D8500B7EDDD /* tsk_debug.c */; };
ECE5BA5610EF6D8500B7EDDD /* tsk_debug.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2110EF6D8500B7EDDD /* tsk_debug.h */; };
ECE5BA5710EF6D8500B7EDDD /* tsk_errno.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2210EF6D8500B7EDDD /* tsk_errno.h */; };
ECE5BA5A10EF6D8500B7EDDD /* tsk_hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2510EF6D8500B7EDDD /* tsk_hmac.c */; };
ECE5BA5B10EF6D8500B7EDDD /* tsk_hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2610EF6D8500B7EDDD /* tsk_hmac.h */; };
ECE5BA5C10EF6D8500B7EDDD /* tsk_list.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2710EF6D8500B7EDDD /* tsk_list.c */; };
ECE5BA5D10EF6D8500B7EDDD /* tsk_list.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2810EF6D8500B7EDDD /* tsk_list.h */; };
ECE5BA5F10EF6D8500B7EDDD /* tsk_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2A10EF6D8500B7EDDD /* tsk_md5.c */; };
ECE5BA6010EF6D8500B7EDDD /* tsk_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2B10EF6D8500B7EDDD /* tsk_md5.h */; };
ECE5BA6110EF6D8500B7EDDD /* tsk_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2C10EF6D8500B7EDDD /* tsk_memory.c */; };
ECE5BA6210EF6D8500B7EDDD /* tsk_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2D10EF6D8500B7EDDD /* tsk_memory.h */; };
ECE5BA6310EF6D8500B7EDDD /* tsk_mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA2E10EF6D8500B7EDDD /* tsk_mutex.c */; };
ECE5BA6410EF6D8500B7EDDD /* tsk_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA2F10EF6D8500B7EDDD /* tsk_mutex.h */; };
ECE5BA6510EF6D8500B7EDDD /* tsk_object.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA3010EF6D8500B7EDDD /* tsk_object.c */; };
ECE5BA6610EF6D8500B7EDDD /* tsk_object.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA3110EF6D8500B7EDDD /* tsk_object.h */; };
ECE5BA6710EF6D8500B7EDDD /* tsk_params.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA3210EF6D8500B7EDDD /* tsk_params.c */; };
ECE5BA6810EF6D8500B7EDDD /* tsk_params.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA3310EF6D8500B7EDDD /* tsk_params.h */; };
ECE5BA6910EF6D8500B7EDDD /* tsk_ppfcs16.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA3410EF6D8500B7EDDD /* tsk_ppfcs16.c */; };
ECE5BA6A10EF6D8500B7EDDD /* tsk_ppfcs16.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA3510EF6D8500B7EDDD /* tsk_ppfcs16.h */; };
ECE5BA6B10EF6D8500B7EDDD /* tsk_runnable.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA3610EF6D8500B7EDDD /* tsk_runnable.c */; };
ECE5BA6C10EF6D8500B7EDDD /* tsk_runnable.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA3710EF6D8500B7EDDD /* tsk_runnable.h */; };
ECE5BA6D10EF6D8500B7EDDD /* tsk_safeobj.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA3810EF6D8500B7EDDD /* tsk_safeobj.c */; };
ECE5BA6E10EF6D8500B7EDDD /* tsk_safeobj.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA3910EF6D8500B7EDDD /* tsk_safeobj.h */; };
ECE5BA6F10EF6D8500B7EDDD /* tsk_semaphore.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA3A10EF6D8500B7EDDD /* tsk_semaphore.c */; };
ECE5BA7010EF6D8500B7EDDD /* tsk_semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA3B10EF6D8500B7EDDD /* tsk_semaphore.h */; };
ECE5BA7110EF6D8500B7EDDD /* tsk_sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA3C10EF6D8500B7EDDD /* tsk_sha1.c */; };
ECE5BA7210EF6D8500B7EDDD /* tsk_sha1.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA3D10EF6D8500B7EDDD /* tsk_sha1.h */; };
ECE5BA7310EF6D8500B7EDDD /* tsk_string.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA3E10EF6D8500B7EDDD /* tsk_string.c */; };
ECE5BA7410EF6D8500B7EDDD /* tsk_string.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA3F10EF6D8500B7EDDD /* tsk_string.h */; };
ECE5BA7510EF6D8500B7EDDD /* tsk_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA4010EF6D8500B7EDDD /* tsk_thread.c */; };
ECE5BA7610EF6D8500B7EDDD /* tsk_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA4110EF6D8500B7EDDD /* tsk_thread.h */; };
ECE5BA7710EF6D8500B7EDDD /* tsk_time.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA4210EF6D8500B7EDDD /* tsk_time.c */; };
ECE5BA7810EF6D8500B7EDDD /* tsk_time.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA4310EF6D8500B7EDDD /* tsk_time.h */; };
ECE5BA7910EF6D8500B7EDDD /* tsk_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA4410EF6D8500B7EDDD /* tsk_timer.c */; };
ECE5BA7A10EF6D8500B7EDDD /* tsk_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA4510EF6D8500B7EDDD /* tsk_timer.h */; };
ECE5BA7B10EF6D8500B7EDDD /* tsk_url.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA4610EF6D8500B7EDDD /* tsk_url.c */; };
ECE5BA7C10EF6D8500B7EDDD /* tsk_url.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA4710EF6D8500B7EDDD /* tsk_url.h */; };
ECE5BA7D10EF6D8500B7EDDD /* tsk_xml.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BA4810EF6D8500B7EDDD /* tsk_xml.c */; };
ECE5BA7E10EF6D8500B7EDDD /* tsk_xml.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE5BA4910EF6D8500B7EDDD /* tsk_xml.h */; };
ECE5BA8D10EF6DEC00B7EDDD /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECE5B98410EF6B6F00B7EDDD /* libtinySAK.dylib */; };
ECE5BAA410EF6E2500B7EDDD /* libtinyNET.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D2AAC0630554660B00DB518D /* libtinyNET.dylib */; };
ECE5BAA510EF6E2500B7EDDD /* libtinySAK.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = ECE5B98410EF6B6F00B7EDDD /* libtinySAK.dylib */; };
ECE5BAAF10EF6E4800B7EDDD /* stdafx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BAA710EF6E4800B7EDDD /* stdafx.c */; };
ECE5BAB010EF6E4800B7EDDD /* test.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE5BAAA10EF6E4800B7EDDD /* test.c */; };
ECF2B16C1165590300AA69D2 /* tsk_common.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1671165590300AA69D2 /* tsk_common.h */; };
ECF2B16D1165590300AA69D2 /* tsk_fsm.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1681165590300AA69D2 /* tsk_fsm.c */; };
ECF2B16E1165590300AA69D2 /* tsk_fsm.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1691165590300AA69D2 /* tsk_fsm.h */; };
ECF2B16F1165590300AA69D2 /* tsk_ragel_state.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B16A1165590300AA69D2 /* tsk_ragel_state.c */; };
ECF2B1701165590300AA69D2 /* tsk_ragel_state.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B16B1165590300AA69D2 /* tsk_ragel_state.h */; };
ECF2B1D91165590300AA69D2 /* tnet_dhcp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B17C1165590300AA69D2 /* tnet_dhcp.c */; };
ECF2B1DA1165590300AA69D2 /* tnet_dhcp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B17D1165590300AA69D2 /* tnet_dhcp.h */; };
ECF2B1DB1165590300AA69D2 /* tnet_dhcp_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B17E1165590300AA69D2 /* tnet_dhcp_message.c */; };
ECF2B1DC1165590300AA69D2 /* tnet_dhcp_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B17F1165590300AA69D2 /* tnet_dhcp_message.h */; };
ECF2B1DD1165590300AA69D2 /* tnet_dhcp_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1801165590300AA69D2 /* tnet_dhcp_option.c */; };
ECF2B1DE1165590300AA69D2 /* tnet_dhcp_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1811165590300AA69D2 /* tnet_dhcp_option.h */; };
ECF2B1DF1165590300AA69D2 /* tnet_dhcp_option_sip.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1821165590300AA69D2 /* tnet_dhcp_option_sip.c */; };
ECF2B1E01165590300AA69D2 /* tnet_dhcp_option_sip.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1831165590300AA69D2 /* tnet_dhcp_option_sip.h */; };
ECF2B1E11165590300AA69D2 /* tnet_dhcp6.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1851165590300AA69D2 /* tnet_dhcp6.c */; };
ECF2B1E21165590300AA69D2 /* tnet_dhcp6.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1861165590300AA69D2 /* tnet_dhcp6.h */; };
ECF2B1E31165590300AA69D2 /* tnet_dhcp6_duid.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1871165590300AA69D2 /* tnet_dhcp6_duid.c */; };
ECF2B1E41165590300AA69D2 /* tnet_dhcp6_duid.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1881165590300AA69D2 /* tnet_dhcp6_duid.h */; };
ECF2B1E51165590300AA69D2 /* tnet_dhcp6_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1891165590300AA69D2 /* tnet_dhcp6_message.c */; };
ECF2B1E61165590300AA69D2 /* tnet_dhcp6_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B18A1165590300AA69D2 /* tnet_dhcp6_message.h */; };
ECF2B1E71165590300AA69D2 /* tnet_dhcp6_option.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B18B1165590300AA69D2 /* tnet_dhcp6_option.c */; };
ECF2B1E81165590300AA69D2 /* tnet_dhcp6_option.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B18C1165590300AA69D2 /* tnet_dhcp6_option.h */; };
ECF2B1E91165590300AA69D2 /* tnet_dns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B18E1165590300AA69D2 /* tnet_dns.c */; };
ECF2B1EA1165590300AA69D2 /* tnet_dns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B18F1165590300AA69D2 /* tnet_dns.h */; };
ECF2B1EB1165590300AA69D2 /* tnet_dns_a.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1901165590300AA69D2 /* tnet_dns_a.c */; };
ECF2B1EC1165590300AA69D2 /* tnet_dns_a.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1911165590300AA69D2 /* tnet_dns_a.h */; };
ECF2B1ED1165590300AA69D2 /* tnet_dns_aaaa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1921165590300AA69D2 /* tnet_dns_aaaa.c */; };
ECF2B1EE1165590300AA69D2 /* tnet_dns_aaaa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1931165590300AA69D2 /* tnet_dns_aaaa.h */; };
ECF2B1EF1165590300AA69D2 /* tnet_dns_cname.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1941165590300AA69D2 /* tnet_dns_cname.c */; };
ECF2B1F01165590300AA69D2 /* tnet_dns_cname.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1951165590300AA69D2 /* tnet_dns_cname.h */; };
ECF2B1F11165590300AA69D2 /* tnet_dns_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1961165590300AA69D2 /* tnet_dns_message.c */; };
ECF2B1F21165590300AA69D2 /* tnet_dns_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1971165590300AA69D2 /* tnet_dns_message.h */; };
ECF2B1F31165590300AA69D2 /* tnet_dns_mx.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1981165590300AA69D2 /* tnet_dns_mx.c */; };
ECF2B1F41165590300AA69D2 /* tnet_dns_mx.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1991165590300AA69D2 /* tnet_dns_mx.h */; };
ECF2B1F51165590300AA69D2 /* tnet_dns_naptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B19A1165590300AA69D2 /* tnet_dns_naptr.c */; };
ECF2B1F61165590300AA69D2 /* tnet_dns_naptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B19B1165590300AA69D2 /* tnet_dns_naptr.h */; };
ECF2B1F71165590300AA69D2 /* tnet_dns_ns.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B19C1165590300AA69D2 /* tnet_dns_ns.c */; };
ECF2B1F81165590300AA69D2 /* tnet_dns_ns.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B19D1165590300AA69D2 /* tnet_dns_ns.h */; };
ECF2B1F91165590300AA69D2 /* tnet_dns_opt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B19E1165590300AA69D2 /* tnet_dns_opt.c */; };
ECF2B1FA1165590300AA69D2 /* tnet_dns_opt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B19F1165590300AA69D2 /* tnet_dns_opt.h */; };
ECF2B1FB1165590300AA69D2 /* tnet_dns_ptr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1A01165590300AA69D2 /* tnet_dns_ptr.c */; };
ECF2B1FC1165590300AA69D2 /* tnet_dns_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1A11165590300AA69D2 /* tnet_dns_ptr.h */; };
ECF2B1FD1165590300AA69D2 /* tnet_dns_regexp.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1A21165590300AA69D2 /* tnet_dns_regexp.c */; };
ECF2B1FE1165590300AA69D2 /* tnet_dns_regexp.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1A31165590300AA69D2 /* tnet_dns_regexp.h */; };
ECF2B1FF1165590300AA69D2 /* tnet_dns_resolvconf.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1A41165590300AA69D2 /* tnet_dns_resolvconf.c */; };
ECF2B2001165590300AA69D2 /* tnet_dns_resolvconf.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1A51165590300AA69D2 /* tnet_dns_resolvconf.h */; };
ECF2B2011165590300AA69D2 /* tnet_dns_rr.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1A61165590300AA69D2 /* tnet_dns_rr.c */; };
ECF2B2021165590300AA69D2 /* tnet_dns_rr.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1A71165590300AA69D2 /* tnet_dns_rr.h */; };
ECF2B2031165590300AA69D2 /* tnet_dns_soa.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1A81165590300AA69D2 /* tnet_dns_soa.c */; };
ECF2B2041165590300AA69D2 /* tnet_dns_soa.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1A91165590300AA69D2 /* tnet_dns_soa.h */; };
ECF2B2051165590300AA69D2 /* tnet_dns_srv.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1AA1165590300AA69D2 /* tnet_dns_srv.c */; };
ECF2B2061165590300AA69D2 /* tnet_dns_srv.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1AB1165590300AA69D2 /* tnet_dns_srv.h */; };
ECF2B2071165590300AA69D2 /* tnet_dns_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1AC1165590300AA69D2 /* tnet_dns_txt.c */; };
ECF2B2081165590300AA69D2 /* tnet_dns_txt.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1AD1165590300AA69D2 /* tnet_dns_txt.h */; };
ECF2B2091165590300AA69D2 /* tnet_ice.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1AF1165590300AA69D2 /* tnet_ice.c */; };
ECF2B20A1165590300AA69D2 /* tnet_ice.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1B01165590300AA69D2 /* tnet_ice.h */; };
ECF2B20C1165590300AA69D2 /* tnet_stun.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1B31165590300AA69D2 /* tnet_stun.c */; };
ECF2B20D1165590300AA69D2 /* tnet_stun.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1B41165590300AA69D2 /* tnet_stun.h */; };
ECF2B20E1165590300AA69D2 /* tnet_stun_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1B51165590300AA69D2 /* tnet_stun_attribute.c */; };
ECF2B20F1165590300AA69D2 /* tnet_stun_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1B61165590300AA69D2 /* tnet_stun_attribute.h */; };
ECF2B2101165590300AA69D2 /* tnet_stun_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1B71165590300AA69D2 /* tnet_stun_message.c */; };
ECF2B2111165590300AA69D2 /* tnet_stun_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1B81165590300AA69D2 /* tnet_stun_message.h */; };
ECF2B2121165590300AA69D2 /* tinyNET_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1B91165590300AA69D2 /* tinyNET_config.h */; };
ECF2B2131165590300AA69D2 /* tnet_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1BB1165590300AA69D2 /* tnet_tls.c */; };
ECF2B2141165590300AA69D2 /* tnet_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1BC1165590300AA69D2 /* tnet_tls.h */; };
ECF2B2151165590300AA69D2 /* tnet.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1BD1165590300AA69D2 /* tnet.c */; };
ECF2B2161165590300AA69D2 /* tnet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1BE1165590300AA69D2 /* tnet.h */; };
ECF2B2171165590300AA69D2 /* tnet_auth.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1BF1165590300AA69D2 /* tnet_auth.c */; };
ECF2B2181165590300AA69D2 /* tnet_auth.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1C01165590300AA69D2 /* tnet_auth.h */; };
ECF2B2191165590300AA69D2 /* tnet_endianness.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1C11165590300AA69D2 /* tnet_endianness.c */; };
ECF2B21A1165590300AA69D2 /* tnet_endianness.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1C21165590300AA69D2 /* tnet_endianness.h */; };
ECF2B21B1165590300AA69D2 /* tnet_hardwares.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1C31165590300AA69D2 /* tnet_hardwares.h */; };
ECF2B21C1165590300AA69D2 /* tnet_nat.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1C41165590300AA69D2 /* tnet_nat.c */; };
ECF2B21D1165590300AA69D2 /* tnet_nat.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1C51165590300AA69D2 /* tnet_nat.h */; };
ECF2B21E1165590300AA69D2 /* tnet_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1C61165590300AA69D2 /* tnet_poll.c */; };
ECF2B21F1165590300AA69D2 /* tnet_poll.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1C71165590300AA69D2 /* tnet_poll.h */; };
ECF2B2201165590300AA69D2 /* tnet_proto.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1C81165590300AA69D2 /* tnet_proto.h */; };
ECF2B2211165590300AA69D2 /* tnet_socket.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1C91165590300AA69D2 /* tnet_socket.c */; };
ECF2B2221165590300AA69D2 /* tnet_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1CA1165590300AA69D2 /* tnet_socket.h */; };
ECF2B2231165590300AA69D2 /* tnet_transport.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1CB1165590300AA69D2 /* tnet_transport.c */; };
ECF2B2241165590300AA69D2 /* tnet_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1CC1165590300AA69D2 /* tnet_transport.h */; };
ECF2B2251165590300AA69D2 /* tnet_transport_poll.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1CD1165590300AA69D2 /* tnet_transport_poll.c */; };
ECF2B2261165590300AA69D2 /* tnet_transport_win32.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1CE1165590300AA69D2 /* tnet_transport_win32.c */; };
ECF2B2271165590300AA69D2 /* tnet_types.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1CF1165590300AA69D2 /* tnet_types.h */; };
ECF2B2281165590300AA69D2 /* tnet_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1D01165590300AA69D2 /* tnet_utils.c */; };
ECF2B2291165590300AA69D2 /* tnet_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1D11165590300AA69D2 /* tnet_utils.h */; };
ECF2B22A1165590300AA69D2 /* tnet_turn.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1D31165590300AA69D2 /* tnet_turn.c */; };
ECF2B22B1165590300AA69D2 /* tnet_turn.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1D41165590300AA69D2 /* tnet_turn.h */; };
ECF2B22C1165590300AA69D2 /* tnet_turn_attribute.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1D51165590300AA69D2 /* tnet_turn_attribute.c */; };
ECF2B22D1165590300AA69D2 /* tnet_turn_attribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1D61165590300AA69D2 /* tnet_turn_attribute.h */; };
ECF2B22E1165590300AA69D2 /* tnet_turn_message.c in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B1D71165590300AA69D2 /* tnet_turn_message.c */; };
ECF2B22F1165590300AA69D2 /* tnet_turn_message.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF2B1D81165590300AA69D2 /* tnet_turn_message.h */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
ECE5BA8B10EF6DE500B7EDDD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECE5B98310EF6B6F00B7EDDD;
remoteInfo = tinySAK;
};
ECE5BAA010EF6E2000B7EDDD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = D2AAC0620554660B00DB518D;
remoteInfo = tinyNET;
};
ECE5BAA210EF6E2000B7EDDD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = ECE5B98310EF6B6F00B7EDDD;
remoteInfo = tinySAK;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
D2AAC0630554660B00DB518D /* libtinyNET.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinyNET.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
EC9A8CCD1124B74C0046F5EC /* test_dhcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_dhcp.h; path = ../../tinyNET/test/test_dhcp.h; sourceTree = SOURCE_ROOT; };
EC9A8CCE1124B74C0046F5EC /* test_dhcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_dhcp6.h; path = ../../tinyNET/test/test_dhcp6.h; sourceTree = SOURCE_ROOT; };
EC9A8CCF1124B74C0046F5EC /* test_dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_dns.h; path = ../../tinyNET/test/test_dns.h; sourceTree = SOURCE_ROOT; };
EC9A8CD01124B74C0046F5EC /* test_ifaces.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_ifaces.h; path = ../../tinyNET/test/test_ifaces.h; sourceTree = SOURCE_ROOT; };
EC9A8CD11124B74C0046F5EC /* test_nat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_nat.h; path = ../../tinyNET/test/test_nat.h; sourceTree = SOURCE_ROOT; };
EC9A8CD21124B74C0046F5EC /* test_stun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_stun.h; path = ../../tinyNET/test/test_stun.h; sourceTree = SOURCE_ROOT; };
EC9A8D351124B7C90046F5EC /* tsk_ppfcs32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_ppfcs32.c; path = ../../tinySAK/src/tsk_ppfcs32.c; sourceTree = SOURCE_ROOT; };
EC9A8D361124B7C90046F5EC /* tsk_ppfcs32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_ppfcs32.h; path = ../../tinySAK/src/tsk_ppfcs32.h; sourceTree = SOURCE_ROOT; };
EC9A8D371124B7C90046F5EC /* tsk_uuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_uuid.c; path = ../../tinySAK/src/tsk_uuid.c; sourceTree = SOURCE_ROOT; };
EC9A8D381124B7C90046F5EC /* tsk_uuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_uuid.h; path = ../../tinySAK/src/tsk_uuid.h; sourceTree = SOURCE_ROOT; };
ECE408D1117CE92D00A43CEB /* tsk_options.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_options.c; path = ../../tinySAK/src/tsk_options.c; sourceTree = SOURCE_ROOT; };
ECE408D2117CE92D00A43CEB /* tsk_options.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_options.h; path = ../../tinySAK/src/tsk_options.h; sourceTree = SOURCE_ROOT; };
ECE5B98410EF6B6F00B7EDDD /* libtinySAK.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libtinySAK.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
ECE5BA1510EF6D8500B7EDDD /* tinySAK_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tinySAK_config.h; path = ../../tinySAK/src/tinySAK_config.h; sourceTree = SOURCE_ROOT; };
ECE5BA1610EF6D8500B7EDDD /* tsk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk.c; path = ../../tinySAK/src/tsk.c; sourceTree = SOURCE_ROOT; };
ECE5BA1710EF6D8500B7EDDD /* tsk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk.h; path = ../../tinySAK/src/tsk.h; sourceTree = SOURCE_ROOT; };
ECE5BA1810EF6D8500B7EDDD /* tsk_base64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_base64.c; path = ../../tinySAK/src/tsk_base64.c; sourceTree = SOURCE_ROOT; };
ECE5BA1910EF6D8500B7EDDD /* tsk_base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_base64.h; path = ../../tinySAK/src/tsk_base64.h; sourceTree = SOURCE_ROOT; };
ECE5BA1A10EF6D8500B7EDDD /* tsk_binaryutils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_binaryutils.c; path = ../../tinySAK/src/tsk_binaryutils.c; sourceTree = SOURCE_ROOT; };
ECE5BA1B10EF6D8500B7EDDD /* tsk_binaryutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_binaryutils.h; path = ../../tinySAK/src/tsk_binaryutils.h; sourceTree = SOURCE_ROOT; };
ECE5BA1C10EF6D8500B7EDDD /* tsk_buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_buffer.c; path = ../../tinySAK/src/tsk_buffer.c; sourceTree = SOURCE_ROOT; };
ECE5BA1D10EF6D8500B7EDDD /* tsk_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_buffer.h; path = ../../tinySAK/src/tsk_buffer.h; sourceTree = SOURCE_ROOT; };
ECE5BA1E10EF6D8500B7EDDD /* tsk_condwait.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_condwait.c; path = ../../tinySAK/src/tsk_condwait.c; sourceTree = SOURCE_ROOT; };
ECE5BA1F10EF6D8500B7EDDD /* tsk_condwait.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_condwait.h; path = ../../tinySAK/src/tsk_condwait.h; sourceTree = SOURCE_ROOT; };
ECE5BA2010EF6D8500B7EDDD /* tsk_debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_debug.c; path = ../../tinySAK/src/tsk_debug.c; sourceTree = SOURCE_ROOT; };
ECE5BA2110EF6D8500B7EDDD /* tsk_debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_debug.h; path = ../../tinySAK/src/tsk_debug.h; sourceTree = SOURCE_ROOT; };
ECE5BA2210EF6D8500B7EDDD /* tsk_errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_errno.h; path = ../../tinySAK/src/tsk_errno.h; sourceTree = SOURCE_ROOT; };
ECE5BA2510EF6D8500B7EDDD /* tsk_hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_hmac.c; path = ../../tinySAK/src/tsk_hmac.c; sourceTree = SOURCE_ROOT; };
ECE5BA2610EF6D8500B7EDDD /* tsk_hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_hmac.h; path = ../../tinySAK/src/tsk_hmac.h; sourceTree = SOURCE_ROOT; };
ECE5BA2710EF6D8500B7EDDD /* tsk_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_list.c; path = ../../tinySAK/src/tsk_list.c; sourceTree = SOURCE_ROOT; };
ECE5BA2810EF6D8500B7EDDD /* tsk_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_list.h; path = ../../tinySAK/src/tsk_list.h; sourceTree = SOURCE_ROOT; };
ECE5BA2A10EF6D8500B7EDDD /* tsk_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_md5.c; path = ../../tinySAK/src/tsk_md5.c; sourceTree = SOURCE_ROOT; };
ECE5BA2B10EF6D8500B7EDDD /* tsk_md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_md5.h; path = ../../tinySAK/src/tsk_md5.h; sourceTree = SOURCE_ROOT; };
ECE5BA2C10EF6D8500B7EDDD /* tsk_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_memory.c; path = ../../tinySAK/src/tsk_memory.c; sourceTree = SOURCE_ROOT; };
ECE5BA2D10EF6D8500B7EDDD /* tsk_memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_memory.h; path = ../../tinySAK/src/tsk_memory.h; sourceTree = SOURCE_ROOT; };
ECE5BA2E10EF6D8500B7EDDD /* tsk_mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_mutex.c; path = ../../tinySAK/src/tsk_mutex.c; sourceTree = SOURCE_ROOT; };
ECE5BA2F10EF6D8500B7EDDD /* tsk_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_mutex.h; path = ../../tinySAK/src/tsk_mutex.h; sourceTree = SOURCE_ROOT; };
ECE5BA3010EF6D8500B7EDDD /* tsk_object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_object.c; path = ../../tinySAK/src/tsk_object.c; sourceTree = SOURCE_ROOT; };
ECE5BA3110EF6D8500B7EDDD /* tsk_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_object.h; path = ../../tinySAK/src/tsk_object.h; sourceTree = SOURCE_ROOT; };
ECE5BA3210EF6D8500B7EDDD /* tsk_params.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_params.c; path = ../../tinySAK/src/tsk_params.c; sourceTree = SOURCE_ROOT; };
ECE5BA3310EF6D8500B7EDDD /* tsk_params.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_params.h; path = ../../tinySAK/src/tsk_params.h; sourceTree = SOURCE_ROOT; };
ECE5BA3410EF6D8500B7EDDD /* tsk_ppfcs16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_ppfcs16.c; path = ../../tinySAK/src/tsk_ppfcs16.c; sourceTree = SOURCE_ROOT; };
ECE5BA3510EF6D8500B7EDDD /* tsk_ppfcs16.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_ppfcs16.h; path = ../../tinySAK/src/tsk_ppfcs16.h; sourceTree = SOURCE_ROOT; };
ECE5BA3610EF6D8500B7EDDD /* tsk_runnable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_runnable.c; path = ../../tinySAK/src/tsk_runnable.c; sourceTree = SOURCE_ROOT; };
ECE5BA3710EF6D8500B7EDDD /* tsk_runnable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_runnable.h; path = ../../tinySAK/src/tsk_runnable.h; sourceTree = SOURCE_ROOT; };
ECE5BA3810EF6D8500B7EDDD /* tsk_safeobj.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_safeobj.c; path = ../../tinySAK/src/tsk_safeobj.c; sourceTree = SOURCE_ROOT; };
ECE5BA3910EF6D8500B7EDDD /* tsk_safeobj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_safeobj.h; path = ../../tinySAK/src/tsk_safeobj.h; sourceTree = SOURCE_ROOT; };
ECE5BA3A10EF6D8500B7EDDD /* tsk_semaphore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_semaphore.c; path = ../../tinySAK/src/tsk_semaphore.c; sourceTree = SOURCE_ROOT; };
ECE5BA3B10EF6D8500B7EDDD /* tsk_semaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_semaphore.h; path = ../../tinySAK/src/tsk_semaphore.h; sourceTree = SOURCE_ROOT; };
ECE5BA3C10EF6D8500B7EDDD /* tsk_sha1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_sha1.c; path = ../../tinySAK/src/tsk_sha1.c; sourceTree = SOURCE_ROOT; };
ECE5BA3D10EF6D8500B7EDDD /* tsk_sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_sha1.h; path = ../../tinySAK/src/tsk_sha1.h; sourceTree = SOURCE_ROOT; };
ECE5BA3E10EF6D8500B7EDDD /* tsk_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_string.c; path = ../../tinySAK/src/tsk_string.c; sourceTree = SOURCE_ROOT; };
ECE5BA3F10EF6D8500B7EDDD /* tsk_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_string.h; path = ../../tinySAK/src/tsk_string.h; sourceTree = SOURCE_ROOT; };
ECE5BA4010EF6D8500B7EDDD /* tsk_thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_thread.c; path = ../../tinySAK/src/tsk_thread.c; sourceTree = SOURCE_ROOT; };
ECE5BA4110EF6D8500B7EDDD /* tsk_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_thread.h; path = ../../tinySAK/src/tsk_thread.h; sourceTree = SOURCE_ROOT; };
ECE5BA4210EF6D8500B7EDDD /* tsk_time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_time.c; path = ../../tinySAK/src/tsk_time.c; sourceTree = SOURCE_ROOT; };
ECE5BA4310EF6D8500B7EDDD /* tsk_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_time.h; path = ../../tinySAK/src/tsk_time.h; sourceTree = SOURCE_ROOT; };
ECE5BA4410EF6D8500B7EDDD /* tsk_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_timer.c; path = ../../tinySAK/src/tsk_timer.c; sourceTree = SOURCE_ROOT; };
ECE5BA4510EF6D8500B7EDDD /* tsk_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_timer.h; path = ../../tinySAK/src/tsk_timer.h; sourceTree = SOURCE_ROOT; };
ECE5BA4610EF6D8500B7EDDD /* tsk_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_url.c; path = ../../tinySAK/src/tsk_url.c; sourceTree = SOURCE_ROOT; };
ECE5BA4710EF6D8500B7EDDD /* tsk_url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_url.h; path = ../../tinySAK/src/tsk_url.h; sourceTree = SOURCE_ROOT; };
ECE5BA4810EF6D8500B7EDDD /* tsk_xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_xml.c; path = ../../tinySAK/src/tsk_xml.c; sourceTree = SOURCE_ROOT; };
ECE5BA4910EF6D8500B7EDDD /* tsk_xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_xml.h; path = ../../tinySAK/src/tsk_xml.h; sourceTree = SOURCE_ROOT; };
ECE5BA9C10EF6E1900B7EDDD /* test */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = test; sourceTree = BUILT_PRODUCTS_DIR; };
ECE5BAA710EF6E4800B7EDDD /* stdafx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = stdafx.c; path = ../../tinyNET/test/stdafx.c; sourceTree = SOURCE_ROOT; };
ECE5BAA810EF6E4800B7EDDD /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stdafx.h; path = ../../tinyNET/test/stdafx.h; sourceTree = SOURCE_ROOT; };
ECE5BAA910EF6E4800B7EDDD /* targetver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = targetver.h; path = ../../tinyNET/test/targetver.h; sourceTree = SOURCE_ROOT; };
ECE5BAAA10EF6E4800B7EDDD /* test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = test.c; path = ../../tinyNET/test/test.c; sourceTree = SOURCE_ROOT; };
ECE5BAAB10EF6E4800B7EDDD /* test.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = test.vcproj; path = ../../tinyNET/test/test.vcproj; sourceTree = SOURCE_ROOT; };
ECE5BAAC10EF6E4800B7EDDD /* test_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_auth.h; path = ../../tinyNET/test/test_auth.h; sourceTree = SOURCE_ROOT; };
ECE5BAAD10EF6E4800B7EDDD /* test_sockets.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_sockets.h; path = ../../tinyNET/test/test_sockets.h; sourceTree = SOURCE_ROOT; };
ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_transport.h; path = ../../tinyNET/test/test_transport.h; sourceTree = SOURCE_ROOT; };
ECF2B1671165590300AA69D2 /* tsk_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_common.h; path = ../../tinySAK/src/tsk_common.h; sourceTree = SOURCE_ROOT; };
ECF2B1681165590300AA69D2 /* tsk_fsm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tsk_fsm.c; path = ../../tinySAK/src/tsk_fsm.c; sourceTree = SOURCE_ROOT; };
ECF2B1691165590300AA69D2 /* tsk_fsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tsk_fsm.h; path = ../../tinySAK/src/tsk_fsm.h; sourceTree = SOURCE_ROOT; };
ECF2B16A1165590300AA69D2 /* 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; };
ECF2B16B1165590300AA69D2 /* 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; };
ECF2B17C1165590300AA69D2 /* tnet_dhcp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp.c; sourceTree = "<group>"; };
ECF2B17D1165590300AA69D2 /* tnet_dhcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp.h; sourceTree = "<group>"; };
ECF2B17E1165590300AA69D2 /* tnet_dhcp_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_message.c; sourceTree = "<group>"; };
ECF2B17F1165590300AA69D2 /* tnet_dhcp_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_message.h; sourceTree = "<group>"; };
ECF2B1801165590300AA69D2 /* tnet_dhcp_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option.c; sourceTree = "<group>"; };
ECF2B1811165590300AA69D2 /* tnet_dhcp_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option.h; sourceTree = "<group>"; };
ECF2B1821165590300AA69D2 /* tnet_dhcp_option_sip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp_option_sip.c; sourceTree = "<group>"; };
ECF2B1831165590300AA69D2 /* tnet_dhcp_option_sip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp_option_sip.h; sourceTree = "<group>"; };
ECF2B1851165590300AA69D2 /* tnet_dhcp6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6.c; sourceTree = "<group>"; };
ECF2B1861165590300AA69D2 /* tnet_dhcp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6.h; sourceTree = "<group>"; };
ECF2B1871165590300AA69D2 /* tnet_dhcp6_duid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_duid.c; sourceTree = "<group>"; };
ECF2B1881165590300AA69D2 /* tnet_dhcp6_duid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_duid.h; sourceTree = "<group>"; };
ECF2B1891165590300AA69D2 /* tnet_dhcp6_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_message.c; sourceTree = "<group>"; };
ECF2B18A1165590300AA69D2 /* tnet_dhcp6_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_message.h; sourceTree = "<group>"; };
ECF2B18B1165590300AA69D2 /* tnet_dhcp6_option.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dhcp6_option.c; sourceTree = "<group>"; };
ECF2B18C1165590300AA69D2 /* tnet_dhcp6_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dhcp6_option.h; sourceTree = "<group>"; };
ECF2B18E1165590300AA69D2 /* tnet_dns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns.c; sourceTree = "<group>"; };
ECF2B18F1165590300AA69D2 /* tnet_dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns.h; sourceTree = "<group>"; };
ECF2B1901165590300AA69D2 /* tnet_dns_a.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_a.c; sourceTree = "<group>"; };
ECF2B1911165590300AA69D2 /* tnet_dns_a.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_a.h; sourceTree = "<group>"; };
ECF2B1921165590300AA69D2 /* tnet_dns_aaaa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_aaaa.c; sourceTree = "<group>"; };
ECF2B1931165590300AA69D2 /* tnet_dns_aaaa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_aaaa.h; sourceTree = "<group>"; };
ECF2B1941165590300AA69D2 /* tnet_dns_cname.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_cname.c; sourceTree = "<group>"; };
ECF2B1951165590300AA69D2 /* tnet_dns_cname.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_cname.h; sourceTree = "<group>"; };
ECF2B1961165590300AA69D2 /* tnet_dns_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_message.c; sourceTree = "<group>"; };
ECF2B1971165590300AA69D2 /* tnet_dns_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_message.h; sourceTree = "<group>"; };
ECF2B1981165590300AA69D2 /* tnet_dns_mx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_mx.c; sourceTree = "<group>"; };
ECF2B1991165590300AA69D2 /* tnet_dns_mx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_mx.h; sourceTree = "<group>"; };
ECF2B19A1165590300AA69D2 /* tnet_dns_naptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_naptr.c; sourceTree = "<group>"; };
ECF2B19B1165590300AA69D2 /* tnet_dns_naptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_naptr.h; sourceTree = "<group>"; };
ECF2B19C1165590300AA69D2 /* tnet_dns_ns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ns.c; sourceTree = "<group>"; };
ECF2B19D1165590300AA69D2 /* tnet_dns_ns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ns.h; sourceTree = "<group>"; };
ECF2B19E1165590300AA69D2 /* tnet_dns_opt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_opt.c; sourceTree = "<group>"; };
ECF2B19F1165590300AA69D2 /* tnet_dns_opt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_opt.h; sourceTree = "<group>"; };
ECF2B1A01165590300AA69D2 /* tnet_dns_ptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_ptr.c; sourceTree = "<group>"; };
ECF2B1A11165590300AA69D2 /* tnet_dns_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_ptr.h; sourceTree = "<group>"; };
ECF2B1A21165590300AA69D2 /* tnet_dns_regexp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_regexp.c; sourceTree = "<group>"; };
ECF2B1A31165590300AA69D2 /* tnet_dns_regexp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_regexp.h; sourceTree = "<group>"; };
ECF2B1A41165590300AA69D2 /* tnet_dns_resolvconf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_resolvconf.c; sourceTree = "<group>"; };
ECF2B1A51165590300AA69D2 /* tnet_dns_resolvconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_resolvconf.h; sourceTree = "<group>"; };
ECF2B1A61165590300AA69D2 /* tnet_dns_rr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_rr.c; sourceTree = "<group>"; };
ECF2B1A71165590300AA69D2 /* tnet_dns_rr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_rr.h; sourceTree = "<group>"; };
ECF2B1A81165590300AA69D2 /* tnet_dns_soa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_soa.c; sourceTree = "<group>"; };
ECF2B1A91165590300AA69D2 /* tnet_dns_soa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_soa.h; sourceTree = "<group>"; };
ECF2B1AA1165590300AA69D2 /* tnet_dns_srv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_srv.c; sourceTree = "<group>"; };
ECF2B1AB1165590300AA69D2 /* tnet_dns_srv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_srv.h; sourceTree = "<group>"; };
ECF2B1AC1165590300AA69D2 /* tnet_dns_txt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_dns_txt.c; sourceTree = "<group>"; };
ECF2B1AD1165590300AA69D2 /* tnet_dns_txt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_dns_txt.h; sourceTree = "<group>"; };
ECF2B1AF1165590300AA69D2 /* tnet_ice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_ice.c; sourceTree = "<group>"; };
ECF2B1B01165590300AA69D2 /* tnet_ice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_ice.h; sourceTree = "<group>"; };
ECF2B1B31165590300AA69D2 /* tnet_stun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun.c; sourceTree = "<group>"; };
ECF2B1B41165590300AA69D2 /* tnet_stun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun.h; sourceTree = "<group>"; };
ECF2B1B51165590300AA69D2 /* tnet_stun_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_attribute.c; sourceTree = "<group>"; };
ECF2B1B61165590300AA69D2 /* tnet_stun_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_attribute.h; sourceTree = "<group>"; };
ECF2B1B71165590300AA69D2 /* tnet_stun_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_stun_message.c; sourceTree = "<group>"; };
ECF2B1B81165590300AA69D2 /* tnet_stun_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_stun_message.h; sourceTree = "<group>"; };
ECF2B1B91165590300AA69D2 /* tinyNET_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tinyNET_config.h; sourceTree = "<group>"; };
ECF2B1BB1165590300AA69D2 /* tnet_tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_tls.c; sourceTree = "<group>"; };
ECF2B1BC1165590300AA69D2 /* tnet_tls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_tls.h; sourceTree = "<group>"; };
ECF2B1BD1165590300AA69D2 /* tnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet.c; sourceTree = "<group>"; };
ECF2B1BE1165590300AA69D2 /* tnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet.h; sourceTree = "<group>"; };
ECF2B1BF1165590300AA69D2 /* tnet_auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_auth.c; sourceTree = "<group>"; };
ECF2B1C01165590300AA69D2 /* tnet_auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_auth.h; sourceTree = "<group>"; };
ECF2B1C11165590300AA69D2 /* tnet_endianness.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_endianness.c; sourceTree = "<group>"; };
ECF2B1C21165590300AA69D2 /* tnet_endianness.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_endianness.h; sourceTree = "<group>"; };
ECF2B1C31165590300AA69D2 /* tnet_hardwares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_hardwares.h; sourceTree = "<group>"; };
ECF2B1C41165590300AA69D2 /* tnet_nat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_nat.c; sourceTree = "<group>"; };
ECF2B1C51165590300AA69D2 /* tnet_nat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_nat.h; sourceTree = "<group>"; };
ECF2B1C61165590300AA69D2 /* tnet_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_poll.c; sourceTree = "<group>"; };
ECF2B1C71165590300AA69D2 /* tnet_poll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_poll.h; sourceTree = "<group>"; };
ECF2B1C81165590300AA69D2 /* tnet_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_proto.h; sourceTree = "<group>"; };
ECF2B1C91165590300AA69D2 /* tnet_socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_socket.c; sourceTree = "<group>"; };
ECF2B1CA1165590300AA69D2 /* tnet_socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_socket.h; sourceTree = "<group>"; };
ECF2B1CB1165590300AA69D2 /* tnet_transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport.c; sourceTree = "<group>"; };
ECF2B1CC1165590300AA69D2 /* tnet_transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_transport.h; sourceTree = "<group>"; };
ECF2B1CD1165590300AA69D2 /* tnet_transport_poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_poll.c; sourceTree = "<group>"; };
ECF2B1CE1165590300AA69D2 /* tnet_transport_win32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_transport_win32.c; sourceTree = "<group>"; };
ECF2B1CF1165590300AA69D2 /* tnet_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_types.h; sourceTree = "<group>"; };
ECF2B1D01165590300AA69D2 /* tnet_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_utils.c; sourceTree = "<group>"; };
ECF2B1D11165590300AA69D2 /* tnet_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_utils.h; sourceTree = "<group>"; };
ECF2B1D31165590300AA69D2 /* tnet_turn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn.c; sourceTree = "<group>"; };
ECF2B1D41165590300AA69D2 /* tnet_turn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn.h; sourceTree = "<group>"; };
ECF2B1D51165590300AA69D2 /* tnet_turn_attribute.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_attribute.c; sourceTree = "<group>"; };
ECF2B1D61165590300AA69D2 /* tnet_turn_attribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_attribute.h; sourceTree = "<group>"; };
ECF2B1D71165590300AA69D2 /* tnet_turn_message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tnet_turn_message.c; sourceTree = "<group>"; };
ECF2B1D81165590300AA69D2 /* tnet_turn_message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tnet_turn_message.h; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
D289988505E68E00004EDB86 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECE5BA8D10EF6DEC00B7EDDD /* libtinySAK.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECE5B98210EF6B6F00B7EDDD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
ECE5BA9A10EF6E1900B7EDDD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ECE5BAA410EF6E2500B7EDDD /* libtinyNET.dylib in Frameworks */,
ECE5BAA510EF6E2500B7EDDD /* libtinySAK.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
08FB7794FE84155DC02AAC07 /* tinyNET */ = {
isa = PBXGroup;
children = (
ECF2B1721165590300AA69D2 /* tinyNET */,
ECE5BA9810EF6E0600B7EDDD /* test */,
ECE5BA1410EF6D5500B7EDDD /* tinySAK */,
1AB674ADFE9D54B511CA2CBB /* Products */,
);
name = tinyNET;
sourceTree = "<group>";
};
1AB674ADFE9D54B511CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
D2AAC0630554660B00DB518D /* libtinyNET.dylib */,
ECE5B98410EF6B6F00B7EDDD /* libtinySAK.dylib */,
ECE5BA9C10EF6E1900B7EDDD /* test */,
);
name = Products;
sourceTree = "<group>";
};
ECE5BA1410EF6D5500B7EDDD /* tinySAK */ = {
isa = PBXGroup;
children = (
ECE408D1117CE92D00A43CEB /* tsk_options.c */,
ECE408D2117CE92D00A43CEB /* tsk_options.h */,
ECF2B1671165590300AA69D2 /* tsk_common.h */,
ECF2B1681165590300AA69D2 /* tsk_fsm.c */,
ECF2B1691165590300AA69D2 /* tsk_fsm.h */,
ECF2B16A1165590300AA69D2 /* tsk_ragel_state.c */,
ECF2B16B1165590300AA69D2 /* tsk_ragel_state.h */,
EC9A8D351124B7C90046F5EC /* tsk_ppfcs32.c */,
EC9A8D361124B7C90046F5EC /* tsk_ppfcs32.h */,
EC9A8D371124B7C90046F5EC /* tsk_uuid.c */,
EC9A8D381124B7C90046F5EC /* tsk_uuid.h */,
ECE5BA1510EF6D8500B7EDDD /* tinySAK_config.h */,
ECE5BA1610EF6D8500B7EDDD /* tsk.c */,
ECE5BA1710EF6D8500B7EDDD /* tsk.h */,
ECE5BA1810EF6D8500B7EDDD /* tsk_base64.c */,
ECE5BA1910EF6D8500B7EDDD /* tsk_base64.h */,
ECE5BA1A10EF6D8500B7EDDD /* tsk_binaryutils.c */,
ECE5BA1B10EF6D8500B7EDDD /* tsk_binaryutils.h */,
ECE5BA1C10EF6D8500B7EDDD /* tsk_buffer.c */,
ECE5BA1D10EF6D8500B7EDDD /* tsk_buffer.h */,
ECE5BA1E10EF6D8500B7EDDD /* tsk_condwait.c */,
ECE5BA1F10EF6D8500B7EDDD /* tsk_condwait.h */,
ECE5BA2010EF6D8500B7EDDD /* tsk_debug.c */,
ECE5BA2110EF6D8500B7EDDD /* tsk_debug.h */,
ECE5BA2210EF6D8500B7EDDD /* tsk_errno.h */,
ECE5BA2510EF6D8500B7EDDD /* tsk_hmac.c */,
ECE5BA2610EF6D8500B7EDDD /* tsk_hmac.h */,
ECE5BA2710EF6D8500B7EDDD /* tsk_list.c */,
ECE5BA2810EF6D8500B7EDDD /* tsk_list.h */,
ECE5BA2A10EF6D8500B7EDDD /* tsk_md5.c */,
ECE5BA2B10EF6D8500B7EDDD /* tsk_md5.h */,
ECE5BA2C10EF6D8500B7EDDD /* tsk_memory.c */,
ECE5BA2D10EF6D8500B7EDDD /* tsk_memory.h */,
ECE5BA2E10EF6D8500B7EDDD /* tsk_mutex.c */,
ECE5BA2F10EF6D8500B7EDDD /* tsk_mutex.h */,
ECE5BA3010EF6D8500B7EDDD /* tsk_object.c */,
ECE5BA3110EF6D8500B7EDDD /* tsk_object.h */,
ECE5BA3210EF6D8500B7EDDD /* tsk_params.c */,
ECE5BA3310EF6D8500B7EDDD /* tsk_params.h */,
ECE5BA3410EF6D8500B7EDDD /* tsk_ppfcs16.c */,
ECE5BA3510EF6D8500B7EDDD /* tsk_ppfcs16.h */,
ECE5BA3610EF6D8500B7EDDD /* tsk_runnable.c */,
ECE5BA3710EF6D8500B7EDDD /* tsk_runnable.h */,
ECE5BA3810EF6D8500B7EDDD /* tsk_safeobj.c */,
ECE5BA3910EF6D8500B7EDDD /* tsk_safeobj.h */,
ECE5BA3A10EF6D8500B7EDDD /* tsk_semaphore.c */,
ECE5BA3B10EF6D8500B7EDDD /* tsk_semaphore.h */,
ECE5BA3C10EF6D8500B7EDDD /* tsk_sha1.c */,
ECE5BA3D10EF6D8500B7EDDD /* tsk_sha1.h */,
ECE5BA3E10EF6D8500B7EDDD /* tsk_string.c */,
ECE5BA3F10EF6D8500B7EDDD /* tsk_string.h */,
ECE5BA4010EF6D8500B7EDDD /* tsk_thread.c */,
ECE5BA4110EF6D8500B7EDDD /* tsk_thread.h */,
ECE5BA4210EF6D8500B7EDDD /* tsk_time.c */,
ECE5BA4310EF6D8500B7EDDD /* tsk_time.h */,
ECE5BA4410EF6D8500B7EDDD /* tsk_timer.c */,
ECE5BA4510EF6D8500B7EDDD /* tsk_timer.h */,
ECE5BA4610EF6D8500B7EDDD /* tsk_url.c */,
ECE5BA4710EF6D8500B7EDDD /* tsk_url.h */,
ECE5BA4810EF6D8500B7EDDD /* tsk_xml.c */,
ECE5BA4910EF6D8500B7EDDD /* tsk_xml.h */,
);
name = tinySAK;
sourceTree = "<group>";
};
ECE5BA9810EF6E0600B7EDDD /* test */ = {
isa = PBXGroup;
children = (
EC9A8CCD1124B74C0046F5EC /* test_dhcp.h */,
EC9A8CCE1124B74C0046F5EC /* test_dhcp6.h */,
EC9A8CCF1124B74C0046F5EC /* test_dns.h */,
EC9A8CD01124B74C0046F5EC /* test_ifaces.h */,
EC9A8CD11124B74C0046F5EC /* test_nat.h */,
EC9A8CD21124B74C0046F5EC /* test_stun.h */,
ECE5BAA710EF6E4800B7EDDD /* stdafx.c */,
ECE5BAA810EF6E4800B7EDDD /* stdafx.h */,
ECE5BAA910EF6E4800B7EDDD /* targetver.h */,
ECE5BAAA10EF6E4800B7EDDD /* test.c */,
ECE5BAAB10EF6E4800B7EDDD /* test.vcproj */,
ECE5BAAC10EF6E4800B7EDDD /* test_auth.h */,
ECE5BAAD10EF6E4800B7EDDD /* test_sockets.h */,
ECE5BAAE10EF6E4800B7EDDD /* test_transport.h */,
);
name = test;
sourceTree = "<group>";
};
ECF2B1721165590300AA69D2 /* tinyNET */ = {
isa = PBXGroup;
children = (
ECF2B17A1165590300AA69D2 /* src */,
);
name = tinyNET;
sourceTree = "<group>";
};
ECF2B17A1165590300AA69D2 /* src */ = {
isa = PBXGroup;
children = (
ECF2B1D21165590300AA69D2 /* turn */,
ECF2B17B1165590300AA69D2 /* dhcp */,
ECF2B1841165590300AA69D2 /* dhcp6 */,
ECF2B18D1165590300AA69D2 /* dns */,
ECF2B1AE1165590300AA69D2 /* ice */,
ECF2B1B21165590300AA69D2 /* stun */,
ECF2B1BA1165590300AA69D2 /* tls */,
ECF2B1BD1165590300AA69D2 /* tnet.c */,
ECF2B1B91165590300AA69D2 /* tinyNET_config.h */,
ECF2B1BE1165590300AA69D2 /* tnet.h */,
ECF2B1BF1165590300AA69D2 /* tnet_auth.c */,
ECF2B1C01165590300AA69D2 /* tnet_auth.h */,
ECF2B1C11165590300AA69D2 /* tnet_endianness.c */,
ECF2B1C21165590300AA69D2 /* tnet_endianness.h */,
ECF2B1C31165590300AA69D2 /* tnet_hardwares.h */,
ECF2B1C41165590300AA69D2 /* tnet_nat.c */,
ECF2B1C51165590300AA69D2 /* tnet_nat.h */,
ECF2B1C61165590300AA69D2 /* tnet_poll.c */,
ECF2B1C71165590300AA69D2 /* tnet_poll.h */,
ECF2B1C81165590300AA69D2 /* tnet_proto.h */,
ECF2B1C91165590300AA69D2 /* tnet_socket.c */,
ECF2B1CA1165590300AA69D2 /* tnet_socket.h */,
ECF2B1CB1165590300AA69D2 /* tnet_transport.c */,
ECF2B1CC1165590300AA69D2 /* tnet_transport.h */,
ECF2B1CD1165590300AA69D2 /* tnet_transport_poll.c */,
ECF2B1CE1165590300AA69D2 /* tnet_transport_win32.c */,
ECF2B1CF1165590300AA69D2 /* tnet_types.h */,
ECF2B1D01165590300AA69D2 /* tnet_utils.c */,
ECF2B1D11165590300AA69D2 /* tnet_utils.h */,
);
name = src;
path = ../../tinyNET/src;
sourceTree = SOURCE_ROOT;
};
ECF2B17B1165590300AA69D2 /* dhcp */ = {
isa = PBXGroup;
children = (
ECF2B17C1165590300AA69D2 /* tnet_dhcp.c */,
ECF2B17D1165590300AA69D2 /* tnet_dhcp.h */,
ECF2B17E1165590300AA69D2 /* tnet_dhcp_message.c */,
ECF2B17F1165590300AA69D2 /* tnet_dhcp_message.h */,
ECF2B1801165590300AA69D2 /* tnet_dhcp_option.c */,
ECF2B1811165590300AA69D2 /* tnet_dhcp_option.h */,
ECF2B1821165590300AA69D2 /* tnet_dhcp_option_sip.c */,
ECF2B1831165590300AA69D2 /* tnet_dhcp_option_sip.h */,
);
path = dhcp;
sourceTree = "<group>";
};
ECF2B1841165590300AA69D2 /* dhcp6 */ = {
isa = PBXGroup;
children = (
ECF2B1851165590300AA69D2 /* tnet_dhcp6.c */,
ECF2B1861165590300AA69D2 /* tnet_dhcp6.h */,
ECF2B1871165590300AA69D2 /* tnet_dhcp6_duid.c */,
ECF2B1881165590300AA69D2 /* tnet_dhcp6_duid.h */,
ECF2B1891165590300AA69D2 /* tnet_dhcp6_message.c */,
ECF2B18A1165590300AA69D2 /* tnet_dhcp6_message.h */,
ECF2B18B1165590300AA69D2 /* tnet_dhcp6_option.c */,
ECF2B18C1165590300AA69D2 /* tnet_dhcp6_option.h */,
);
path = dhcp6;
sourceTree = "<group>";
};
ECF2B18D1165590300AA69D2 /* dns */ = {
isa = PBXGroup;
children = (
ECF2B18E1165590300AA69D2 /* tnet_dns.c */,
ECF2B18F1165590300AA69D2 /* tnet_dns.h */,
ECF2B1901165590300AA69D2 /* tnet_dns_a.c */,
ECF2B1911165590300AA69D2 /* tnet_dns_a.h */,
ECF2B1921165590300AA69D2 /* tnet_dns_aaaa.c */,
ECF2B1931165590300AA69D2 /* tnet_dns_aaaa.h */,
ECF2B1941165590300AA69D2 /* tnet_dns_cname.c */,
ECF2B1951165590300AA69D2 /* tnet_dns_cname.h */,
ECF2B1961165590300AA69D2 /* tnet_dns_message.c */,
ECF2B1971165590300AA69D2 /* tnet_dns_message.h */,
ECF2B1981165590300AA69D2 /* tnet_dns_mx.c */,
ECF2B1991165590300AA69D2 /* tnet_dns_mx.h */,
ECF2B19A1165590300AA69D2 /* tnet_dns_naptr.c */,
ECF2B19B1165590300AA69D2 /* tnet_dns_naptr.h */,
ECF2B19C1165590300AA69D2 /* tnet_dns_ns.c */,
ECF2B19D1165590300AA69D2 /* tnet_dns_ns.h */,
ECF2B19E1165590300AA69D2 /* tnet_dns_opt.c */,
ECF2B19F1165590300AA69D2 /* tnet_dns_opt.h */,
ECF2B1A01165590300AA69D2 /* tnet_dns_ptr.c */,
ECF2B1A11165590300AA69D2 /* tnet_dns_ptr.h */,
ECF2B1A21165590300AA69D2 /* tnet_dns_regexp.c */,
ECF2B1A31165590300AA69D2 /* tnet_dns_regexp.h */,
ECF2B1A41165590300AA69D2 /* tnet_dns_resolvconf.c */,
ECF2B1A51165590300AA69D2 /* tnet_dns_resolvconf.h */,
ECF2B1A61165590300AA69D2 /* tnet_dns_rr.c */,
ECF2B1A71165590300AA69D2 /* tnet_dns_rr.h */,
ECF2B1A81165590300AA69D2 /* tnet_dns_soa.c */,
ECF2B1A91165590300AA69D2 /* tnet_dns_soa.h */,
ECF2B1AA1165590300AA69D2 /* tnet_dns_srv.c */,
ECF2B1AB1165590300AA69D2 /* tnet_dns_srv.h */,
ECF2B1AC1165590300AA69D2 /* tnet_dns_txt.c */,
ECF2B1AD1165590300AA69D2 /* tnet_dns_txt.h */,
);
path = dns;
sourceTree = "<group>";
};
ECF2B1AE1165590300AA69D2 /* ice */ = {
isa = PBXGroup;
children = (
ECF2B1AF1165590300AA69D2 /* tnet_ice.c */,
ECF2B1B01165590300AA69D2 /* tnet_ice.h */,
);
path = ice;
sourceTree = "<group>";
};
ECF2B1B21165590300AA69D2 /* stun */ = {
isa = PBXGroup;
children = (
ECF2B1B31165590300AA69D2 /* tnet_stun.c */,
ECF2B1B41165590300AA69D2 /* tnet_stun.h */,
ECF2B1B51165590300AA69D2 /* tnet_stun_attribute.c */,
ECF2B1B61165590300AA69D2 /* tnet_stun_attribute.h */,
ECF2B1B71165590300AA69D2 /* tnet_stun_message.c */,
ECF2B1B81165590300AA69D2 /* tnet_stun_message.h */,
);
path = stun;
sourceTree = "<group>";
};
ECF2B1BA1165590300AA69D2 /* tls */ = {
isa = PBXGroup;
children = (
ECF2B1BB1165590300AA69D2 /* tnet_tls.c */,
ECF2B1BC1165590300AA69D2 /* tnet_tls.h */,
);
path = tls;
sourceTree = "<group>";
};
ECF2B1D21165590300AA69D2 /* turn */ = {
isa = PBXGroup;
children = (
ECF2B1D31165590300AA69D2 /* tnet_turn.c */,
ECF2B1D41165590300AA69D2 /* tnet_turn.h */,
ECF2B1D51165590300AA69D2 /* tnet_turn_attribute.c */,
ECF2B1D61165590300AA69D2 /* tnet_turn_attribute.h */,
ECF2B1D71165590300AA69D2 /* tnet_turn_message.c */,
ECF2B1D81165590300AA69D2 /* tnet_turn_message.h */,
);
path = turn;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
D2AAC0600554660B00DB518D /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECF2B1DA1165590300AA69D2 /* tnet_dhcp.h in Headers */,
ECF2B1DC1165590300AA69D2 /* tnet_dhcp_message.h in Headers */,
ECF2B1DE1165590300AA69D2 /* tnet_dhcp_option.h in Headers */,
ECF2B1E01165590300AA69D2 /* tnet_dhcp_option_sip.h in Headers */,
ECF2B1E21165590300AA69D2 /* tnet_dhcp6.h in Headers */,
ECF2B1E41165590300AA69D2 /* tnet_dhcp6_duid.h in Headers */,
ECF2B1E61165590300AA69D2 /* tnet_dhcp6_message.h in Headers */,
ECF2B1E81165590300AA69D2 /* tnet_dhcp6_option.h in Headers */,
ECF2B1EA1165590300AA69D2 /* tnet_dns.h in Headers */,
ECF2B1EC1165590300AA69D2 /* tnet_dns_a.h in Headers */,
ECF2B1EE1165590300AA69D2 /* tnet_dns_aaaa.h in Headers */,
ECF2B1F01165590300AA69D2 /* tnet_dns_cname.h in Headers */,
ECF2B1F21165590300AA69D2 /* tnet_dns_message.h in Headers */,
ECF2B1F41165590300AA69D2 /* tnet_dns_mx.h in Headers */,
ECF2B1F61165590300AA69D2 /* tnet_dns_naptr.h in Headers */,
ECF2B1F81165590300AA69D2 /* tnet_dns_ns.h in Headers */,
ECF2B1FA1165590300AA69D2 /* tnet_dns_opt.h in Headers */,
ECF2B1FC1165590300AA69D2 /* tnet_dns_ptr.h in Headers */,
ECF2B1FE1165590300AA69D2 /* tnet_dns_regexp.h in Headers */,
ECF2B2001165590300AA69D2 /* tnet_dns_resolvconf.h in Headers */,
ECF2B2021165590300AA69D2 /* tnet_dns_rr.h in Headers */,
ECF2B2041165590300AA69D2 /* tnet_dns_soa.h in Headers */,
ECF2B2061165590300AA69D2 /* tnet_dns_srv.h in Headers */,
ECF2B2081165590300AA69D2 /* tnet_dns_txt.h in Headers */,
ECF2B20A1165590300AA69D2 /* tnet_ice.h in Headers */,
ECF2B20D1165590300AA69D2 /* tnet_stun.h in Headers */,
ECF2B20F1165590300AA69D2 /* tnet_stun_attribute.h in Headers */,
ECF2B2111165590300AA69D2 /* tnet_stun_message.h in Headers */,
ECF2B2121165590300AA69D2 /* tinyNET_config.h in Headers */,
ECF2B2141165590300AA69D2 /* tnet_tls.h in Headers */,
ECF2B2161165590300AA69D2 /* tnet.h in Headers */,
ECF2B2181165590300AA69D2 /* tnet_auth.h in Headers */,
ECF2B21A1165590300AA69D2 /* tnet_endianness.h in Headers */,
ECF2B21B1165590300AA69D2 /* tnet_hardwares.h in Headers */,
ECF2B21D1165590300AA69D2 /* tnet_nat.h in Headers */,
ECF2B21F1165590300AA69D2 /* tnet_poll.h in Headers */,
ECF2B2201165590300AA69D2 /* tnet_proto.h in Headers */,
ECF2B2221165590300AA69D2 /* tnet_socket.h in Headers */,
ECF2B2241165590300AA69D2 /* tnet_transport.h in Headers */,
ECF2B2271165590300AA69D2 /* tnet_types.h in Headers */,
ECF2B2291165590300AA69D2 /* tnet_utils.h in Headers */,
ECF2B22B1165590300AA69D2 /* tnet_turn.h in Headers */,
ECF2B22D1165590300AA69D2 /* tnet_turn_attribute.h in Headers */,
ECF2B22F1165590300AA69D2 /* tnet_turn_message.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECE5B98010EF6B6F00B7EDDD /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
ECE5BA4A10EF6D8500B7EDDD /* tinySAK_config.h in Headers */,
ECE5BA4C10EF6D8500B7EDDD /* tsk.h in Headers */,
ECE5BA4E10EF6D8500B7EDDD /* tsk_base64.h in Headers */,
ECE5BA5010EF6D8500B7EDDD /* tsk_binaryutils.h in Headers */,
ECE5BA5210EF6D8500B7EDDD /* tsk_buffer.h in Headers */,
ECE5BA5410EF6D8500B7EDDD /* tsk_condwait.h in Headers */,
ECE5BA5610EF6D8500B7EDDD /* tsk_debug.h in Headers */,
ECE5BA5710EF6D8500B7EDDD /* tsk_errno.h in Headers */,
ECE5BA5B10EF6D8500B7EDDD /* tsk_hmac.h in Headers */,
ECE5BA5D10EF6D8500B7EDDD /* tsk_list.h in Headers */,
ECE5BA6010EF6D8500B7EDDD /* tsk_md5.h in Headers */,
ECE5BA6210EF6D8500B7EDDD /* tsk_memory.h in Headers */,
ECE5BA6410EF6D8500B7EDDD /* tsk_mutex.h in Headers */,
ECE5BA6610EF6D8500B7EDDD /* tsk_object.h in Headers */,
ECE5BA6810EF6D8500B7EDDD /* tsk_params.h in Headers */,
ECE5BA6A10EF6D8500B7EDDD /* tsk_ppfcs16.h in Headers */,
ECE5BA6C10EF6D8500B7EDDD /* tsk_runnable.h in Headers */,
ECE5BA6E10EF6D8500B7EDDD /* tsk_safeobj.h in Headers */,
ECE5BA7010EF6D8500B7EDDD /* tsk_semaphore.h in Headers */,
ECE5BA7210EF6D8500B7EDDD /* tsk_sha1.h in Headers */,
ECE5BA7410EF6D8500B7EDDD /* tsk_string.h in Headers */,
ECE5BA7610EF6D8500B7EDDD /* tsk_thread.h in Headers */,
ECE5BA7810EF6D8500B7EDDD /* tsk_time.h in Headers */,
ECE5BA7A10EF6D8500B7EDDD /* tsk_timer.h in Headers */,
ECE5BA7C10EF6D8500B7EDDD /* tsk_url.h in Headers */,
ECE5BA7E10EF6D8500B7EDDD /* tsk_xml.h in Headers */,
EC9A8D3A1124B7C90046F5EC /* tsk_ppfcs32.h in Headers */,
EC9A8D3C1124B7C90046F5EC /* tsk_uuid.h in Headers */,
ECF2B16C1165590300AA69D2 /* tsk_common.h in Headers */,
ECF2B16E1165590300AA69D2 /* tsk_fsm.h in Headers */,
ECF2B1701165590300AA69D2 /* tsk_ragel_state.h in Headers */,
ECE408D4117CE92D00A43CEB /* tsk_options.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
D2AAC0620554660B00DB518D /* tinyNET */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1DEB914A08733D8E0010E9CD /* Build configuration list for PBXNativeTarget "tinyNET" */;
buildPhases = (
D2AAC0600554660B00DB518D /* Headers */,
D2AAC0610554660B00DB518D /* Sources */,
D289988505E68E00004EDB86 /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECE5BA8C10EF6DE500B7EDDD /* PBXTargetDependency */,
);
name = tinyNET;
productName = tinyNET;
productReference = D2AAC0630554660B00DB518D /* libtinyNET.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECE5B98310EF6B6F00B7EDDD /* tinySAK */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECE5B98A10EF6B8E00B7EDDD /* Build configuration list for PBXNativeTarget "tinySAK" */;
buildPhases = (
ECE5B98010EF6B6F00B7EDDD /* Headers */,
ECE5B98110EF6B6F00B7EDDD /* Sources */,
ECE5B98210EF6B6F00B7EDDD /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = tinySAK;
productName = tinySAK;
productReference = ECE5B98410EF6B6F00B7EDDD /* libtinySAK.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
ECE5BA9B10EF6E1900B7EDDD /* test */ = {
isa = PBXNativeTarget;
buildConfigurationList = ECE5BAA610EF6E4300B7EDDD /* Build configuration list for PBXNativeTarget "test" */;
buildPhases = (
ECE5BA9910EF6E1900B7EDDD /* Sources */,
ECE5BA9A10EF6E1900B7EDDD /* Frameworks */,
);
buildRules = (
);
dependencies = (
ECE5BAA110EF6E2000B7EDDD /* PBXTargetDependency */,
ECE5BAA310EF6E2000B7EDDD /* PBXTargetDependency */,
);
name = test;
productName = test;
productReference = ECE5BA9C10EF6E1900B7EDDD /* test */;
productType = "com.apple.product-type.tool";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
08FB7793FE84155DC02AAC07 /* Project object */ = {
isa = PBXProject;
buildConfigurationList = 1DEB914E08733D8E0010E9CD /* Build configuration list for PBXProject "tinyNET" */;
compatibilityVersion = "Xcode 3.1";
hasScannedForEncodings = 1;
mainGroup = 08FB7794FE84155DC02AAC07 /* tinyNET */;
projectDirPath = "";
projectRoot = "";
targets = (
D2AAC0620554660B00DB518D /* tinyNET */,
ECE5B98310EF6B6F00B7EDDD /* tinySAK */,
ECE5BA9B10EF6E1900B7EDDD /* test */,
);
};
/* End PBXProject section */
/* Begin PBXSourcesBuildPhase section */
D2AAC0610554660B00DB518D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECF2B1D91165590300AA69D2 /* tnet_dhcp.c in Sources */,
ECF2B1DB1165590300AA69D2 /* tnet_dhcp_message.c in Sources */,
ECF2B1DD1165590300AA69D2 /* tnet_dhcp_option.c in Sources */,
ECF2B1DF1165590300AA69D2 /* tnet_dhcp_option_sip.c in Sources */,
ECF2B1E11165590300AA69D2 /* tnet_dhcp6.c in Sources */,
ECF2B1E31165590300AA69D2 /* tnet_dhcp6_duid.c in Sources */,
ECF2B1E51165590300AA69D2 /* tnet_dhcp6_message.c in Sources */,
ECF2B1E71165590300AA69D2 /* tnet_dhcp6_option.c in Sources */,
ECF2B1E91165590300AA69D2 /* tnet_dns.c in Sources */,
ECF2B1EB1165590300AA69D2 /* tnet_dns_a.c in Sources */,
ECF2B1ED1165590300AA69D2 /* tnet_dns_aaaa.c in Sources */,
ECF2B1EF1165590300AA69D2 /* tnet_dns_cname.c in Sources */,
ECF2B1F11165590300AA69D2 /* tnet_dns_message.c in Sources */,
ECF2B1F31165590300AA69D2 /* tnet_dns_mx.c in Sources */,
ECF2B1F51165590300AA69D2 /* tnet_dns_naptr.c in Sources */,
ECF2B1F71165590300AA69D2 /* tnet_dns_ns.c in Sources */,
ECF2B1F91165590300AA69D2 /* tnet_dns_opt.c in Sources */,
ECF2B1FB1165590300AA69D2 /* tnet_dns_ptr.c in Sources */,
ECF2B1FD1165590300AA69D2 /* tnet_dns_regexp.c in Sources */,
ECF2B1FF1165590300AA69D2 /* tnet_dns_resolvconf.c in Sources */,
ECF2B2011165590300AA69D2 /* tnet_dns_rr.c in Sources */,
ECF2B2031165590300AA69D2 /* tnet_dns_soa.c in Sources */,
ECF2B2051165590300AA69D2 /* tnet_dns_srv.c in Sources */,
ECF2B2071165590300AA69D2 /* tnet_dns_txt.c in Sources */,
ECF2B2091165590300AA69D2 /* tnet_ice.c in Sources */,
ECF2B20C1165590300AA69D2 /* tnet_stun.c in Sources */,
ECF2B20E1165590300AA69D2 /* tnet_stun_attribute.c in Sources */,
ECF2B2101165590300AA69D2 /* tnet_stun_message.c in Sources */,
ECF2B2131165590300AA69D2 /* tnet_tls.c in Sources */,
ECF2B2151165590300AA69D2 /* tnet.c in Sources */,
ECF2B2171165590300AA69D2 /* tnet_auth.c in Sources */,
ECF2B2191165590300AA69D2 /* tnet_endianness.c in Sources */,
ECF2B21C1165590300AA69D2 /* tnet_nat.c in Sources */,
ECF2B21E1165590300AA69D2 /* tnet_poll.c in Sources */,
ECF2B2211165590300AA69D2 /* tnet_socket.c in Sources */,
ECF2B2231165590300AA69D2 /* tnet_transport.c in Sources */,
ECF2B2251165590300AA69D2 /* tnet_transport_poll.c in Sources */,
ECF2B2261165590300AA69D2 /* tnet_transport_win32.c in Sources */,
ECF2B2281165590300AA69D2 /* tnet_utils.c in Sources */,
ECF2B22A1165590300AA69D2 /* tnet_turn.c in Sources */,
ECF2B22C1165590300AA69D2 /* tnet_turn_attribute.c in Sources */,
ECF2B22E1165590300AA69D2 /* tnet_turn_message.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECE5B98110EF6B6F00B7EDDD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECE5BA4B10EF6D8500B7EDDD /* tsk.c in Sources */,
ECE5BA4D10EF6D8500B7EDDD /* tsk_base64.c in Sources */,
ECE5BA4F10EF6D8500B7EDDD /* tsk_binaryutils.c in Sources */,
ECE5BA5110EF6D8500B7EDDD /* tsk_buffer.c in Sources */,
ECE5BA5310EF6D8500B7EDDD /* tsk_condwait.c in Sources */,
ECE5BA5510EF6D8500B7EDDD /* tsk_debug.c in Sources */,
ECE5BA5A10EF6D8500B7EDDD /* tsk_hmac.c in Sources */,
ECE5BA5C10EF6D8500B7EDDD /* tsk_list.c in Sources */,
ECE5BA5F10EF6D8500B7EDDD /* tsk_md5.c in Sources */,
ECE5BA6110EF6D8500B7EDDD /* tsk_memory.c in Sources */,
ECE5BA6310EF6D8500B7EDDD /* tsk_mutex.c in Sources */,
ECE5BA6510EF6D8500B7EDDD /* tsk_object.c in Sources */,
ECE5BA6710EF6D8500B7EDDD /* tsk_params.c in Sources */,
ECE5BA6910EF6D8500B7EDDD /* tsk_ppfcs16.c in Sources */,
ECE5BA6B10EF6D8500B7EDDD /* tsk_runnable.c in Sources */,
ECE5BA6D10EF6D8500B7EDDD /* tsk_safeobj.c in Sources */,
ECE5BA6F10EF6D8500B7EDDD /* tsk_semaphore.c in Sources */,
ECE5BA7110EF6D8500B7EDDD /* tsk_sha1.c in Sources */,
ECE5BA7310EF6D8500B7EDDD /* tsk_string.c in Sources */,
ECE5BA7510EF6D8500B7EDDD /* tsk_thread.c in Sources */,
ECE5BA7710EF6D8500B7EDDD /* tsk_time.c in Sources */,
ECE5BA7910EF6D8500B7EDDD /* tsk_timer.c in Sources */,
ECE5BA7B10EF6D8500B7EDDD /* tsk_url.c in Sources */,
ECE5BA7D10EF6D8500B7EDDD /* tsk_xml.c in Sources */,
EC9A8D391124B7C90046F5EC /* tsk_ppfcs32.c in Sources */,
EC9A8D3B1124B7C90046F5EC /* tsk_uuid.c in Sources */,
ECF2B16D1165590300AA69D2 /* tsk_fsm.c in Sources */,
ECF2B16F1165590300AA69D2 /* tsk_ragel_state.c in Sources */,
ECE408D3117CE92D00A43CEB /* tsk_options.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECE5BA9910EF6E1900B7EDDD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ECE5BAAF10EF6E4800B7EDDD /* stdafx.c in Sources */,
ECE5BAB010EF6E4800B7EDDD /* test.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
ECE5BA8C10EF6DE500B7EDDD /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECE5B98310EF6B6F00B7EDDD /* tinySAK */;
targetProxy = ECE5BA8B10EF6DE500B7EDDD /* PBXContainerItemProxy */;
};
ECE5BAA110EF6E2000B7EDDD /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = D2AAC0620554660B00DB518D /* tinyNET */;
targetProxy = ECE5BAA010EF6E2000B7EDDD /* PBXContainerItemProxy */;
};
ECE5BAA310EF6E2000B7EDDD /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = ECE5B98310EF6B6F00B7EDDD /* tinySAK */;
targetProxy = ECE5BAA210EF6E2000B7EDDD /* 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 = ../../tinyNET/src;
INSTALL_PATH = /usr/local/lib;
PRODUCT_NAME = tinyNET;
};
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 = tinyNET;
};
name = Release;
};
1DEB914F08733D8E0010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_ENABLE_CPP_EXCEPTIONS = NO;
GCC_ENABLE_CPP_RTTI = NO;
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = "-DDEBUG_LEVEL=DEBUG_LEVEL_INFO";
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;
};
ECE5B98510EF6B6F00B7EDDD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
EXECUTABLE_PREFIX = lib;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
INSTALL_PATH = /usr/local/lib;
PREBINDING = NO;
PRODUCT_NAME = tinySAK;
};
name = Debug;
};
ECE5B98610EF6B6F00B7EDDD /* 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;
};
ECE5BA9E10EF6E1900B7EDDD /* 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 = ../../tinyNET/src;
INSTALL_PATH = /usr/local/bin;
PREBINDING = NO;
PRODUCT_NAME = test;
};
name = Debug;
};
ECE5BA9F10EF6E1900B7EDDD /* 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;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1DEB914A08733D8E0010E9CD /* Build configuration list for PBXNativeTarget "tinyNET" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB914B08733D8E0010E9CD /* Debug */,
1DEB914C08733D8E0010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
1DEB914E08733D8E0010E9CD /* Build configuration list for PBXProject "tinyNET" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB914F08733D8E0010E9CD /* Debug */,
1DEB915008733D8E0010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECE5B98A10EF6B8E00B7EDDD /* Build configuration list for PBXNativeTarget "tinySAK" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECE5B98510EF6B6F00B7EDDD /* Debug */,
ECE5B98610EF6B6F00B7EDDD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECE5BAA610EF6E4300B7EDDD /* Build configuration list for PBXNativeTarget "test" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECE5BA9E10EF6E1900B7EDDD /* Debug */,
ECE5BA9F10EF6E1900B7EDDD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
}
|