发布时间:2012-12-26 11:45:29
1.效果不理想#include <stdio.h>#include <unistd.h>#include <netdb.h>#include <sys/socket.h>#include <netinet/in.h>#include <arpa/inet.h>int main() { char hname[128]; struct hostent *hent; int i; gethostname(hname, size......【阅读全文】
发布时间:2012-12-25 14:17:02
sockaddr与sockaddr_in结构体简介2006-11-26 16:46 40145人阅读 评论(17) 收藏 举报 struct sockaddr {unsigned short sa_family; /* address family, AF_xxx */char sa_data[14]; &n......【阅读全文】
发布时间:2012-12-19 20:40:03
mount.nfs: access denied by server while mounting 一个解决办法 2011-06-30 17:22:06| 分类: 技术探讨 | 标签:linux 常见问题 服务器 |字号 订阅这两天在搭建嵌入式开发环境,配置好NFS服务器后,遇到了一个很纠结的错误使用 mount -t nfs 127.0.0.1:/home/lzgonline/rootfs /mnt 和 mount -t nfs 192.168.1.9:/home/lzgonline/rootfs /mnt 本机挂载n......【阅读全文】
发布时间:2012-12-17 10:23:34
一个遍历当前子目录的Makefile模板要对子目录执行make,需要在当前目录制作一个Makefile,遍历所有子目录的Makefile,并运行相应的make target. ## Reference http://www.gnu.org/software/make/manual/make.html## 需要排除的目录exclude_dirs := include bin# 取得当前子目录深度为1的所有目录名称dirs := $(shell find . -maxdepth 1 -type d)dirs := $(basename $(patsubst ......【阅读全文】
发布时间:2012-12-12 20:49:24
UDP编程中的connect(zt)标准的udp客户端开了套接口后,一般使用sendto和recvfrom函数来发数据,最近看到ntpclient的代码里面是使用send函数直接法的,就分析了一下,原来udp发送数据有两种方法供大家选用的,顺便把udp的connect用法也就解释清楚了。方法一: socket----->sendto()或recvfrom() 方法二: socket----->connect()----->send()或recv()首先从这里看出udp中也是可以使用connect的,但是这两种方法到底有什么区别呢?首先把这四个发送......【阅读全文】