forked from tcurdt/iProxy
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathproject.pbxproj
executable file
·1122 lines (1110 loc) · 70.2 KB
/
project.pbxproj
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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
0200DA4F134248440049713F /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0200DA4E134248440049713F /* Security.framework */; };
020BC9CE124ADBD000E2E1F2 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 020BC9CD124ADBD000E2E1F2 /* MobileCoreServices.framework */; };
022933A6139881A200108283 /* SocketServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 022933A5139881A200108283 /* SocketServer.m */; };
02326F16133B374000B90EB7 /* PMSSSHFileController.m in Sources */ = {isa = PBXBuildFile; fileRef = 02326F15133B374000B90EB7 /* PMSSSHFileController.m */; };
02326F25133C66CD00B90EB7 /* PMSPreferences.xib in Resources */ = {isa = PBXBuildFile; fileRef = 02326F24133C66CD00B90EB7 /* PMSPreferences.xib */; };
02326F28133C676B00B90EB7 /* PMSPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 02326F27133C676A00B90EB7 /* PMSPreferences.m */; };
02501CC4126667EF00CE5CA9 /* GenericServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 02501CC3126667EF00CE5CA9 /* GenericServer.m */; };
02501CCA1266681800CE5CA9 /* SocksProxyServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 02501CC91266681800CE5CA9 /* SocksProxyServer.m */; };
02501D61126674DB00CE5CA9 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 02501D60126674DB00CE5CA9 /* InfoPlist.strings */; };
02501D63126674E200CE5CA9 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 02501D62126674E200CE5CA9 /* MainMenu.xib */; };
02501D651266753500CE5CA9 /* MainViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 02501D641266753500CE5CA9 /* MainViewController.xib */; };
02501D671266753A00CE5CA9 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 02501D661266753A00CE5CA9 /* MainWindow.xib */; };
02501D691266753F00CE5CA9 /* InfoViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 02501D681266753F00CE5CA9 /* InfoViewController.xib */; };
0267229D12444EA000A2EACF /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0267229C12444EA000A2EACF /* Cocoa.framework */; };
0267243E1245646C00A2EACF /* PMSUIController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0267243D1245646C00A2EACF /* PMSUIController.m */; };
0274FA9012444D8F00173784 /* PMSAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0274FA8F12444D8F00173784 /* PMSAppDelegate.m */; };
0274FA9212444D9B00173784 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 0274FA9112444D9B00173784 /* main.m */; };
0275613E124AD4AD00B64593 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0275613D124AD4AD00B64593 /* MessageUI.framework */; };
02774268128B591700064370 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 02774267128B591700064370 /* SystemConfiguration.framework */; };
0277431C128B857600064370 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0277431B128B857600064370 /* AudioToolbox.framework */; };
02E7545F1274E8C400D55958 /* auth-pwd.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E754551274E8C400D55958 /* auth-pwd.c */; };
02E754601274E8C400D55958 /* get-bind.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E754561274E8C400D55958 /* get-bind.c */; };
02E754611274E8C400D55958 /* init.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E754571274E8C400D55958 /* init.c */; };
02E754631274E8C400D55958 /* readconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E754591274E8C400D55958 /* readconf.c */; };
02E754641274E8C400D55958 /* relay.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E7545A1274E8C400D55958 /* relay.c */; };
02E754651274E8C400D55958 /* socks.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E7545B1274E8C400D55958 /* socks.c */; };
02E754661274E8C400D55958 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E7545D1274E8C400D55958 /* util.c */; };
02E754911274EC3000D55958 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E754581274E8C400D55958 /* main.c */; };
02E754D012752A4C00D55958 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E7545D1274E8C400D55958 /* util.c */; };
02E754D112752A4E00D55958 /* socks.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E7545B1274E8C400D55958 /* socks.c */; };
02E754D212752A4F00D55958 /* relay.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E7545A1274E8C400D55958 /* relay.c */; };
02E754D312752A5000D55958 /* readconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E754591274E8C400D55958 /* readconf.c */; };
02E754D412752A5100D55958 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E754581274E8C400D55958 /* main.c */; };
02E754D512752A5200D55958 /* init.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E754571274E8C400D55958 /* init.c */; };
02E754D612752A5400D55958 /* get-bind.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E754561274E8C400D55958 /* get-bind.c */; };
02E754D712752A5500D55958 /* auth-pwd.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E754551274E8C400D55958 /* auth-pwd.c */; };
02ED14C21266836A00595AA0 /* UIColorAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 02ED14C11266836A00595AA0 /* UIColorAdditions.m */; };
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765A40DF7441C002DB57D /* CoreGraphics.framework */; };
3A18D6B4119DC7E300C56A7A /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3A18D6B3119DC7E300C56A7A /* CFNetwork.framework */; };
54437C34151B9702009EBC8F /* HTTPProxyServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 02501CC61266680900CE5CA9 /* HTTPProxyServer.m */; };
54437C36151B9753009EBC8F /* atom.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7B81237A598008538A1 /* atom.c */; };
54437C37151B9757009EBC8F /* auth.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7BA1237A598008538A1 /* auth.c */; };
54437C38151B975A009EBC8F /* chunk.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7BC1237A598008538A1 /* chunk.c */; };
54437C39151B975E009EBC8F /* client.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7BE1237A598008538A1 /* client.c */; };
54437C3A151B9761009EBC8F /* config.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7C01237A598008538A1 /* config.c */; };
54437C3B151B9765009EBC8F /* diskcache.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7C21237A598008538A1 /* diskcache.c */; };
54437C3C151B9769009EBC8F /* dns.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7C41237A598008538A1 /* dns.c */; };
54437C3D151B976C009EBC8F /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7C61237A598008538A1 /* event.c */; };
54437C3E151B9770009EBC8F /* forbidden.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7C81237A598008538A1 /* forbidden.c */; };
54437C3F151B9774009EBC8F /* fts_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7CA1237A598008538A1 /* fts_compat.c */; };
54437C40151B9779009EBC8F /* ftsimport.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7CC1237A598008538A1 /* ftsimport.c */; };
54437C41151B977D009EBC8F /* http_parse.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7CE1237A598008538A1 /* http_parse.c */; };
54437C42151B9782009EBC8F /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7D01237A598008538A1 /* http.c */; };
54437C43151B9785009EBC8F /* io.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7D21237A598008538A1 /* io.c */; };
54437C44151B9789009EBC8F /* local.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7D41237A598008538A1 /* local.c */; };
54437C45151B978D009EBC8F /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7D61237A598008538A1 /* log.c */; };
54437C46151B9790009EBC8F /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7D81237A598008538A1 /* main.c */; };
54437C47151B9796009EBC8F /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7D91237A598008538A1 /* md5.c */; };
54437C48151B979F009EBC8F /* mingw.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7DD1237A598008538A1 /* mingw.c */; };
54437C49151B97A3009EBC8F /* object.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7DF1237A598008538A1 /* object.c */; };
54437C4A151B97A6009EBC8F /* parse_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7E11237A598008538A1 /* parse_time.c */; };
54437C4B151B97AA009EBC8F /* server.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7E41237A598008538A1 /* server.c */; };
54437C4C151B97AD009EBC8F /* socks.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7E61237A598008538A1 /* socks.c */; };
54437C4D151B97B1009EBC8F /* tunnel.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7E81237A598008538A1 /* tunnel.c */; };
54437C4E151B97B5009EBC8F /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D71D7EA1237A598008538A1 /* util.c */; };
5487D670151BAC6C006A92F3 /* UIDevice_Extended.m in Sources */ = {isa = PBXBuildFile; fileRef = 5487D66F151BAC6C006A92F3 /* UIDevice_Extended.m */; };
9D06AE961237D37400470CEC /* polipo.config in Resources */ = {isa = PBXBuildFile; fileRef = 9D06AE951237D37400470CEC /* polipo.config */; };
9D211196110637FB009C3C7C /* iTunesArtwork in Resources */ = {isa = PBXBuildFile; fileRef = 9D211195110637FB009C3C7C /* iTunesArtwork */; };
9D2224E51105E6A6003F4E04 /* Entitlements.plist in Resources */ = {isa = PBXBuildFile; fileRef = 9D2224E41105E6A6003F4E04 /* Entitlements.plist */; };
9D3437F912420C5A00629728 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D3437F812420C5A00629728 /* AVFoundation.framework */; };
9D3438131242149300629728 /* silence.wav in Resources */ = {isa = PBXBuildFile; fileRef = 9D3438121242149300629728 /* silence.wav */; };
9D3ECC621244F6BA002B5F7E /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9D3ECC611244F6BA002B5F7E /* Icon@2x.png */; };
9D3ECC641244F6C3002B5F7E /* Icon-72.png in Resources */ = {isa = PBXBuildFile; fileRef = 9D3ECC631244F6C3002B5F7E /* Icon-72.png */; };
9D3ECC661244F6CE002B5F7E /* Icon-Small.png in Resources */ = {isa = PBXBuildFile; fileRef = 9D3ECC651244F6CE002B5F7E /* Icon-Small.png */; };
9D3ECC681244F6D9002B5F7E /* Icon-Small-50.png in Resources */ = {isa = PBXBuildFile; fileRef = 9D3ECC671244F6D9002B5F7E /* Icon-Small-50.png */; };
9D3ECC6A1244F6E3002B5F7E /* Icon-Small@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9D3ECC691244F6E3002B5F7E /* Icon-Small@2x.png */; };
9D5B3C5F1103D4E2003C8FCF /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 9D5B3C5E1103D4E2003C8FCF /* Icon.png */; };
9D63173810FEAC8B0041EE37 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D63173410FEAC8B0041EE37 /* AppDelegate.m */; };
9D63173910FEAC8B0041EE37 /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D63173610FEAC8B0041EE37 /* MainViewController.m */; };
9D63173C10FEAC980041EE37 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D63173A10FEAC980041EE37 /* main.m */; };
9D79C2BF124E7173008F7F98 /* NSStringAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D79C2BE124E7173008F7F98 /* NSStringAdditions.m */; };
9D83D36711B9AF5C00A9922F /* PacFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D83D36111B9AF5C00A9922F /* PacFileResponse.m */; };
9D83D36811B9AF5C00A9922F /* HTTPResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D83D36311B9AF5C00A9922F /* HTTPResponseHandler.m */; };
9D83D36911B9AF5C00A9922F /* HTTPServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D83D36511B9AF5C00A9922F /* HTTPServer.m */; };
9D94CB80110E727700F8C260 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 9D94CB7F110E727700F8C260 /* Default.png */; };
9DDA4C2E124E460D00BF30F3 /* InfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DDA4C2C124E460D00BF30F3 /* InfoViewController.m */; };
9DDA4C7B124E4E2300BF30F3 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9DDA4C7A124E4E2300BF30F3 /* Default@2x.png */; };
9DF66D6712482B170012D66D /* UIDeviceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DF66D6612482B170012D66D /* UIDeviceAdditions.m */; };
9DF66DB0124830AF0012D66D /* UIViewAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DF66DAF124830AF0012D66D /* UIViewAdditions.m */; };
9DF66E4C124839050012D66D /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DF66E4B124839050012D66D /* QuartzCore.framework */; };
9DF66E8B12483BE30012D66D /* Icon-72-transparent.png in Resources */ = {isa = PBXBuildFile; fileRef = 9DF66E8A12483BE30012D66D /* Icon-72-transparent.png */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
0200DA4E134248440049713F /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = /System/Library/Frameworks/Security.framework; sourceTree = "<absolute>"; };
020BC9CD124ADBD000E2E1F2 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
0220C6B81328C9ED00962EF9 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
022933A4139881A200108283 /* SocketServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SocketServer.h; path = Sources/SocketServer.h; sourceTree = "<group>"; };
022933A5139881A200108283 /* SocketServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SocketServer.m; path = Sources/SocketServer.m; sourceTree = "<group>"; };
02326EF0133AC16E00B90EB7 /* SecurityFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SecurityFoundation.framework; path = /System/Library/Frameworks/SecurityFoundation.framework; sourceTree = "<absolute>"; };
02326EF1133AC16E00B90EB7 /* SecurityInterface.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SecurityInterface.framework; path = /System/Library/Frameworks/SecurityInterface.framework; sourceTree = "<absolute>"; };
02326F14133B374000B90EB7 /* PMSSSHFileController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PMSSSHFileController.h; sourceTree = "<group>"; };
02326F15133B374000B90EB7 /* PMSSSHFileController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PMSSSHFileController.m; sourceTree = "<group>"; };
02326F24133C66CD00B90EB7 /* PMSPreferences.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PMSPreferences.xib; sourceTree = "<group>"; };
02326F26133C676A00B90EB7 /* PMSPreferences.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PMSPreferences.h; sourceTree = "<group>"; };
02326F27133C676A00B90EB7 /* PMSPreferences.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PMSPreferences.m; sourceTree = "<group>"; };
02501CC2126667EF00CE5CA9 /* GenericServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GenericServer.h; path = Sources/GenericServer.h; sourceTree = "<group>"; };
02501CC3126667EF00CE5CA9 /* GenericServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GenericServer.m; path = Sources/GenericServer.m; sourceTree = "<group>"; };
02501CC51266680900CE5CA9 /* HTTPProxyServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPProxyServer.h; path = Sources/HTTPProxyServer.h; sourceTree = "<group>"; };
02501CC61266680900CE5CA9 /* HTTPProxyServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPProxyServer.m; path = Sources/HTTPProxyServer.m; sourceTree = "<group>"; };
02501CC81266681800CE5CA9 /* SocksProxyServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SocksProxyServer.h; path = Sources/SocksProxyServer.h; sourceTree = "<group>"; };
02501CC91266681800CE5CA9 /* SocksProxyServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SocksProxyServer.m; path = Sources/SocksProxyServer.m; sourceTree = "<group>"; };
0267229C12444EA000A2EACF /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
0267243C1245646C00A2EACF /* PMSUIController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PMSUIController.h; path = Classes/PMSUIController.h; sourceTree = "<group>"; };
0267243D1245646C00A2EACF /* PMSUIController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PMSUIController.m; path = Classes/PMSUIController.m; sourceTree = "<group>"; };
0274FA6312444A5D00173784 /* iProxyMacSetup.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = iProxyMacSetup.app; sourceTree = BUILT_PRODUCTS_DIR; };
0274FA6512444A5D00173784 /* iProxyMacSetup-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "iProxyMacSetup-Info.plist"; sourceTree = "<group>"; };
0274FA8A12444D8300173784 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
0274FA8B12444D8300173784 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = "<group>"; };
0274FA8E12444D8F00173784 /* PMSAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PMSAppDelegate.h; path = Classes/PMSAppDelegate.h; sourceTree = "<group>"; };
0274FA8F12444D8F00173784 /* PMSAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PMSAppDelegate.m; path = Classes/PMSAppDelegate.m; sourceTree = "<group>"; };
0274FA9112444D9B00173784 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
0275613D124AD4AD00B64593 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
02774267128B591700064370 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
0277431B128B857600064370 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
02E754551274E8C400D55958 /* auth-pwd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "auth-pwd.c"; sourceTree = "<group>"; };
02E754561274E8C400D55958 /* get-bind.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "get-bind.c"; sourceTree = "<group>"; };
02E754571274E8C400D55958 /* init.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = init.c; sourceTree = "<group>"; };
02E754581274E8C400D55958 /* main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = "<group>"; };
02E754591274E8C400D55958 /* readconf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = readconf.c; sourceTree = "<group>"; };
02E7545A1274E8C400D55958 /* relay.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = relay.c; sourceTree = "<group>"; };
02E7545B1274E8C400D55958 /* socks.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = socks.c; sourceTree = "<group>"; };
02E7545C1274E8C400D55958 /* srelay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srelay.h; sourceTree = "<group>"; };
02E7545D1274E8C400D55958 /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = util.c; sourceTree = "<group>"; };
02E7545E1274E8C400D55958 /* v6defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = v6defs.h; sourceTree = "<group>"; };
02E7548E1274EC1A00D55958 /* route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = route.h; sourceTree = "<group>"; };
02ED13FD12667DFF00595AA0 /* SharedHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SharedHeader.h; sourceTree = "<group>"; };
02ED14C01266836A00595AA0 /* UIColorAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UIColorAdditions.h; path = Sources/UIColorAdditions.h; sourceTree = "<group>"; };
02ED14C11266836A00595AA0 /* UIColorAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = UIColorAdditions.m; path = Sources/UIColorAdditions.m; sourceTree = "<group>"; };
1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
1D6058910D05DD3D006BFB54 /* iProxy.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = iProxy.app; sourceTree = BUILT_PRODUCTS_DIR; };
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
288765A40DF7441C002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
3A18D6B3119DC7E300C56A7A /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
5487D66E151BAC6C006A92F3 /* UIDevice_Extended.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIDevice_Extended.h; sourceTree = "<group>"; };
5487D66F151BAC6C006A92F3 /* UIDevice_Extended.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIDevice_Extended.m; sourceTree = "<group>"; };
9D06AE951237D37400470CEC /* polipo.config */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = polipo.config; path = Resources/polipo.config; sourceTree = "<group>"; };
9D211195110637FB009C3C7C /* iTunesArtwork */ = {isa = PBXFileReference; lastKnownFileType = file; name = iTunesArtwork; path = Resources/iTunesArtwork; sourceTree = "<group>"; };
9D2224E41105E6A6003F4E04 /* Entitlements.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Entitlements.plist; path = Resources/Entitlements.plist; sourceTree = "<group>"; };
9D3437F812420C5A00629728 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
9D3438121242149300629728 /* silence.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = silence.wav; path = Resources/silence.wav; sourceTree = "<group>"; };
9D3ECC611244F6BA002B5F7E /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon@2x.png"; path = "Resources/Icon@2x.png"; sourceTree = "<group>"; };
9D3ECC631244F6C3002B5F7E /* Icon-72.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon-72.png"; path = "Resources/Icon-72.png"; sourceTree = "<group>"; };
9D3ECC651244F6CE002B5F7E /* Icon-Small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon-Small.png"; path = "Resources/Icon-Small.png"; sourceTree = "<group>"; };
9D3ECC671244F6D9002B5F7E /* Icon-Small-50.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon-Small-50.png"; path = "Resources/Icon-Small-50.png"; sourceTree = "<group>"; };
9D3ECC691244F6E3002B5F7E /* Icon-Small@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon-Small@2x.png"; path = "Resources/Icon-Small@2x.png"; sourceTree = "<group>"; };
9D5B3C5E1103D4E2003C8FCF /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Icon.png; path = Resources/Icon.png; sourceTree = "<group>"; };
9D63173310FEAC8B0041EE37 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Sources/AppDelegate.h; sourceTree = "<group>"; };
9D63173410FEAC8B0041EE37 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Sources/AppDelegate.m; sourceTree = "<group>"; };
9D63173510FEAC8B0041EE37 /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainViewController.h; path = Sources/MainViewController.h; sourceTree = "<group>"; };
9D63173610FEAC8B0041EE37 /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainViewController.m; path = Sources/MainViewController.m; sourceTree = "<group>"; };
9D63173A10FEAC980041EE37 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Sources/main.m; sourceTree = "<group>"; };
9D63173B10FEAC980041EE37 /* Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Prefix.pch; path = Sources/Prefix.pch; sourceTree = "<group>"; };
9D63174510FEACD30041EE37 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Resources/Info.plist; sourceTree = "<group>"; };
9D63174610FEACD30041EE37 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Resources/English.lproj/MainViewController.xib; sourceTree = "<group>"; };
9D63174710FEACD30041EE37 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Resources/English.lproj/MainWindow.xib; sourceTree = "<group>"; };
9D71D7B81237A598008538A1 /* atom.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atom.c; sourceTree = "<group>"; };
9D71D7B91237A598008538A1 /* atom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = atom.h; sourceTree = "<group>"; };
9D71D7BA1237A598008538A1 /* auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = auth.c; sourceTree = "<group>"; };
9D71D7BB1237A598008538A1 /* auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = auth.h; sourceTree = "<group>"; };
9D71D7BC1237A598008538A1 /* chunk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = chunk.c; sourceTree = "<group>"; };
9D71D7BD1237A598008538A1 /* chunk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chunk.h; sourceTree = "<group>"; };
9D71D7BE1237A598008538A1 /* client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = client.c; sourceTree = "<group>"; };
9D71D7BF1237A598008538A1 /* client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = client.h; sourceTree = "<group>"; };
9D71D7C01237A598008538A1 /* config.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = config.c; sourceTree = "<group>"; };
9D71D7C11237A598008538A1 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
9D71D7C21237A598008538A1 /* diskcache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = diskcache.c; sourceTree = "<group>"; };
9D71D7C31237A598008538A1 /* diskcache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = diskcache.h; sourceTree = "<group>"; };
9D71D7C41237A598008538A1 /* dns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dns.c; sourceTree = "<group>"; };
9D71D7C51237A598008538A1 /* dns.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dns.h; sourceTree = "<group>"; };
9D71D7C61237A598008538A1 /* event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = event.c; sourceTree = "<group>"; };
9D71D7C71237A598008538A1 /* event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = "<group>"; };
9D71D7C81237A598008538A1 /* forbidden.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = forbidden.c; sourceTree = "<group>"; };
9D71D7C91237A598008538A1 /* forbidden.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = forbidden.h; sourceTree = "<group>"; };
9D71D7CA1237A598008538A1 /* fts_compat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fts_compat.c; sourceTree = "<group>"; };
9D71D7CB1237A598008538A1 /* fts_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fts_compat.h; sourceTree = "<group>"; };
9D71D7CC1237A598008538A1 /* ftsimport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ftsimport.c; sourceTree = "<group>"; };
9D71D7CD1237A598008538A1 /* ftsimport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ftsimport.h; sourceTree = "<group>"; };
9D71D7CE1237A598008538A1 /* http_parse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http_parse.c; sourceTree = "<group>"; };
9D71D7CF1237A598008538A1 /* http_parse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = http_parse.h; sourceTree = "<group>"; };
9D71D7D01237A598008538A1 /* http.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http.c; sourceTree = "<group>"; };
9D71D7D11237A598008538A1 /* http.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = http.h; sourceTree = "<group>"; };
9D71D7D21237A598008538A1 /* io.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = io.c; sourceTree = "<group>"; };
9D71D7D31237A598008538A1 /* io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = io.h; sourceTree = "<group>"; };
9D71D7D41237A598008538A1 /* local.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = local.c; sourceTree = "<group>"; };
9D71D7D51237A598008538A1 /* local.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = local.h; sourceTree = "<group>"; };
9D71D7D61237A598008538A1 /* log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = log.c; sourceTree = "<group>"; };
9D71D7D71237A598008538A1 /* log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = log.h; sourceTree = "<group>"; };
9D71D7D81237A598008538A1 /* main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = "<group>"; };
9D71D7D91237A598008538A1 /* md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = md5.c; sourceTree = "<group>"; };
9D71D7DA1237A598008538A1 /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
9D71D7DD1237A598008538A1 /* mingw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mingw.c; sourceTree = "<group>"; };
9D71D7DE1237A598008538A1 /* mingw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mingw.h; sourceTree = "<group>"; };
9D71D7DF1237A598008538A1 /* object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = object.c; sourceTree = "<group>"; };
9D71D7E01237A598008538A1 /* object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = object.h; sourceTree = "<group>"; };
9D71D7E11237A598008538A1 /* parse_time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = parse_time.c; sourceTree = "<group>"; };
9D71D7E21237A598008538A1 /* parse_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = parse_time.h; sourceTree = "<group>"; };
9D71D7E31237A598008538A1 /* polipo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = polipo.h; sourceTree = "<group>"; };
9D71D7E41237A598008538A1 /* server.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = server.c; sourceTree = "<group>"; };
9D71D7E51237A598008538A1 /* server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = server.h; sourceTree = "<group>"; };
9D71D7E61237A598008538A1 /* socks.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = socks.c; sourceTree = "<group>"; };
9D71D7E71237A598008538A1 /* socks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socks.h; sourceTree = "<group>"; };
9D71D7E81237A598008538A1 /* tunnel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tunnel.c; sourceTree = "<group>"; };
9D71D7E91237A598008538A1 /* tunnel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tunnel.h; sourceTree = "<group>"; };
9D71D7EA1237A598008538A1 /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = util.c; sourceTree = "<group>"; };
9D71D7EB1237A598008538A1 /* util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = "<group>"; };
9D79C2BD124E7173008F7F98 /* NSStringAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NSStringAdditions.h; path = Sources/NSStringAdditions.h; sourceTree = "<group>"; };
9D79C2BE124E7173008F7F98 /* NSStringAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NSStringAdditions.m; path = Sources/NSStringAdditions.m; sourceTree = "<group>"; };
9D83D36011B9AF5C00A9922F /* PacFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PacFileResponse.h; path = Sources/PacFileResponse.h; sourceTree = "<group>"; };
9D83D36111B9AF5C00A9922F /* PacFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PacFileResponse.m; path = Sources/PacFileResponse.m; sourceTree = "<group>"; };
9D83D36211B9AF5C00A9922F /* HTTPResponseHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPResponseHandler.h; path = Sources/HTTPResponseHandler.h; sourceTree = "<group>"; };
9D83D36311B9AF5C00A9922F /* HTTPResponseHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPResponseHandler.m; path = Sources/HTTPResponseHandler.m; sourceTree = "<group>"; };
9D83D36411B9AF5C00A9922F /* HTTPServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPServer.h; path = Sources/HTTPServer.h; sourceTree = "<group>"; };
9D83D36511B9AF5C00A9922F /* HTTPServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPServer.m; path = Sources/HTTPServer.m; sourceTree = "<group>"; };
9D94CB7F110E727700F8C260 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Default.png; path = Resources/Default.png; sourceTree = "<group>"; };
9DDA4C2B124E460D00BF30F3 /* InfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InfoViewController.h; path = Sources/InfoViewController.h; sourceTree = "<group>"; };
9DDA4C2C124E460D00BF30F3 /* InfoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = InfoViewController.m; path = Sources/InfoViewController.m; sourceTree = "<group>"; };
9DDA4C30124E466C00BF30F3 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Resources/English.lproj/InfoViewController.xib; sourceTree = "<group>"; };
9DDA4C7A124E4E2300BF30F3 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Default@2x.png"; path = "Resources/Default@2x.png"; sourceTree = "<group>"; };
9DF66D6512482B170012D66D /* UIDeviceAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UIDeviceAdditions.h; path = Sources/UIDeviceAdditions.h; sourceTree = "<group>"; };
9DF66D6612482B170012D66D /* UIDeviceAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = UIDeviceAdditions.m; path = Sources/UIDeviceAdditions.m; sourceTree = "<group>"; };
9DF66DAE124830AF0012D66D /* UIViewAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UIViewAdditions.h; path = Sources/UIViewAdditions.h; sourceTree = "<group>"; };
9DF66DAF124830AF0012D66D /* UIViewAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = UIViewAdditions.m; path = Sources/UIViewAdditions.m; sourceTree = "<group>"; };
9DF66E4B124839050012D66D /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
9DF66E8A12483BE30012D66D /* Icon-72-transparent.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon-72-transparent.png"; path = "Resources/Icon-72-transparent.png"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
0274FA6112444A5D00173784 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0200DA4F134248440049713F /* Security.framework in Frameworks */,
0267229D12444EA000A2EACF /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
02E754CB12752A3700D55958 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */,
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */,
288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */,
3A18D6B4119DC7E300C56A7A /* CFNetwork.framework in Frameworks */,
0275613E124AD4AD00B64593 /* MessageUI.framework in Frameworks */,
020BC9CE124ADBD000E2E1F2 /* MobileCoreServices.framework in Frameworks */,
9D3437F912420C5A00629728 /* AVFoundation.framework in Frameworks */,
9DF66E4C124839050012D66D /* QuartzCore.framework in Frameworks */,
02774268128B591700064370 /* SystemConfiguration.framework in Frameworks */,
0277431C128B857600064370 /* AudioToolbox.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0274FA7E12444C3500173784 /* iProxyMacSetup */ = {
isa = PBXGroup;
children = (
0274FA8E12444D8F00173784 /* PMSAppDelegate.h */,
0274FA8F12444D8F00173784 /* PMSAppDelegate.m */,
02326F14133B374000B90EB7 /* PMSSSHFileController.h */,
02326F15133B374000B90EB7 /* PMSSSHFileController.m */,
0267243C1245646C00A2EACF /* PMSUIController.h */,
0267243D1245646C00A2EACF /* PMSUIController.m */,
02326F26133C676A00B90EB7 /* PMSPreferences.h */,
02326F27133C676A00B90EB7 /* PMSPreferences.m */,
0274FA8912444D1200173784 /* Resources */,
0274FA9112444D9B00173784 /* main.m */,
);
path = iProxyMacSetup;
sourceTree = "<group>";
};
0274FA8912444D1200173784 /* Resources */ = {
isa = PBXGroup;
children = (
02501D60126674DB00CE5CA9 /* InfoPlist.strings */,
02501D62126674E200CE5CA9 /* MainMenu.xib */,
02326F24133C66CD00B90EB7 /* PMSPreferences.xib */,
0274FA6512444A5D00173784 /* iProxyMacSetup-Info.plist */,
);
path = Resources;
sourceTree = "<group>";
};
02E203DB133176610007CA2C /* Libraries */ = {
isa = PBXGroup;
children = (
02E7548E1274EC1A00D55958 /* route.h */,
02E7544F1274E8A500D55958 /* srelay */,
9D71D7AD1237A53C008538A1 /* polipo */,
);
path = Libraries;
sourceTree = "<group>";
};
02E203DC133176A50007CA2C /* iProxy */ = {
isa = PBXGroup;
children = (
9D63173310FEAC8B0041EE37 /* AppDelegate.h */,
9D63173410FEAC8B0041EE37 /* AppDelegate.m */,
9DDA4C62124E4AD200BF30F3 /* ViewControllers */,
3A18D67F119DC6F700C56A7A /* Server */,
9DF66D6412482AF70012D66D /* Additions */,
29B97315FDCFA39411CA2CEA /* Other Sources */,
29B97317FDCFA39411CA2CEA /* Resources */,
);
path = iProxy;
sourceTree = "<group>";
};
02E7544F1274E8A500D55958 /* srelay */ = {
isa = PBXGroup;
children = (
02E754551274E8C400D55958 /* auth-pwd.c */,
02E754561274E8C400D55958 /* get-bind.c */,
02E754571274E8C400D55958 /* init.c */,
02E754581274E8C400D55958 /* main.c */,
02E754591274E8C400D55958 /* readconf.c */,
02E7545A1274E8C400D55958 /* relay.c */,
02E7545B1274E8C400D55958 /* socks.c */,
02E7545C1274E8C400D55958 /* srelay.h */,
02E7545D1274E8C400D55958 /* util.c */,
02E7545E1274E8C400D55958 /* v6defs.h */,
);
path = srelay;
sourceTree = "<group>";
};
19C28FACFE9D520D11CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
1D6058910D05DD3D006BFB54 /* iProxy.app */,
0274FA6312444A5D00173784 /* iProxyMacSetup.app */,
);
name = Products;
sourceTree = "<group>";
};
29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
isa = PBXGroup;
children = (
02ED13FD12667DFF00595AA0 /* SharedHeader.h */,
0220C6B81328C9ED00962EF9 /* README.txt */,
02E203DC133176A50007CA2C /* iProxy */,
0274FA7E12444C3500173784 /* iProxyMacSetup */,
02E203DB133176610007CA2C /* Libraries */,
29B97323FDCFA39411CA2CEA /* Frameworks */,
19C28FACFE9D520D11CA2CBB /* Products */,
);
name = CustomTemplate;
sourceTree = "<group>";
};
29B97315FDCFA39411CA2CEA /* Other Sources */ = {
isa = PBXGroup;
children = (
5487D66E151BAC6C006A92F3 /* UIDevice_Extended.h */,
5487D66F151BAC6C006A92F3 /* UIDevice_Extended.m */,
9D63173A10FEAC980041EE37 /* main.m */,
9D63173B10FEAC980041EE37 /* Prefix.pch */,
);
name = "Other Sources";
sourceTree = "<group>";
};
29B97317FDCFA39411CA2CEA /* Resources */ = {
isa = PBXGroup;
children = (
9D3ECC5F1244F6A1002B5F7E /* Icons */,
9DE52B1A110E77920035266A /* Nibs */,
9D63174510FEACD30041EE37 /* Info.plist */,
9D94CB7F110E727700F8C260 /* Default.png */,
9DDA4C7A124E4E2300BF30F3 /* Default@2x.png */,
9D2224E41105E6A6003F4E04 /* Entitlements.plist */,
9D06AE951237D37400470CEC /* polipo.config */,
9D3438121242149300629728 /* silence.wav */,
);
name = Resources;
sourceTree = "<group>";
};
29B97323FDCFA39411CA2CEA /* Frameworks */ = {
isa = PBXGroup;
children = (
0277431B128B857600064370 /* AudioToolbox.framework */,
02774267128B591700064370 /* SystemConfiguration.framework */,
3A18D6B3119DC7E300C56A7A /* CFNetwork.framework */,
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */,
1D30AB110D05D00D00671497 /* Foundation.framework */,
288765A40DF7441C002DB57D /* CoreGraphics.framework */,
0267229C12444EA000A2EACF /* Cocoa.framework */,
0275613D124AD4AD00B64593 /* MessageUI.framework */,
020BC9CD124ADBD000E2E1F2 /* MobileCoreServices.framework */,
9D3437F812420C5A00629728 /* AVFoundation.framework */,
9DF66E4B124839050012D66D /* QuartzCore.framework */,
0200DA4E134248440049713F /* Security.framework */,
02326EF0133AC16E00B90EB7 /* SecurityFoundation.framework */,
02326EF1133AC16E00B90EB7 /* SecurityInterface.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
3A18D67F119DC6F700C56A7A /* Server */ = {
isa = PBXGroup;
children = (
9D83D36011B9AF5C00A9922F /* PacFileResponse.h */,
9D83D36111B9AF5C00A9922F /* PacFileResponse.m */,
9D83D36211B9AF5C00A9922F /* HTTPResponseHandler.h */,
9D83D36311B9AF5C00A9922F /* HTTPResponseHandler.m */,
9D83D36411B9AF5C00A9922F /* HTTPServer.h */,
9D83D36511B9AF5C00A9922F /* HTTPServer.m */,
02501CC2126667EF00CE5CA9 /* GenericServer.h */,
02501CC3126667EF00CE5CA9 /* GenericServer.m */,
022933A4139881A200108283 /* SocketServer.h */,
022933A5139881A200108283 /* SocketServer.m */,
02501CC51266680900CE5CA9 /* HTTPProxyServer.h */,
02501CC61266680900CE5CA9 /* HTTPProxyServer.m */,
02501CC81266681800CE5CA9 /* SocksProxyServer.h */,
02501CC91266681800CE5CA9 /* SocksProxyServer.m */,
);
name = Server;
sourceTree = "<group>";
};
9D3ECC5F1244F6A1002B5F7E /* Icons */ = {
isa = PBXGroup;
children = (
9D211195110637FB009C3C7C /* iTunesArtwork */,
9D5B3C5E1103D4E2003C8FCF /* Icon.png */,
9D3ECC611244F6BA002B5F7E /* Icon@2x.png */,
9D3ECC631244F6C3002B5F7E /* Icon-72.png */,
9D3ECC651244F6CE002B5F7E /* Icon-Small.png */,
9D3ECC671244F6D9002B5F7E /* Icon-Small-50.png */,
9D3ECC691244F6E3002B5F7E /* Icon-Small@2x.png */,
9DF66E8A12483BE30012D66D /* Icon-72-transparent.png */,
);
name = Icons;
sourceTree = "<group>";
};
9D71D7AD1237A53C008538A1 /* polipo */ = {
isa = PBXGroup;
children = (
9D71D7B81237A598008538A1 /* atom.c */,
9D71D7B91237A598008538A1 /* atom.h */,
9D71D7BA1237A598008538A1 /* auth.c */,
9D71D7BB1237A598008538A1 /* auth.h */,
9D71D7BC1237A598008538A1 /* chunk.c */,
9D71D7BD1237A598008538A1 /* chunk.h */,
9D71D7BE1237A598008538A1 /* client.c */,
9D71D7BF1237A598008538A1 /* client.h */,
9D71D7C01237A598008538A1 /* config.c */,
9D71D7C11237A598008538A1 /* config.h */,
9D71D7C21237A598008538A1 /* diskcache.c */,
9D71D7C31237A598008538A1 /* diskcache.h */,
9D71D7C41237A598008538A1 /* dns.c */,
9D71D7C51237A598008538A1 /* dns.h */,
9D71D7C61237A598008538A1 /* event.c */,
9D71D7C71237A598008538A1 /* event.h */,
9D71D7C81237A598008538A1 /* forbidden.c */,
9D71D7C91237A598008538A1 /* forbidden.h */,
9D71D7CA1237A598008538A1 /* fts_compat.c */,
9D71D7CB1237A598008538A1 /* fts_compat.h */,
9D71D7CC1237A598008538A1 /* ftsimport.c */,
9D71D7CD1237A598008538A1 /* ftsimport.h */,
9D71D7CE1237A598008538A1 /* http_parse.c */,
9D71D7CF1237A598008538A1 /* http_parse.h */,
9D71D7D01237A598008538A1 /* http.c */,
9D71D7D11237A598008538A1 /* http.h */,
9D71D7D21237A598008538A1 /* io.c */,
9D71D7D31237A598008538A1 /* io.h */,
9D71D7D41237A598008538A1 /* local.c */,
9D71D7D51237A598008538A1 /* local.h */,
9D71D7D61237A598008538A1 /* log.c */,
9D71D7D71237A598008538A1 /* log.h */,
9D71D7D81237A598008538A1 /* main.c */,
9D71D7D91237A598008538A1 /* md5.c */,
9D71D7DA1237A598008538A1 /* md5.h */,
9D71D7DD1237A598008538A1 /* mingw.c */,
9D71D7DE1237A598008538A1 /* mingw.h */,
9D71D7DF1237A598008538A1 /* object.c */,
9D71D7E01237A598008538A1 /* object.h */,
9D71D7E11237A598008538A1 /* parse_time.c */,
9D71D7E21237A598008538A1 /* parse_time.h */,
9D71D7E31237A598008538A1 /* polipo.h */,
9D71D7E41237A598008538A1 /* server.c */,
9D71D7E51237A598008538A1 /* server.h */,
9D71D7E61237A598008538A1 /* socks.c */,
9D71D7E71237A598008538A1 /* socks.h */,
9D71D7E81237A598008538A1 /* tunnel.c */,
9D71D7E91237A598008538A1 /* tunnel.h */,
9D71D7EA1237A598008538A1 /* util.c */,
9D71D7EB1237A598008538A1 /* util.h */,
);
name = polipo;
path = "polipo-20091115";
sourceTree = "<group>";
};
9DDA4C62124E4AD200BF30F3 /* ViewControllers */ = {
isa = PBXGroup;
children = (
9D63173510FEAC8B0041EE37 /* MainViewController.h */,
9D63173610FEAC8B0041EE37 /* MainViewController.m */,
9DDA4C2B124E460D00BF30F3 /* InfoViewController.h */,
9DDA4C2C124E460D00BF30F3 /* InfoViewController.m */,
);
name = ViewControllers;
sourceTree = "<group>";
};
9DE52B1A110E77920035266A /* Nibs */ = {
isa = PBXGroup;
children = (
02501D641266753500CE5CA9 /* MainViewController.xib */,
02501D661266753A00CE5CA9 /* MainWindow.xib */,
02501D681266753F00CE5CA9 /* InfoViewController.xib */,
);
name = Nibs;
sourceTree = "<group>";
};
9DF66D6412482AF70012D66D /* Additions */ = {
isa = PBXGroup;
children = (
9D79C2BD124E7173008F7F98 /* NSStringAdditions.h */,
9D79C2BE124E7173008F7F98 /* NSStringAdditions.m */,
9DF66D6512482B170012D66D /* UIDeviceAdditions.h */,
9DF66D6612482B170012D66D /* UIDeviceAdditions.m */,
9DF66DAE124830AF0012D66D /* UIViewAdditions.h */,
9DF66DAF124830AF0012D66D /* UIViewAdditions.m */,
02ED14C01266836A00595AA0 /* UIColorAdditions.h */,
02ED14C11266836A00595AA0 /* UIColorAdditions.m */,
);
name = Additions;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
0274FA6212444A5D00173784 /* iProxyMacSetup */ = {
isa = PBXNativeTarget;
buildConfigurationList = 0274FA6912444A5E00173784 /* Build configuration list for PBXNativeTarget "iProxyMacSetup" */;
buildPhases = (
0274FA5F12444A5D00173784 /* Resources */,
0274FA6012444A5D00173784 /* Sources */,
0274FA6112444A5D00173784 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = iProxyMacSetup;
productName = iProxyMacSetup;
productReference = 0274FA6312444A5D00173784 /* iProxyMacSetup.app */;
productType = "com.apple.product-type.application";
};
02E754CC12752A3700D55958 /* srelay (useless, just to test) */ = {
isa = PBXNativeTarget;
buildConfigurationList = 02E754DB12752A7400D55958 /* Build configuration list for PBXNativeTarget "srelay (useless, just to test)" */;
buildPhases = (
02E754CA12752A3700D55958 /* Sources */,
02E754CB12752A3700D55958 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = "srelay (useless, just to test)";
productName = srelay;
productType = "com.apple.product-type.tool";
};
1D6058900D05DD3D006BFB54 /* iProxy */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "iProxy" */;
buildPhases = (
02D5A92D144252FD00C7768C /* Update submodules */,
02D854C1133FF4BD0055475B /* get srelay submodule */,
1D60588D0D05DD3D006BFB54 /* Resources */,
1D60588E0D05DD3D006BFB54 /* Sources */,
1D60588F0D05DD3D006BFB54 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = iProxy;
productName = iProxy;
productReference = 1D6058910D05DD3D006BFB54 /* iProxy.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
29B97313FDCFA39411CA2CEA /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0430;
};
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "iProxy" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
projectDirPath = "";
projectRoot = "";
targets = (
1D6058900D05DD3D006BFB54 /* iProxy */,
0274FA6212444A5D00173784 /* iProxyMacSetup */,
02E754CC12752A3700D55958 /* srelay (useless, just to test) */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
0274FA5F12444A5D00173784 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
02501D61126674DB00CE5CA9 /* InfoPlist.strings in Resources */,
02501D63126674E200CE5CA9 /* MainMenu.xib in Resources */,
02326F25133C66CD00B90EB7 /* PMSPreferences.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
1D60588D0D05DD3D006BFB54 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
02501D651266753500CE5CA9 /* MainViewController.xib in Resources */,
02501D671266753A00CE5CA9 /* MainWindow.xib in Resources */,
9D5B3C5F1103D4E2003C8FCF /* Icon.png in Resources */,
9D2224E51105E6A6003F4E04 /* Entitlements.plist in Resources */,
9D211196110637FB009C3C7C /* iTunesArtwork in Resources */,
9D94CB80110E727700F8C260 /* Default.png in Resources */,
9D06AE961237D37400470CEC /* polipo.config in Resources */,
9D3438131242149300629728 /* silence.wav in Resources */,
9D3ECC621244F6BA002B5F7E /* Icon@2x.png in Resources */,
9D3ECC641244F6C3002B5F7E /* Icon-72.png in Resources */,
9D3ECC661244F6CE002B5F7E /* Icon-Small.png in Resources */,
9D3ECC681244F6D9002B5F7E /* Icon-Small-50.png in Resources */,
9D3ECC6A1244F6E3002B5F7E /* Icon-Small@2x.png in Resources */,
9DF66E8B12483BE30012D66D /* Icon-72-transparent.png in Resources */,
02501D691266753F00CE5CA9 /* InfoViewController.xib in Resources */,
9DDA4C7B124E4E2300BF30F3 /* Default@2x.png in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
02D5A92D144252FD00C7768C /* Update submodules */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Update submodules";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "if [ -d \".git\" ] ; then\n git submodule update --init\nfi\n";
};
02D854C1133FF4BD0055475B /* get srelay submodule */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "get srelay submodule";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "module_path=\"Libraries/srelay\"\nmodule_owner=\"jeromelebel\"\nmodule_name=\"srelay\"\nmodule_branch=\"iproxy\"\n\nfiles=`ls \"${module_path}\"`\nif [ \"${files}\" = \"\" ] ; then\n if [ -d .git ] ; then\n echo \"\"\n else\n cd \"${module_path}\"\n curl -o \"${module_name}.zip\" -L \"https://nodeload.github.com/${module_owner}/${module_name}/zipball/${module_branch}\"\n unzip \"${module_name}.zip\"\n rm \"${module_name}.zip\"\n module_unzip_dir=`ls`\n cd \"${module_unzip_dir}\"\n mv * ..\n cd ..\n rm -fr \"${module_unzip_dir}\"\n fi\nfi\n";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
0274FA6012444A5D00173784 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
0274FA9012444D8F00173784 /* PMSAppDelegate.m in Sources */,
0274FA9212444D9B00173784 /* main.m in Sources */,
0267243E1245646C00A2EACF /* PMSUIController.m in Sources */,
02326F16133B374000B90EB7 /* PMSSSHFileController.m in Sources */,
02326F28133C676B00B90EB7 /* PMSPreferences.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
02E754CA12752A3700D55958 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
02E754D012752A4C00D55958 /* util.c in Sources */,
02E754D112752A4E00D55958 /* socks.c in Sources */,
02E754D212752A4F00D55958 /* relay.c in Sources */,
02E754D312752A5000D55958 /* readconf.c in Sources */,
02E754D412752A5100D55958 /* main.c in Sources */,
02E754D512752A5200D55958 /* init.c in Sources */,
02E754D612752A5400D55958 /* get-bind.c in Sources */,
02E754D712752A5500D55958 /* auth-pwd.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
1D60588E0D05DD3D006BFB54 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
9D63173810FEAC8B0041EE37 /* AppDelegate.m in Sources */,
9D63173910FEAC8B0041EE37 /* MainViewController.m in Sources */,
9D63173C10FEAC980041EE37 /* main.m in Sources */,
9D83D36711B9AF5C00A9922F /* PacFileResponse.m in Sources */,
9D83D36811B9AF5C00A9922F /* HTTPResponseHandler.m in Sources */,
9D83D36911B9AF5C00A9922F /* HTTPServer.m in Sources */,
9DF66D6712482B170012D66D /* UIDeviceAdditions.m in Sources */,
9DF66DB0124830AF0012D66D /* UIViewAdditions.m in Sources */,
9DDA4C2E124E460D00BF30F3 /* InfoViewController.m in Sources */,
9D79C2BF124E7173008F7F98 /* NSStringAdditions.m in Sources */,
02501CC4126667EF00CE5CA9 /* GenericServer.m in Sources */,
02501CCA1266681800CE5CA9 /* SocksProxyServer.m in Sources */,
02ED14C21266836A00595AA0 /* UIColorAdditions.m in Sources */,
02E7545F1274E8C400D55958 /* auth-pwd.c in Sources */,
02E754601274E8C400D55958 /* get-bind.c in Sources */,
02E754611274E8C400D55958 /* init.c in Sources */,
02E754631274E8C400D55958 /* readconf.c in Sources */,
02E754641274E8C400D55958 /* relay.c in Sources */,
02E754651274E8C400D55958 /* socks.c in Sources */,
02E754661274E8C400D55958 /* util.c in Sources */,
02E754911274EC3000D55958 /* main.c in Sources */,
022933A6139881A200108283 /* SocketServer.m in Sources */,
54437C34151B9702009EBC8F /* HTTPProxyServer.m in Sources */,
54437C36151B9753009EBC8F /* atom.c in Sources */,
54437C37151B9757009EBC8F /* auth.c in Sources */,
54437C38151B975A009EBC8F /* chunk.c in Sources */,
54437C39151B975E009EBC8F /* client.c in Sources */,
54437C3A151B9761009EBC8F /* config.c in Sources */,
54437C3B151B9765009EBC8F /* diskcache.c in Sources */,
54437C3C151B9769009EBC8F /* dns.c in Sources */,
54437C3D151B976C009EBC8F /* event.c in Sources */,
54437C3E151B9770009EBC8F /* forbidden.c in Sources */,
54437C3F151B9774009EBC8F /* fts_compat.c in Sources */,
54437C40151B9779009EBC8F /* ftsimport.c in Sources */,
54437C41151B977D009EBC8F /* http_parse.c in Sources */,
54437C42151B9782009EBC8F /* http.c in Sources */,
54437C43151B9785009EBC8F /* io.c in Sources */,
54437C44151B9789009EBC8F /* local.c in Sources */,
54437C45151B978D009EBC8F /* log.c in Sources */,
54437C46151B9790009EBC8F /* main.c in Sources */,
54437C47151B9796009EBC8F /* md5.c in Sources */,
54437C48151B979F009EBC8F /* mingw.c in Sources */,
54437C49151B97A3009EBC8F /* object.c in Sources */,
54437C4A151B97A6009EBC8F /* parse_time.c in Sources */,
54437C4B151B97AA009EBC8F /* server.c in Sources */,
54437C4C151B97AD009EBC8F /* socks.c in Sources */,
54437C4D151B97B1009EBC8F /* tunnel.c in Sources */,
54437C4E151B97B5009EBC8F /* util.c in Sources */,
5487D670151BAC6C006A92F3 /* UIDevice_Extended.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
02501D60126674DB00CE5CA9 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
0274FA8A12444D8300173784 /* English */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
02501D62126674E200CE5CA9 /* MainMenu.xib */ = {
isa = PBXVariantGroup;
children = (
0274FA8B12444D8300173784 /* English */,
);
name = MainMenu.xib;
sourceTree = "<group>";
};
02501D641266753500CE5CA9 /* MainViewController.xib */ = {
isa = PBXVariantGroup;
children = (
9D63174610FEACD30041EE37 /* English */,
);
name = MainViewController.xib;
sourceTree = "<group>";
};
02501D661266753A00CE5CA9 /* MainWindow.xib */ = {
isa = PBXVariantGroup;
children = (
9D63174710FEACD30041EE37 /* English */,
);
name = MainWindow.xib;
sourceTree = "<group>";
};
02501D681266753F00CE5CA9 /* InfoViewController.xib */ = {
isa = PBXVariantGroup;
children = (
9DDA4C30124E466C00BF30F3 /* English */,
);
name = InfoViewController.xib;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
0274FA6612444A5E00173784 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
INFOPLIST_FILE = "iProxyMacSetup/Resources/iProxyMacSetup-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
ONLY_ACTIVE_ARCH = YES;
PRODUCT_NAME = iProxyMacSetup;
SDKROOT = "";
VALID_ARCHS = "i386 x86_64";
};
name = Debug;
};
0274FA6712444A5E00173784 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_MODEL_TUNING = G5;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
INFOPLIST_FILE = "iProxyMacSetup/Resources/iProxyMacSetup-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PRODUCT_NAME = iProxyMacSetup;
SDKROOT = "";
ZERO_LINK = NO;
};
name = Release;
};
0274FA6812444A5E00173784 /* Ad-hoc */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
GCC_MODEL_TUNING = G5;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
INFOPLIST_FILE = "iProxyMacSetup/Resources/iProxyMacSetup-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PRODUCT_NAME = iProxyMacSetup;
SDKROOT = "";
};
name = "Ad-hoc";
};
02E754CD12752A3900D55958 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = Sources/Prefix.pch;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
INSTALL_PATH = /usr/local/bin;
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PRODUCT_NAME = srelay;
SDKROOT = macosx;
VALID_ARCHS = i386;
};
name = Debug;
};
02E754CE12752A3900D55958 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = Sources/Prefix.pch;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
INSTALL_PATH = /usr/local/bin;
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PRODUCT_NAME = srelay;
SDKROOT = macosx;
VALID_ARCHS = i386;
ZERO_LINK = NO;
};
name = Release;
};
02E754CF12752A3900D55958 /* Ad-hoc */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = Sources/Prefix.pch;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
INSTALL_PATH = /usr/local/bin;
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PRODUCT_NAME = srelay;
SDKROOT = macosx;
VALID_ARCHS = i386;
};
name = "Ad-hoc";
};
1D6058940D05DD3E006BFB54 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = iProxy/Sources/Prefix.pch;
GCC_PREPROCESSOR_DEFINITIONS = "";
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
INFOPLIST_FILE = iProxy/Resources/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 3.1.3;
OTHER_LDFLAGS = "";
PRODUCT_NAME = iProxy;
PROVISIONING_PROFILE = "";
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = 1;
};
name = Debug;
};
1D6058950D05DD3E006BFB54 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CODE_SIGN_ENTITLEMENTS = "";
CODE_SIGN_IDENTITY = "iPhone Developer";