This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // MIT licensed. | |
| use std::net::TcpStream; | |
| use std::io::{Read, Write}; | |
| use std::sync::mpsc::channel; | |
| use std::thread; | |
| fn main() { | |
| let mut stream = TcpStream::connect("127.0.0.1:7496").expect("connect"); | |
| stream.set_nodelay(true).expect("nodelay"); // Because we're wannabe HFT traders. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <key>PayloadDescription</key> | |
| <string>Global HTTP Proxy</string> | |
| <key>PayloadDisplayName</key> |
OlderNewer