uncommitted minor changes from last week

This commit is contained in:
Joseph Henry
2016-06-27 10:07:51 -07:00
parent 58dddb9d2f
commit 51cef4539f
2 changed files with 6 additions and 0 deletions

View File

@@ -22,9 +22,15 @@ public class MainActivity extends AppCompatActivity {
}
}).start();
// Set up example proxy connection to SDK proxy server
Log.d("ZTSDK-InJavaland", "Setting up connection to SDK proxy server");
Socket s = new Socket();
SocketAddress proxyAddr = new InetSocketAddress("0.0.0.0", 1337);
Proxy proxy = new Proxy(Proxy.Type.SOCKS, proxyAddr);
// proxy.
}
}