Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/moteus/lua-lluv-esl
- Owner: moteus
- License: mit
- Created: 2015-06-11T08:39:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-03T10:35:12.000Z (about 7 years ago)
- Last Synced: 2024-10-05T06:39:48.328Z (about 1 month ago)
- Topics: async, esl, freeswitch, lua
- Language: Lua
- Homepage:
- Size: 70.3 KB
- Stars: 5
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```