简单!
全部博文(366)
发布时间:2012-12-31 23:14:10
在嵌入式系统中,使用goahead的时候, 以下代码是获取不到正确的ip地址的:if (gethostname(host, sizeof(host)) < 0) { error(E_L, E_LOG, T("Can't get hostname")); return -1;}if ((hp = gethostbyname(host)) == NULL) { error(E_L, E_LOG, T("Can't get host address")); &nbs......【阅读全文】
发布时间:2012-12-30 14:11:48
1.检测接口的 inet_addr,netmask,broad_addr#include <stdio.h>#include <string.h>#include <stdlib.h>#include <errno.h>#include <unistd.h>#include <sys/types.h>#include <sys/socket.h>#include <netinet/in.h>#include <arpa/inet.h>#include <sys/ioctl.h>......【阅读全文】
发布时间:2012-12-30 13:40:34
1、micro_httpd - really small http server 特点: 支持安全的 .. 上级目录过滤 支持通用的MIME类型 支持简单的目录 支持目录列表 支持使用 index.html 作为首页 Trailing-slash redirection 程序总共代码才200多行 这个httpd适合......【阅读全文】
发布时间:2012-12-28 23:22:00
1、测试代码#include <stdbool.h>#include "SDL.h"const int WINDOW_WIDTH = 640;const int WINDOW_HEIGHT = 480;const char* WINDOW_TITLE = "SDL Start";int main(int argc, char **argv){ SDL_Init( SDL_INIT_VIDEO ); SDL_Surface* screen = SDL_SetVideoMode( WINDOW_WIDTH, WINDO......【阅读全文】
发布时间:2012-12-25 23:41:50
一、安装插件首先需要使用mad解码插件,因此先安装gstreamer0.10-plugins-ugly 二、编写mp3播放器 下面来看看如何利用GStreamer框架提供的组件,来实现一个简单的MP3播放器。数据源元件负责从磁盘上读取数据,过滤器元件负责对数据进行解码,而接受器元件则负责将解码后的数据写入声卡。 想要在程序中应用GStreamer提供的各种功能,首先必须在主函数中调用gst_init()来完成初始化工作,以便将用户从命令行输入的参数传递给GStreamer函数库。一个典型的GStreamer应用程序的初始化如下所示:......【阅读全文】