aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-10-30 22:54:39 -0600
committerkballou <kballou@devnulllabs.io>2016-10-30 23:07:59 -0600
commit35325ce024b36672aca33f08bf61adf3570445bf (patch)
tree01cfc3f240faf82ca0f72b137fc57365f0df51e3
parent10275f7bbf7c79214a52e837294a8c16fdfaa549 (diff)
downloadoctochat-35325ce024b36672aca33f08bf61adf3570445bf.tar.gz
octochat-35325ce024b36672aca33f08bf61adf3570445bf.tar.xz
Add connection acceptorv0.1.0
This adds a basic connection acceptor that immediately closes accepted connections and beings to flesh out the supervision tree.
-rw-r--r--config/config.exs3
-rw-r--r--lib/octochat/acceptor.ex21
-rw-r--r--lib/octochat/supervisor.ex4
3 files changed, 27 insertions, 1 deletions
diff --git a/config/config.exs b/config/config.exs
index d2d855e..52b37d2 100644
--- a/config/config.exs
+++ b/config/config.exs
@@ -1 +1,4 @@
use Mix.Config
+
+config :octochat,
+ port: 9999
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)