Show
Ignore:
Timestamp:
02/28/05 17:48:26 (8 years ago)
Author:
minaguib
Message:

* Do not update the last_updated field on incoming traffic - update it on outgoing traffic only. This should be a much more reliable indication of client no longer being there
* WifiDog status is now viewable with a web browser at  http://ip:port/wifidog/status
* Added new web hook for  http://ip:port/wifidog
* Beautified web interface at  http://ip:port/wifidog/*

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog/src/http.h

    r274 r479  
    3333void http_callback_404(httpd *webserver, request *r); 
    3434/**@brief Callback for libhttpd */ 
     35void http_callback_wifidog(httpd *webserver, request *r); 
     36/**@brief Callback for libhttpd */ 
    3537void http_callback_about(httpd *webserver, request *r); 
     38/**@brief Callback for libhttpd */ 
     39void http_callback_status(httpd *webserver, request *r); 
    3640/**@brief Callback for libhttpd */ 
    3741void http_callback_auth(httpd *webserver, request *r); 
    3842 
     43/** @brief Sends HTML header+menu to web browser */ 
     44void http_wifidog_header(request *r, char *title); 
     45/** @brief Sends HTML footer to web browser */ 
     46void http_wifidog_footer(request *r); 
    3947 
    4048#endif /* _HTTP_H_ */