httpd_p.h 494 B

12345678910111213141516171819202122232425
  1. #ifndef _HTTPD_P_H_
  2. #define _HTTPD_P_H_
  3. /*
  4. * W A R N I N G
  5. * -------------
  6. *
  7. * This file is not part of the Ethernut API. It exists purely as an
  8. * implementation detail. This header file may change from version to
  9. * version without notice, or even be removed.
  10. *
  11. * We mean it.
  12. */
  13. #include <sys/types.h>
  14. #include <pro/httpd.h>
  15. extern char *http_root;
  16. extern char *default_files[];
  17. char *CreateFilePath(const char *url, const char *addon);
  18. void DestroyRequestInfo(REQUEST * req);
  19. #endif