Skip to content

Commit

Permalink
Fixed issue #2 but CCSO is now handled the same way that telnet is as…
Browse files Browse the repository at this point in the history
… CCSO would required its very own client
  • Loading branch information
Jan Kammerath committed Nov 26, 2019
1 parent 9e9c853 commit d5187f2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Binary file modified build/Gophie.jar
Binary file not shown.
10 changes: 10 additions & 0 deletions src/org/gophie/ui/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,16 @@ public void searchRequested(String text) {
}
});
break;
case CCSCO_NAMESERVER:
/* CCSO is not part of the Gopher protocol, but its very own
protocol and apart from floodgap.com's CCSO server there
is hardly any server to test interaction with. The CCSO
protocol can also be considered quite simple. A CCSO client
would be a software of its own, but sources are even fewer
than Gopher servers out there. Hence, Gophie allows the
user to use CCSO servers throgh their Telnet client. */
this.openTelnetSession(item.getHostName(), item.getPortNumber());
break;
case TELNET:
/* handle telnet session requests */
this.openTelnetSession(item.getHostName(), item.getPortNumber());
Expand Down

0 comments on commit d5187f2

Please sign in to comment.