2011年11月25日

Simple UDP code with C

摘要: http://www.abc.se/~m6695/udp.htmlThe server 1 #include <arpa/inet.h> 2 #include <netinet/in.h> 3 #include <stdio.h> 4 #include <sys/types.h> 5 #include <sys/socket.h> 6 #include <unistd.h> 7 8 #define BUFLEN 512 9 #define NPACK 10 10 #define PORT 9930 ... 阅读全文

posted @ 2011-11-25 22:38 cokecoffe 阅读(164) 评论(0) 推荐(0) 编辑

导航