44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/**
 | 
						|
 * @file	userHandler.h
 | 
						|
 * @brief	Header File for User Control Example
 | 
						|
 * @version 1.0
 | 
						|
 * @date	2014/07/15
 | 
						|
 * @par Revision
 | 
						|
 *			2014/07/15 - 1.0 Release
 | 
						|
 * @author	
 | 
						|
 * \n\n @par Copyright (C) 1998 - 2014 WIZnet. All rights reserved.
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __USERHANDLER_H
 | 
						|
#define __USERHANDLER_H
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
//#define _USER_HANDLER_DEBUG_
 | 
						|
 | 
						|
 | 
						|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 | 
						|
// Public Functions
 | 
						|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 | 
						|
// to do
 | 
						|
 | 
						|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 | 
						|
// Pre-defined CGI Interface Functions Handler
 | 
						|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 | 
						|
uint8_t predefined_get_cgi_processor(uint8_t * uri_name, uint8_t * buf, uint16_t * len);
 | 
						|
uint8_t predefined_set_cgi_processor(uint8_t * uri_name, uint8_t * uri, uint8_t * buf, uint16_t * len);
 | 
						|
 | 
						|
 | 
						|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 | 
						|
// HTTP GET Method CGI Functions
 | 
						|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 | 
						|
// to do
 | 
						|
 | 
						|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 | 
						|
// HTTP POST Method CGI Functions
 | 
						|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 | 
						|
// to do
 | 
						|
 | 
						|
 | 
						|
#endif
 | 
						|
 |