gitextract_ch51wtsd/ ├── .gitignore ├── GCDAsyncSocket/ │ ├── AFNetworking/ │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CocoaAsyncSocket/ │ │ ├── AsyncSocket.h │ │ ├── AsyncSocket.m │ │ ├── AsyncUdpSocket.h │ │ ├── AsyncUdpSocket.m │ │ ├── GCDAsyncSocket.h │ │ ├── GCDAsyncSocket.m │ │ ├── GCDAsyncUdpSocket.h │ │ └── GCDAsyncUdpSocket.m │ ├── Info.plist │ ├── NetWorkManager.h │ ├── NetWorkManager.m │ ├── ProtobufBuffer/ │ │ ├── AbstractMessage.h │ │ ├── AbstractMessage.m │ │ ├── AbstractMessageBuilder.h │ │ ├── AbstractMessageBuilder.m │ │ ├── Bootstrap.h │ │ ├── CodedInputStream.h │ │ ├── CodedInputStream.m │ │ ├── CodedOutputStream.h │ │ ├── CodedOutputStream.m │ │ ├── ConcreteExtensionField.h │ │ ├── ConcreteExtensionField.m │ │ ├── Descriptor.pb.h │ │ ├── Descriptor.pb.m │ │ ├── ExtendableMessage.h │ │ ├── ExtendableMessage.m │ │ ├── ExtendableMessageBuilder.h │ │ ├── ExtendableMessageBuilder.m │ │ ├── ExtensionField.h │ │ ├── ExtensionRegistry.h │ │ ├── ExtensionRegistry.m │ │ ├── Field.h │ │ ├── Field.m │ │ ├── ForwardDeclarations.h │ │ ├── GeneratedMessage.h │ │ ├── GeneratedMessage.m │ │ ├── GeneratedMessageBuilder.h │ │ ├── GeneratedMessageBuilder.m │ │ ├── Message.h │ │ ├── MessageBuilder.h │ │ ├── MutableExtensionRegistry.h │ │ ├── MutableExtensionRegistry.m │ │ ├── MutableField.h │ │ ├── MutableField.m │ │ ├── ObjectivecDescriptor.pb.h │ │ ├── ObjectivecDescriptor.pb.m │ │ ├── PBArray.h │ │ ├── PBArray.m │ │ ├── ProtocolBuffers.h │ │ ├── RingBuffer.h │ │ ├── RingBuffer.m │ │ ├── TextFormat.h │ │ ├── TextFormat.m │ │ ├── UnknownFieldSet.h │ │ ├── UnknownFieldSet.m │ │ ├── UnknownFieldSetBuilder.h │ │ ├── UnknownFieldSetBuilder.m │ │ ├── Utilities.h │ │ ├── Utilities.m │ │ ├── WireFormat.h │ │ └── WireFormat.m │ ├── ServerURLModel.h │ ├── ServerURLModel.m │ ├── SocketManager.h │ ├── SocketManager.m │ ├── SpeedDectectManager.h │ ├── SpeedDectectManager.m │ ├── TCPAPI.h │ ├── TCPAPI.m │ ├── ViewController.h │ ├── ViewController.m │ ├── main.m │ └── src/ │ ├── Auth.pb.h │ ├── Auth.pb.m │ ├── Common.pb.h │ ├── Common.pb.m │ ├── Index.pb.h │ ├── Index.pb.m │ ├── Investment.pb.h │ ├── Investment.pb.m │ ├── Report.pb.h │ ├── Report.pb.m │ ├── Warning.pb.h │ └── Warning.pb.m ├── GCDAsyncSocket.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata └── README.md