File tree 3 files changed +4
-7
lines changed 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 15
15
- ` /ignore ` command added to ignore ` join/quit ` messages in channels.
16
16
- New server config field ` pass ` added for connecting to password-protected
17
17
servers (e.g. znc).
18
+ - Fixed a bug that caused tiny to fail to connect via TLS on some systems
19
+ (#64 ).
18
20
19
21
# 2017/11/12: 0.3.0
20
22
Original file line number Diff line number Diff line change @@ -124,6 +124,6 @@ impl<'poll> Write for TcpStream<'poll> {
124
124
}
125
125
126
126
fn flush ( & mut self ) -> io:: Result < ( ) > {
127
- self . write_ready ( )
127
+ Ok ( ( ) )
128
128
}
129
129
}
Original file line number Diff line number Diff line change @@ -132,11 +132,6 @@ impl<'poll> Write for TlsStream<'poll> {
132
132
}
133
133
134
134
fn flush ( & mut self ) -> io:: Result < ( ) > {
135
- match * self {
136
- TlsStream :: Handshake { .. } | TlsStream :: Broken =>
137
- Ok ( ( ) ) ,
138
- TlsStream :: Connected { ref mut stream } =>
139
- stream. flush ( ) ,
140
- }
135
+ Ok ( ( ) )
141
136
}
142
137
}
You can’t perform that action at this time.
0 commit comments