aboutsummaryrefslogtreecommitdiffstats
path: root/AndroidAsync
Commit message (Collapse)AuthorAgeFilesLines
...
| * | fix https://github.com/koush/AndroidAsync/issues/244Koushik Dutta2014-09-171-2/+12
| |/
| * expose initial http request to WebSocket handlersFlorian Vallee2014-09-122-3/+4
| | | | | | | | | | | | replace headers object with the complete AsyncHttpServerRequest in callback see #232
| * Revert "Added protected API for WebSocket creation"Florian Vallee2014-09-121-5/+1
| | | | | | | | This reverts commit 4ee0ae0e6206f90a07f3a2269abc6c655a0289df.
| * AsyncServer: *actually* use the resolved address.Koushik Dutta2014-09-101-1/+1
| |
| * AsyncServer: Catch all selector exceptions.Koushik Dutta2014-09-101-10/+6
| | | | | | | | | | | | | | Various firmwares seem to throw all sorts of insane exceptions. Conflicts: AndroidAsync/src/com/koushikdutta/async/AsyncServer.java
* | underpKoushik Dutta2014-10-272-3/+0
| |
* | fix https://github.com/koush/AndroidAsync/issues/244Koushik Dutta2014-09-171-2/+12
| |
* | AsyncServer: *actually* use the resolved address.Koushik Dutta2014-09-101-1/+1
| |
* | AsyncServer: Catch all selector exceptions.Koushik Dutta2014-09-101-14/+6
| | | | | | | | Various firmwares seem to throw all sorts of insane exceptions.
* | Merge branch 'master' into spdyKoushik Dutta2014-09-091-1/+5
|\|
| * watch for selector exceptions.Koushik Dutta2014-09-091-0/+4
| |
| * Added protected API for WebSocket creationpaulpdaniels2014-09-081-1/+5
| |
| * imlKoushik Dutta2014-09-071-0/+3
| |
| * fix cherry-pickKoushik Dutta2014-08-261-1/+0
| |
| * 138Koushik Dutta2014-08-261-2/+2
| |
| * Fix up leaky alloctions.Koushik Dutta2014-08-265-11/+13
| |
| * imlKoushik Dutta2014-08-161-1/+19
| |
* | watch for selector exceptions.Koushik Dutta2014-09-091-0/+4
| |
* | AsyncHttpClient:Koushik Dutta2014-09-073-17/+19
| | | | | | | | Make SpdyMiddleware the default SSL Socket provider. Spdy disabled by default.
* | AsyncHttpServer: fix some bugs around end invocation behaviorKoushik Dutta2014-08-274-9/+45
| |
* | Fix up leaky alloctions.Koushik Dutta2014-08-265-11/+13
| |
* | merge websocket fixKoushik Dutta2014-08-161-1/+1
| |
* | Merge branch 'master' into spdyKoushik Dutta2014-08-163-6/+36
|\|
| * DataEmitter.charset fixes:Koushik Dutta2014-08-162-2/+10
| | | | | | | | | | FilteredDataEmitter.charset now calls into underlying DataEmitter. UrlEncodedFormBody encodes as utf8.
| * Merge pull request #221 from zbsz/pingKoushik Dutta2014-08-093-6/+36
| |\ | | | | | | Add api for sending ping and receiving pong on WebSocket
| | * Add api for sending ping and receiving pong on WebSocketZbigniew Szymański2014-08-083-6/+36
| | |
| * | fix gzip input filterKoushik Dutta2014-08-071-0/+9
| | |
| * | watch for exceptions when setting the proxyKoushik Dutta2014-08-071-1/+8
| |/
* | DataEmitter.charset fixes:Koushik Dutta2014-08-162-2/+10
| | | | | | | | | | FilteredDataEmitter.charset now calls into underlying DataEmitter. UrlEncodedFormBody encodes as utf8.
* | AsyncHttpServer: watch for socket closeKoushik Dutta2014-08-161-0/+1
| |
* | use thread nameKoushik Dutta2014-08-081-1/+1
| |
* | proxy helpKoushik Dutta2014-08-076-13/+56
| |
* | fix gzip input filterKoushik Dutta2014-08-071-0/+9
| |
* | name future threadsKoushik Dutta2014-08-071-0/+4
| |
* | move NullDataCallback.Koushik Dutta2014-08-0615-44/+60
| | | | | | | | | | change how socket ownership works. fix possible bugs around that. throw assertion error if connect callback is invoked twice. Switch to future?
* | Enable Content-Encoding for spdy.Koushik Dutta2014-08-043-15/+40
| | | | | | | | Disable using SPDY if sending a request body.
* | missing fileKoushik Dutta2014-08-031-1/+4
| |
* | Merge branch 'master' into spdyKoushik Dutta2014-08-032-8/+38
|\| | | | | | | | | Conflicts: AndroidAsync/src/com/koushikdutta/async/http/AsyncHttpResponseImpl.java
| * Some HTTP servers are sending only newline instead of CRLF.Koushik Dutta2014-08-031-1/+4
| |
| * Merge pull request #215 from robUx4/missing_md5_workaroundKoushik Dutta2014-07-291-8/+35
| |\ | | | | | | use another hash function if MD5 is not available
| | * use another hash function if MD5 is not availableSteve Lhomme2014-07-281-8/+35
| | |
| * | Fix a rare NPE crash in Android 2.xSteve Lhomme2014-07-281-0/+3
| |/ | | | | | | See http://crashes.to/s/5ee30776a5d
* | tolerate no response messageKoushik Dutta2014-08-031-2/+2
| |
* | watch for exceptions when setting the proxyKoushik Dutta2014-07-291-1/+8
| |
* | remove defaultConfig stuff.Koushik Dutta2014-07-291-7/+7
| |
* | remove conscrypt dependency. not necessary with alpn notKoushik Dutta2014-07-284-19/+23
| | | | | | | | exhibiting the same handshake bug as npn.
* | fix all the tests.Koushik Dutta2014-07-288-296/+19
| |
* | spdy posting works.Koushik Dutta2014-07-2815-151/+236
| |
* | Restructure into single package, change visibility to package only.Koushik Dutta2014-07-2821-53/+1082
| |
* | more okhttp reshuffling and purgingKoushik Dutta2014-07-283-27/+1
| |