Bug #1019
Smuxi not detecting being GHOSTed by irc server
| Status: | New | Start: | 01/29/2015 | |
| Priority: | Normal | Due date: | ||
| Assigned to: | % Done: | 0% |
||
| Category: | Engine IRC | |||
| Target version: | 1.0.1 | |||
| Complexity: | Medium |
Found in Version: | 0.12.0.0 |
|
| Votes: | 0 |
Description
Being GHOSTed by the irc server via NickServ, smuxi does not detect this but keeps waiting for a ping reply before reconnecting to the server. Also the ghost message is not displayed in any tab, the first displayed message is displayed when the lag-timer reaches ~90 seconds and starts a reconnect; displayed as this in every tab from the server:
Do 14:08 -!- Disconnected from freenode
comment from meebey: at ERROR it should close the socket, but it doesnt seem to
History
Updated by Mirco Bauer 3939 days ago
- Category set to Engine IRC
- Assigned to set to Mirco Bauer
- Target version set to 1.0
- Complexity set to Medium
Updated by Mirco Bauer 3853 days ago
When I was checking the code, how SmartIrc4net handles server signaled errors (ERROR message), this is what I have found:
switch (command) {
case "ERROR":
// FIXME: handle server errors differently than connection errors!
//IsConnectionError = true;
break;
:-D