Packages

A simple LFE TCP client connection manager

Current section

Files

Jump to
tcp_client src tcp-client-app.lfe
Raw

src/tcp-client-app.lfe

(defmodule tcp-client-app
(behaviour application)
(export
(start 2)
(stop 1)))
(defun SUP () 'tcp-client-sup)
;;;===================================================================
;;; Application callbacks
;;;===================================================================
(defun start (_type _args)
(apply (SUP) 'start_link '()))
(defun stop (_state)
'ok)