Hello
I have created a SSI handler for specific tag, I just wana ask is this I have used is right or wrong to write SSI handler, please help
static int32_t SSIHandler(int32_t iIndex, char *pcInsert, int32_t iInsertLen) { // // Which SSI tag have we been passed? // switch(iIndex) { case SSI_INDEX_DATA: char buff[50]; pcInsert=&buff; buff={'0'}; iInsertLen=sizeof(buff); break; case SSI_INDEX_FORMVARS: break; case SSI_INDEX_SPEED: break; default: break; } return(strlen(pcInsert)); }