├── .ex_doc.config ├── .gitignore ├── LICENSE ├── README.md ├── c_src ├── Makefile └── inert_drv.c ├── examples ├── conn.erl └── echo.erl ├── rebar.config ├── rebar.lock ├── src ├── inert.app.src ├── inert.erl ├── inert_drv.erl └── prim_inert.erl └── test └── inert_SUITE.erl /.ex_doc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/.ex_doc.config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/README.md -------------------------------------------------------------------------------- /c_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/c_src/Makefile -------------------------------------------------------------------------------- /c_src/inert_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/c_src/inert_drv.c -------------------------------------------------------------------------------- /examples/conn.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/examples/conn.erl -------------------------------------------------------------------------------- /examples/echo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/examples/echo.erl -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- 1 | []. 2 | -------------------------------------------------------------------------------- /src/inert.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/src/inert.app.src -------------------------------------------------------------------------------- /src/inert.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/src/inert.erl -------------------------------------------------------------------------------- /src/inert_drv.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/src/inert_drv.erl -------------------------------------------------------------------------------- /src/prim_inert.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/src/prim_inert.erl -------------------------------------------------------------------------------- /test/inert_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msantos/inert/HEAD/test/inert_SUITE.erl --------------------------------------------------------------------------------