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: 10 months 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 10 years ago)
- Default Branch: master
- Last Pushed: 2017-10-03T10:35:12.000Z (over 8 years ago)
- Last Synced: 2025-03-28T21:37:51.477Z (10 months 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)
[](https://travis-ci.org/moteus/lua-lluv-esl)
[](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)
```