当前位置: 技术问答>linux和unix
嵌入式运行rtp问题
来源: 互联网 发布时间:2016-10-25
本文导语: hi all, 用交叉编译好的rtp程序放到开发板上面运行,出现以下问题: root@beagleboard:~# ./jpegrtp_sender 192.168.1.106 8080 Error:Can't get the local IP addressnroot@beagleboard:~# 网上有说这样...
hi all,
用交叉编译好的rtp程序放到开发板上面运行,出现以下问题:
root@beagleboard:~# ./jpegrtp_sender 192.168.1.106 8080
Error:Can't get the local IP addressnroot@beagleboard:~#
网上有说这样解决:
/*
我也遇到了这样的问题。
既然是RTP的问题,我就下载了jrtplib的源代码,在源代码中只有一个地方返回ERR_RTP_CANTGETLOCALIP,所以就是这个地方了。打开rtpconnection.cpp文件,找到,CalcLocalIP()函数,发现是使用gethostbyname()来获得IP地址的,这个函数需要用到 /etc/hosts文件。如果这个文件的格式不多,或者信息不够则会导致gethostbyname函数错误。我的就是这个文件不对,按照Redhat Linux的hosts文件,建立hosts文件,程序可以正常工作了。
*/
但不知道具体怎么解决,本人编译的系统是ubuntu,找hosts文件,里面也没有什么特别的东西呀
以下是源码:
用交叉编译好的rtp程序放到开发板上面运行,出现以下问题:
root@beagleboard:~# ./jpegrtp_sender 192.168.1.106 8080
Error:Can't get the local IP addressnroot@beagleboard:~#
网上有说这样解决:
/*
我也遇到了这样的问题。
既然是RTP的问题,我就下载了jrtplib的源代码,在源代码中只有一个地方返回ERR_RTP_CANTGETLOCALIP,所以就是这个地方了。打开rtpconnection.cpp文件,找到,CalcLocalIP()函数,发现是使用gethostbyname()来获得IP地址的,这个函数需要用到 /etc/hosts文件。如果这个文件的格式不多,或者信息不够则会导致gethostbyname函数错误。我的就是这个文件不对,按照Redhat Linux的hosts文件,建立hosts文件,程序可以正常工作了。
*/
但不知道具体怎么解决,本人编译的系统是ubuntu,找hosts文件,里面也没有什么特别的东西呀
以下是源码:
/* Standard Include Files */
#include
#include "rtpsession.h"
/* Verification Test Environment Include Files */
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
//#include
//#include
//#include
//#include
const int SCREEN_WIDTH = 1280;
const int SCREEN_HEIGHT = 720;
const int SCREEN_BPP = 32;
// 错误处理函数
void checkerror(int err)
{
if (err