Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/moteus/lua-lluv-esl

FreeSWITCH ESL implementation for lluv library
https://github.com/moteus/lua-lluv-esl

async esl freeswitch lua

Last synced: 27 days ago
JSON representation

FreeSWITCH ESL implementation for lluv library

Awesome Lists containing this project

README

        

# lua-lluv-esl

[![License](http://img.shields.io/badge/License-MIT-brightgreen.svg)](LICENSE)
[![Build Status](https://travis-ci.org/moteus/lua-lluv-esl.svg?branch=master)](https://travis-ci.org/moteus/lua-lluv-esl)
[![Coverage Status](https://coveralls.io/repos/github/moteus/lua-lluv-esl/badge.svg?branch=master)](https://coveralls.io/github/moteus/lua-lluv-esl?branch=master)

## FreeSWITCH ESL implementation for lluv library

```Lua
local cnn = esl.Connection()

cnn:open(function(self)
self:bgapi("status", function(self, err, reply)
print(err or reply:getBody())
self:close()
end)
end)
```