aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/octochat/acceptor.ex21
-rw-r--r--lib/octochat/supervisor.ex4
2 files changed, 24 insertions, 1 deletions
diff --git a/lib/octochat/acceptor.ex b/lib/octochat/acceptor.ex
new file mode 100644
index 0000000..66d97fc
--- /dev/null
+++ b/lib/octochat/acceptor.ex
@@ -0,0 +1,21 @@
+defmodule Octochat.Acceptor do
+ @moduledoc """
+ Connection/socket accpetor
+ """
+
+ @listen_port Application.get_env(:octochat, :port) || 9999
+
+ def accept do
+ {:ok, socket} = :gen_tcp.listen(
+ @listen_port,
+ [:binary, packet: :line, active: false, reuseaddr: true])
+ loop_acceptor(socket)
+ end
+
+ defp loop_acceptor(socket) do
+ {:ok, client} = :gen_tcp.accept(socket)
+ :gen_tcp.close(client)
+ loop_acceptor(socket)
+ end
+
+end
diff --git a/lib/octochat/supervisor.ex b/lib/octochat/supervisor.ex
index b26f4de..0c38829 100644
--- a/lib/octochat/supervisor.ex
+++ b/lib/octochat/supervisor.ex
@@ -10,7 +10,9 @@ defmodule Octochat.Supervisor do
end
def init(_) do
- children = []
+ children = [
+ worker(Task, [Octochat.Acceptor, :accept, []])
+ ]
opts = [strategy: :one_for_one]
supervise(children, opts)