| Example | |
/* Should be the same value as set in 'Net_Config.c' file. */
#define HTTP_NUMSESS 10
U32 answer[HTTP_NUMSESS];
U16 cgi_func (U8 *env, U8 *buf, U16 buflen, U32 *pcgi) {
U16 len = 0;
U32 http_session;
.
.
http_session = http_get_session ();
len += sprintf (buf+len,"Answer is: %d",answer[http_session]);
.
return (len);
}
|