menus.c
上传用户:sxdewei
上传日期:2014-06-02
资源大小:67k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include <fcntl.h>
  5. #include <getopt.h>
  6. #include <errno.h>
  7. #include <sys/ioctl.h>
  8. #include <linux/config.h>
  9. #include <netinet/in.h>
  10. #include <arpa/inet.h>
  11. #include "cgivars.h"
  12. #include "htmllib.h"
  13. #include "config_phase.h"
  14. #include "sysconf.h"
  15. char head[]="<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">";
  16. char html[]="<html>
  17. <HEAD>
  18. <TITLE>menus</TITLE>
  19. <META http-equiv="Content-Type" content="text/html; charset=gb2312">
  20. <LINK href="menus_files/style.css" type=text/css rel=stylesheet>
  21. <STYLE type=text/css>BODY {
  22. BACKGROUND-COLOR: #6699ff
  23. }
  24. .style1 {
  25. FONT-WEIGHT: bold; FONT-SIZE: 10pt
  26. }
  27. </STYLE>
  28. <META content="MSHTML 6.00.6000.16414" name=GENERATOR>
  29. </HEAD>
  30. <BODY>
  31. <P> </P>
  32. <P class=style1>基本设置</P>
  33. <UL class=style1>
  34.   <LI> <a target="mainFrame" href="/sysinfo.cgi">系统状态</a> 
  35.   <LI> <a target="mainFrame" href="/system_ctl.cgi">系统设置</a> 
  36.   <LI> <a target="mainFrame" href="/user_manager.cgi">用户管理</a> 
  37.   <LI> <a target="mainFrame" href="/networking.cgi">网络设置</a> 
  38.   <LI> <a target="mainFrame" href="/video_setting.cgi">视频设置</a>
  39.   <LI> <a target="mainFrame" href="/date.cgi">日期时间</a></LI>
  40. </UL>
  41. <P class=style1>高级设置</P>
  42. <UL class=style1>
  43.   <LI> <a target="mainFrame" href="/video_crypt.cgi">视频加密</a> 
  44.   <LI> <a target="mainFrame" href="/ftp.cgi">FTP服务</a> 
  45.   <LI> <a target="mainFrame" href="/mail.cgi">邮件服务</a> 
  46.   <LI> <a target="mainFrame" href="/alert.cgi">安防报警</a>
  47.   <LI> <a target="mainFrame" href="/timing.cgi">定时操作</a> 
  48.   <LI> <a target="mainFrame" href="/maintenance.cgi">系统维护</a> 
  49.   </LI>
  50. </UL>
  51. <P class=style1>其他</P>
  52. <UL class=style1>
  53.   <LI> <a target="mainFrame" href="../help.htm">使用帮助</a> 
  54.   <LI> <a target="mainFrame" href="../support.htm">技术支持</a> 
  55.   <LI> <a target="mainFrame" href="../about.htm">关于产品</a></LI>
  56. </UL>
  57. <P class=style1>链接</P>
  58. <UL class=style1>
  59.   <LI> <a target="mainFrame" href="/rt_video.cgi">查看视频</a> 
  60.   <LI> <a target="_blank" href="/hist_video.cgi">历史视频</a> 
  61.   <LI> <a target="_top" href="../index.html">返回首页</a></LI>
  62. </UL>
  63. </BODY>
  64. </HTML>";
  65. int main(void)
  66. {
  67.  //   printf("%sn", head);
  68.  adminCheck();
  69.     printf("%sn", html);
  70.     //fflush(stdout);
  71.     exit(0);
  72. }  // end of main