├── .gitignore ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── doc ├── README.md ├── barrel.md ├── barrel_acceptor.md ├── barrel_app.md ├── barrel_connections.md ├── barrel_deps.md ├── barrel_listener.md ├── barrel_server.md ├── barrel_ssl.md ├── barrel_sup.md ├── barrel_tcp.md ├── barrel_util.md └── overview.edoc ├── example ├── echo │ ├── README.md │ ├── rebar.config │ ├── src │ │ ├── echo.app.src │ │ ├── echo.erl │ │ ├── echo_app.erl │ │ ├── echo_handler.erl │ │ └── echo_sup.erl │ └── start.sh └── echo_p │ ├── README.md │ ├── rebar.config │ ├── src │ ├── echo.app.src │ ├── echo.erl │ ├── echo_app.erl │ ├── echo_handler.erl │ └── echo_sup.erl │ └── start.sh ├── rebar ├── rebar.config ├── rebar_dev.config └── src ├── barrel.app.src ├── barrel.erl ├── barrel_acceptor.erl ├── barrel_app.erl ├── barrel_connections.erl ├── barrel_deps.erl ├── barrel_listener.erl ├── barrel_server.erl ├── barrel_ssl.erl ├── barrel_sup.erl ├── barrel_tcp.erl └── barrel_util.erl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/README.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/barrel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/barrel.md -------------------------------------------------------------------------------- /doc/barrel_acceptor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/barrel_acceptor.md -------------------------------------------------------------------------------- /doc/barrel_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/barrel_app.md -------------------------------------------------------------------------------- /doc/barrel_connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/barrel_connections.md -------------------------------------------------------------------------------- /doc/barrel_deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/barrel_deps.md -------------------------------------------------------------------------------- /doc/barrel_listener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/barrel_listener.md -------------------------------------------------------------------------------- /doc/barrel_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/barrel_server.md -------------------------------------------------------------------------------- /doc/barrel_ssl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/barrel_ssl.md -------------------------------------------------------------------------------- /doc/barrel_sup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/barrel_sup.md -------------------------------------------------------------------------------- /doc/barrel_tcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/barrel_tcp.md -------------------------------------------------------------------------------- /doc/barrel_util.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/barrel_util.md -------------------------------------------------------------------------------- /doc/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/doc/overview.edoc -------------------------------------------------------------------------------- /example/echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo/README.md -------------------------------------------------------------------------------- /example/echo/rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo/rebar.config -------------------------------------------------------------------------------- /example/echo/src/echo.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo/src/echo.app.src -------------------------------------------------------------------------------- /example/echo/src/echo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo/src/echo.erl -------------------------------------------------------------------------------- /example/echo/src/echo_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo/src/echo_app.erl -------------------------------------------------------------------------------- /example/echo/src/echo_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo/src/echo_handler.erl -------------------------------------------------------------------------------- /example/echo/src/echo_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo/src/echo_sup.erl -------------------------------------------------------------------------------- /example/echo/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo/start.sh -------------------------------------------------------------------------------- /example/echo_p/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo_p/README.md -------------------------------------------------------------------------------- /example/echo_p/rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo_p/rebar.config -------------------------------------------------------------------------------- /example/echo_p/src/echo.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo_p/src/echo.app.src -------------------------------------------------------------------------------- /example/echo_p/src/echo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo_p/src/echo.erl -------------------------------------------------------------------------------- /example/echo_p/src/echo_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo_p/src/echo_app.erl -------------------------------------------------------------------------------- /example/echo_p/src/echo_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo_p/src/echo_handler.erl -------------------------------------------------------------------------------- /example/echo_p/src/echo_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo_p/src/echo_sup.erl -------------------------------------------------------------------------------- /example/echo_p/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/example/echo_p/start.sh -------------------------------------------------------------------------------- /rebar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/rebar -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar_dev.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/rebar_dev.config -------------------------------------------------------------------------------- /src/barrel.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel.app.src -------------------------------------------------------------------------------- /src/barrel.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel.erl -------------------------------------------------------------------------------- /src/barrel_acceptor.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel_acceptor.erl -------------------------------------------------------------------------------- /src/barrel_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel_app.erl -------------------------------------------------------------------------------- /src/barrel_connections.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel_connections.erl -------------------------------------------------------------------------------- /src/barrel_deps.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel_deps.erl -------------------------------------------------------------------------------- /src/barrel_listener.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel_listener.erl -------------------------------------------------------------------------------- /src/barrel_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel_server.erl -------------------------------------------------------------------------------- /src/barrel_ssl.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel_ssl.erl -------------------------------------------------------------------------------- /src/barrel_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel_sup.erl -------------------------------------------------------------------------------- /src/barrel_tcp.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel_tcp.erl -------------------------------------------------------------------------------- /src/barrel_util.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc-attic/barrel_tcp/HEAD/src/barrel_util.erl --------------------------------------------------------------------------------