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 | |
# grab general build tools | |
sudo apt-get install git flex bison libtool autoconf make gcc g++ gdb | |
# install specific dependencies for freeswitch modules | |
sudo apt-get install libvlc-dev libsqlite3-dev libcurl4-openssl-dev libspeex-dev libspeexdsp-dev libldns-dev libedit-dev yasm lua5.1-dev libopus-dev libpq-dev libsndfile-dev | |
# grab the source | |
mkdir ~/src |
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
using System; | |
using System.Threading; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Diagnostics; | |
namespace UDPClientPlayground | |
{ | |
class Program | |
{ |
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
using System; | |
using System.Threading; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Diagnostics; | |
namespace UDPClientPlayground | |
{ | |
class Program | |
{ |