Book Image

FreeSWITCH 1.8

By : Anthony Minessale II, Giovanni Maruzzelli
Book Image

FreeSWITCH 1.8

By: Anthony Minessale II, Giovanni Maruzzelli

Overview of this book

FreeSWITCH is an open source telephony platform designed to facilitate the creation of voice and chat-driven products, scaling from a soft-phone to a PBX and even up to an enterprise-class soft-switch. This book introduces FreeSWITCH to IT professionals who want to build their own telephony system. This book starts with a brief introduction to the latest version of FreeSWITCH. We then move on to the fundamentals and the new features added in version 1.6, showing you how to set up a basic system so you can make and receive phone calls, make calls between extensions, and utilize basic PBX functionality. Once you have a basic system in place, we’ll show you how to add more and more functionalities to it. You’ll learn to deploy the features on the system using unique techniques and tips to make it work better. Also, there are changes in the security-related components, which will affect the content in the book, so we will make that intact with the latest version. There are new support libraries introduced, such as SQLite, OpenSS, and more, which will make FreeSWITCH more efficient and add more functions to it. We’ll cover these in the new edition to make it more appealing for you.
Table of Contents (23 chapters)
Title Page
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Basic Lua syntax


Lua has a simple syntax that is easy to both learn and read. The following is a simple script:

-- This is a sample Lua script 
-- Single line comments begin with two dashes 
--[[ 
  This is a multi-line comment. 
  Everything between the double square brackets 
    is part of the comment block. 
]] 
-- Lua is loosely typed 
var = 1         -- This is a comment 
var ="alpha"   -- Another comment 
var ="A1"      -- You get the idea... 
-- Lua makes extensive use of tables 
-- Tables are a hybrid of arrays and associative arrays 
val1 = 1 
val2 = 2 
my_table = { 
     key1 = val1, 
     key2 = val2, 
    "index 1", 
    "index 2" 
} 
--[[ 
  When the Lua script is called from FreeSWITCH 
  you have a few magic objects. The main one is 
  the 'freeswitch' object: 
  freeswitch.consoleLog("INFO","This is a log line\n") 
   
  If script is executed from dialplan (eg: there is  
  an incoming call to manage) you have the  'session'  
  object which lets you manipulate the call:...