File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -43,9 +43,6 @@ impl Response {
43
43
debug ! ( "version={:?}, status={:?}" , head. version, status) ;
44
44
debug ! ( "headers={:?}" , headers) ;
45
45
46
- if !http:: should_keep_alive ( head. version , & headers) {
47
- try!( stream. get_mut ( ) . close ( Shutdown :: Write ) ) ;
48
- }
49
46
50
47
let body = if headers. has :: < TransferEncoding > ( ) {
51
48
match headers. get :: < TransferEncoding > ( ) {
@@ -97,7 +94,15 @@ impl Response {
97
94
impl Read for Response {
98
95
#[ inline]
99
96
fn read ( & mut self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
100
- self . body . read ( buf)
97
+ let count = try!( self . body . read ( buf) ) ;
98
+
99
+ if count == 0 {
100
+ if !http:: should_keep_alive ( self . version , & self . headers ) {
101
+ try!( self . body . get_mut ( ) . get_mut ( ) . close ( Shutdown :: Both ) ) ;
102
+ }
103
+ }
104
+
105
+ Ok ( count)
101
106
}
102
107
}
103
108
You can’t perform that action at this time.
0 commit comments