| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Clean up BIO name | Steven Fackler | 2016-03-17 | 1 | -4/+1 |
| | | |||||
| * | Simplify panic safety logic for new nightly | Steven Fackler | 2016-03-17 | 1 | -44/+5 |
| | | |||||
| * | Add stream panic propagation behind a nightly feature gate | Steven Fackler | 2016-01-11 | 1 | -10/+88 |
| | | |||||
| * | Rustfmt | Steven Fackler | 2015-12-18 | 1 | -1/+1 |
| | | |||||
| * | Work around the worst of clone bogusness | Steven Fackler | 2015-12-18 | 1 | -29/+9 |
| | | | | | | | | | | | SslStream::{clone,try_clone} are inherently broken since the Ssl object shared by both streams is only going to be talking to one stream. Stuff like hyper depends on try_clone, so we'll leave it here for now but minimize the brokenness to "no worse than what it used to be like". They'll be removed in 0.8. cc #325 | ||||
| * | Fix nonblocking behavior | Steven Fackler | 2015-12-17 | 1 | -2/+9 |
| | | | | | | | | | A new nonblocking socket may not have finished connecting yet, so reads and writes can return ENOTCONNECTED which we should reinterpret into a WantRead or WantWrite Closes #323 | ||||
| * | IT LIVES | Steven Fackler | 2015-12-09 | 1 | -14/+35 |
| | | |||||
| * | Custom BIO infrastructure | Steven Fackler | 2015-12-08 | 1 | -0/+141 |