summaryrefslogtreecommitdiff
path: root/lib/chessh/ssh/cli.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chessh/ssh/cli.ex')
-rw-r--r--lib/chessh/ssh/cli.ex26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/chessh/ssh/cli.ex b/lib/chessh/ssh/cli.ex
deleted file mode 100644
index 71d789b..0000000
--- a/lib/chessh/ssh/cli.ex
+++ /dev/null
@@ -1,26 +0,0 @@
-defmodule Chessh.SSH.Cli do
- @behaviour :ssh_server_channel
-
- def init(_args) do
- {:ok, %{}}
- end
-
- def handle_msg(_message, state) do
- {:ok, state}
- end
-
- def handle_ssh_msg(
- {:ssh_cm, _connection_handler, {:exit_signal, channel_id, _signal, _err, _lang}},
- state
- ) do
- {:stop, channel_id, state}
- end
-
- def handle_ssh_msg(_message, state) do
- {:ok, state}
- end
-
- def terminate(_reason, _state) do
- :ok
- end
-end