File tree Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change 8
8
// https://github.com/robbiehanson/CocoaAsyncSocket
9
9
//
10
10
11
+ #import " GCDAsyncSocket.h"
12
+
13
+ #if TARGET_OS_IPHONE
14
+ #import < CFNetwork/CFNetwork.h>
15
+ #endif
16
+
17
+ #import < arpa/inet.h>
18
+ #import < fcntl.h>
19
+ #import < ifaddrs.h>
20
+ #import < netdb.h>
21
+ #import < netinet/in.h>
22
+ #import < net/if.h>
23
+ #import < sys/socket.h>
24
+ #import < sys/types.h>
25
+ #import < sys/ioctl.h>
26
+ #import < sys/poll.h>
27
+ #import < sys/uio.h>
28
+ #import < unistd.h>
29
+
11
30
#if ! __has_feature(objc_arc)
12
31
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC).
13
32
// For more information see: https://github.com/robbiehanson/CocoaAsyncSocket/wiki/ARC
39
58
40
59
#endif
41
60
42
- #import " GCDAsyncSocket.h"
43
-
44
- #if TARGET_OS_IPHONE
45
- #import < CFNetwork/CFNetwork.h>
46
- #endif
47
-
48
- #import < arpa/inet.h>
49
- #import < fcntl.h>
50
- #import < ifaddrs.h>
51
- #import < netdb.h>
52
- #import < netinet/in.h>
53
- #import < net/if.h>
54
- #import < sys/socket.h>
55
- #import < sys/types.h>
56
- #import < sys/ioctl.h>
57
- #import < sys/poll.h>
58
- #import < sys/uio.h>
59
- #import < unistd.h>
60
-
61
61
62
62
#if 0
63
63
You can’t perform that action at this time.
0 commit comments