Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1844066
  • 博文数量: 274
  • 博客积分: 2366
  • 博客等级: 大尉
  • 技术积分: 1880
  • 用 户 组: 普通用户
  • 注册时间: 2007-04-22 09:37
文章分类

全部博文(274)

文章存档

2022年(1)

2020年(10)

2019年(7)

2018年(18)

2017年(26)

2016年(32)

2015年(43)

2014年(30)

2013年(44)

2012年(36)

2011年(17)

2010年(10)

发布时间: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......【阅读全文】

阅读(5194) | 评论(1) | 转发(0)

发布时间: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......【阅读全文】

阅读(1665) | 评论(0) | 转发(1)

发布时间: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......【阅读全文】

阅读(100575) | 评论(0) | 转发(7)

发布时间: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 ......【阅读全文】

阅读(2029) | 评论(0) | 转发(0)

发布时间: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的,但是这两种方法到底有什么区别呢?首先把这四个发送......【阅读全文】

阅读(1417) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册