14 lines
982 B
Plaintext
14 lines
982 B
Plaintext
common.h : 公共头文件、函数声明、常量定义等(由教材wrapper.h简化而来)
|
||
common.c : RIO函数库和打开网络连接函数源代码(教材中libwrapper.c简化而来)
|
||
webclient.c: web客户端源代码(《操作系统实验教程》第1章的client.c)
|
||
webserver.c: web服务器源代码(即教材《Linux编程》第8章的weblet.c)
|
||
togglec.c : toggle客户端源代码(教材第8章源代码)
|
||
togglesi.c : 迭代式toggle服务器源代码(教材《Linux编程》第8章源代码)
|
||
./cgi-bin/add.c: 生成动态网页的cgi程序(教材《Linux编程》第8章)
|
||
Makefile: 目标和源代码间相互依赖关系文件(参考教材《Linux编程》第3章)
|
||
index.html: 缺省网页文件
|
||
example.jpg: 网页文件index.html中内嵌的图片
|
||
favicon.ico: index.html中内嵌的图标
|
||
test.html: 第2个测试用网页
|
||
urls: 记录运行http_load执行时,访问哪些网址
|
||
gmon.out: grof命令生成的性能数据文件 |