structure.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _INCLUDE_GUARD_STRUCTURE_H_
  2. #define _INCLUDE_GUARD_STRUCTURE_H_
  3. #include <linux/time.h>
  4. #include <linux/wait.h>
  5. struct http_request;
  6. struct http_request
  7. {
  8. /* Linked list */
  9. struct http_request *Next;
  10. /* Network and File data */
  11. struct socket *sock;
  12. struct file *filp;
  13. /* Raw data about the file */
  14. int FileLength; /* File length in bytes */
  15. int Time; /* mtime of the file, unix format */
  16. int BytesSent; /* The number of bytes already sent */
  17. int IsForUserspace; /* 1 means let Userspace handle this one */
  18. /* Wait queue */
  19. wait_queue_t sleep; /* For putting in the socket's waitqueue */
  20. /* HTTP request information */
  21. char FileName[256]; /* The requested filename */
  22. int FileNameLength; /* The length of the string representing the filename */
  23. char Agent[128]; /* The agent-string of the remote browser */
  24. char IMS[128]; /* If-modified-since time, rfc string format */
  25. char Host[128]; /* Value given by the Host: header */
  26. int HTTPVER;        /* HTTP-version; 9 for 0.9,   10 for 1.0 and above */
  27. /* Derived date from the above fields */
  28. int IMS_Time; /* if-modified-since time, unix format */
  29. char TimeS[64]; /* File mtime, rfc string representation */
  30. char LengthS[14]; /* File length, string representation */
  31. char *MimeType; /* Pointer to a string with the mime-type 
  32.    based on the filename */
  33. __kernel_size_t MimeLength; /* The length of this string */
  34. };
  35. /*
  36. struct khttpd_threadinfo represents the four queues that 1 thread has to deal with.
  37. It is padded to occupy 1 (Intel) cache-line, to avoid "cacheline-pingpong".
  38. */
  39. struct khttpd_threadinfo
  40. {
  41. struct http_request* WaitForHeaderQueue;
  42. struct http_request* DataSendingQueue;
  43. struct http_request* LoggingQueue;
  44. struct http_request* UserspaceQueue;
  45. char  dummy[16];  /* Padding for cache-lines */
  46. };
  47. #endif