hist_video.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. #define DEBUG        0
  16. //static config_item ** items;
  17. //static int config_list[] = {21,22,23,24};
  18. //static char *config_name[] = {"LOC_ADMNM", "LOC_ADMPD", "LOC_USRNM", "LOC_USRPD"};
  19. void hist_video(char **postvars, int form_method)
  20. {
  21. //int config_num = sizeof(config_list)/sizeof(int);
  22. int i;
  23. int r_fd, w_fd;
  24. int temp_int;
  25. char *temp_string;
  26. char java[] ="";
  27. //r_fd = open_read_fifo();
  28. //items = init_config_item(items, config_num, config_list);
  29. printf("%sn", java);
  30. // If we got post, write it into flash
  31. if(form_method == POST)
  32. {
  33. /* if(SaveConfig(postvars, items, config_list, config_name, config_num))
  34. {
  35. w_fd = open_write_fifo();
  36. notify_config(w_fd);
  37. close_write_fifo(w_fd);
  38. read_fifo(r_fd);
  39. }
  40. */
  41. }
  42. //GetConfValues(config_list, items, config_num);
  43. //free_config_item(items, config_num);
  44. //close_read_fifo();
  45. }
  46. ////////////////////////////////////////////////////////////////////////////
  47. // Function: main
  48. ////////////////////////////////////////////////////////////////////////////
  49. int main(void)
  50. {
  51.     char **postvars = NULL;  // POST request data repository
  52.     char **getvars = NULL;   // GET request data repository
  53.     int form_method;         // POST = 1, GET = 0
  54.     // CGI part start here
  55.     adminCheck();
  56.     form_method = getRequestMethod();
  57.     if(form_method == POST)
  58.     {
  59.        // getvars = getGETvars();
  60.         postvars = getPOSTvars();
  61.     }
  62.     else if(form_method == GET)
  63.     {
  64.         getvars = getGETvars();
  65.     }
  66.     // CGI start here, set COM port
  67.     hist_video(postvars, form_method);
  68.     //htmlFooter();
  69.     cleanUp(form_method, getvars, postvars);
  70.     fflush(stdout);
  71.     exit(0);
  72. }  // end of main