This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # $Id$ | |
| # | |
| # OpenSIPS residential configuration script | |
| # by OpenSIPS Solutions <team@opensips-solutions.com> | |
| # | |
| # This script was generated via "make menuconfig", from | |
| # the "Residential" scenario. | |
| # You can enable / disable more features / functionalities by | |
| # re-generating the scenario with different options.# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Hi all , | |
| I am Venkatesh Macha, Graduated in Telecommunication Engineering i am very much Interested in Opensource | |
| Technologies and Networking. Presently Working as VOIP Engineer and WebRTC Dev at Hyderabad, Andra pradesh, India. | |
| Venkatesh Macha, | |
| http://www.sillycodes.com | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!KAMAILIO | |
| # | |
| # Kamailio (OpenSER) SIP Server v4.1 - default configuration script | |
| # - web: http://www.kamailio.org | |
| # - git: http://sip-router.org | |
| # | |
| # Direct your questions about this file to: <sr-users@lists.sip-router.org> | |
| # | |
| # Refer to the Core CookBook at http://www.kamailio.org/wiki/ | |
| # for an explanation of possible statements, functions and parameters. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #http://linux.autostatic.com/installing-webrtc2sip-on-ubuntu-1204#install_packages | |
| sudo su | |
| # install | |
| apt-get update | |
| apt-get install -y python-software-properties | |
| add-apt-repository ppa:autostatic/doubango |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!KAMAILIO | |
| # | |
| # Simple/sample kamailio.cfg for running a proxy/registrar with TLS and | |
| # WebSockets support. | |
| ###!substdef "!DBURL!sqlite:///etc/kamailio/db.sqlite!g" | |
| #!substdef "!DBURL!mysql://kamailio:kamailiorw@localhost/kamailio!g" | |
| #!substdef "!MY_IP_ADDR!10.0.11.175!g" | |
| #!substdef "!MY_DOMAIN!ubukam.lan!g" | |
| #!substdef "!MY_WS_PORT!5065!g" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Head> | |
| <Title> Navaismo's ElastixCC-WebRTC </ title> | |
| <! - SIPMl5 APIs for WebRTC calls -> | |
| <Script src = "js / SIPml-api.js" > </ script> | |
| <Link href = "css / bootstrap.min.css" media = "screen" rel = "stylesheet" > </ link> | |
| </ Head> | |
| <Script> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h1>WebRTC</h1> | |
| <script> | |
| // This is only needed for browser testing | |
| window.RTCPeerConnection = window.mozRTCPeerConnection || window.webkitRTCPeerConnection; | |
| window.RTCSessionDescription = window.mozRTCSessionDescription || window.RTCSessionDescription; | |
| window.RTCIceCandidate = window.mozRTCIceCandidate || window.RTCIceCandidate; | |
| navigator.getUserMedia = navigator.mozGetUserMedia || navigator.webkitGetUserMedia; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<stdio.h> | |
| int main() | |
| { | |
| printf("Hello World \n"); | |
| return 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<stdio.h> | |
| int main() | |
| { | |
| int i,j,k,n; | |
| printf("Enter Number : "); | |
| scanf("%d",&n); | |
| for(i=1;i<=n;i++) | |
| { | |
| for(j=1;j<=i;j++) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| C Program to print mirrored right angle triangle | |
| Author : Venkatesh Macha. | |
| Visit www.SillyCodes.com for more C programming tutorials. | |
| */ | |
| #include<stdio.h> | |
| int main() | |
| { | |
| int i,j,k,n; |
OlderNewer