Linux Socket学习笔记(1) 学习目录
1. Sockets 介绍
2. 域和地址分类
3. 地址转换函数
4. Socket类型以及各种协议
5. 将地址和Socket相绑定
6. 面向无连接的协议
7. 面向连接的协议
8. 服务器端的面向连接协议
9. 主机和网络名查询
---------------------------------------------
10. 在Socket上使用标准I/O
11. 并发客户和服务器
12. Socket 选项
13. 用UDP进行广播
14. Out-of-Band 数据
15. 使用iNetd 后台进程
16. 网络安全编程
17. Passing Credentials and File Descriptors
18. 一个实际的网络程序例子
相关文档:
include/linux/sched.h
384 struct task_struct {
385 volatile long state;
386 struct thread_info *thread_info;
387 atomic_t usage;
388 unsigned long flags;
389 &nbs ......
1. ls:列出文件列表
格式: ls option,option可以是: -a 列出隐藏文件,-l 列出文件详细信息
2. pwd:查看当前目录
3. mkdir: 创建目录
4. touch: 创建文件
5. cd: 切换目录
6. cp: 拷贝文件/目录
格式: cp srcfile desfi ......
This is a memo of setting up Suse 10.3 on Mon Mar 17, 5:18 PM
Download Open Suse: http://en.opensuse.org and see http://en.opensuse.org/Download_Help
Summary - These tools were configured to use:
Apache 2.2 web server
Bison 2.3
Flex 2.5.33
Ftp server
Gcc 4.2.1 (C/C++)
Java 1.5.0
Mon ......
1. 内核学习方法,编译、调试等常见问题
1.1 关于编译升级内核到2.6.0的一些问题 作者:ommm
http://linux.chinaunix.net/bbs/thread-281831-1-5.html
1.2 VMWare Workstation 6.0调试Linux Kernel,竟如此方便 作者:albcamus
http://linux.chinaunix.net/bb ......
【文档创建日期:2010-05-30】
001 // P122: 三、上机题 3
002
003 // test03-03.c
004
005 // Header files included.
006 #include <stdio.h>
00 ......