本文主要是介绍同步linphone,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
linphone, 牛逼的VOIP开源项目。不做过多说明。参看http://www.linphone.org/
代码同步参看下表:
Project | git |
linphone, including:
| git clone git://git.linphone.org/linphone.git --recursive |
linphone-desktop, including:
| git clone git://git.linphone.org/linphone-desktop.git --recursive |
linphone-iphone
| git clone git://git.linphone.org/linphone-iphone.git --recursive |
linphone-android
| git clone git://git.linphone.org/linphone-android.git --recursive |
linphone-wp
| git clone git://git.linphone.org/linphone-wp.git --recursive |
a). 其中部分lib需要翻墙:
解决办法: 设置http和https代理
linux下:
export http_proxy=http://proxy.server:port
export https_proxy=http://proxy.server:port
比如port是3128,有时候,http的端口解析会有问题,误将git端口配置为3128段口。
因此,可能出现如下的现象:
error: Failed connect to github.com:3128; Operation now in progress while accessing https://github.com/keeran6/ForCargo-Men.git/info/refsfatal: HTTP request failed
而git hub的默认端口应该是80,如何解决? 需要配置global代理
git config --global http.proxy http://proxy.server:3128通过如上方式来配置端口
重新再git clone就OK了
这篇关于同步linphone的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!