AndroidAsync
AndroidAsync copied to clipboard
Asynchronous socket, http(s) (client+server) and websocket library for android. Based on nio, not threads.
It's currently not possible to have the `AsyncHttpServer` bind on specified interfaces, it always binds on all interfaces (`0.0.0.0`). Looking at the code https://github.com/koush/AndroidAsync/blob/0e150f50d2a9bb068b18992040d6062dc2b88167/AndroidAsync/src/com/koushikdutta/async/http/server/AsyncHttpServer.java#L228-L229 `null` is passed as the `host`...
In order to enable client authentication, wrapper.engine.setNeedClientAuth(true) needs to be called before it begins handshake. When this is enabled, the rest is done through TrustManager & KeyManager as usual.
how to check remote server disconnect?
在小米手机上开启热点,使用手机流量.udp发送信息,服务端接收不了.
AsyncServer.getDefault() does the generated socket break automatically reconnect? How do I reconnect if I don't support it
Hello! Not sure what's going on but with AndroidX, methods like ByteBufferList are not being found or the library it's not taking in consideration.
Hi, I'm using this plugin with Unity3D. I built the .aar out of Android Studio with no problems but when I try to build a .apk out of Unity I...
Hello, I am getting 'java.util.concurrent.TimeoutException' while I'm trying to get websocket via API ~ **AsyncHttpClient.getDefaultInstance().websocket(url.toString(), (String)null, new WebSocketConnectCallback() {}** I'm facing this problem consistently in the following scenario.. **1.** **Create...
Hello, I want to develop an webserver which can handle cgi request, like https://192.168.1.1:8080/setup.cgi?SSID=123&psw=12345678 Does AndroidAsync support CGI? Thanks Rory