KerwinMa / ti-voip

Voice over IP Module for Titanium Mobile

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Voice over IP Module for Titanium Mobile

Documents

Sorry, no module documentation is available right now. Please see 'examples/app.js'.

Example

app.js

var voip_module = require('me.takus.ti.voip');

var send_ip   = '127.0.0.1';
var send_port = '12345';
var recv_port = '54321'; 

var window = Ti.UI.createWindow({
	backgroundColor:'white'
});

var voip = voip_module.create();

var button1 = Titanium.UI.createButton({
    title: 'start',
    top: 100,
    height: 20,
    width: 120
});
button1.addEventListener('click', function(e) { 
    Titanium.API.info("You clicked the start button");
    voip.start(send_ip, send_port, recv_port);
});
window.add(button1);

var button2 = Titanium.UI.createButton({
    title: 'stop',
    top: 150,
    height: 20,
    width: 120
});
button2.addEventListener('click', function(e) { 
    Titanium.API.info("You clicked the stop button");
    voip.stop();
});
window.add(button2);

window.open();

License

2012 Takumi SAKAMOTO takumi.saka@gmail.com All rights reserved.

License: Apache License 2.0

About

Voice over IP Module for Titanium Mobile

License:Other


Languages

Language:Objective-C 94.5%Language:Python 5.0%Language:JavaScript 0.6%