how you will deal this warning
Quote:
warning: incompatible implicit declaration of built-in function ‘
|
bzero’
Code:
if( flow_hash[index] )
if( flow_hash[index]->time_last_access-current_time > tcp_timeout ) {
state = flow_hash[index]->next;
bzero( state, sizeof(flow_state_t) );
flow_hash[index]->next = state;
/* statistics */
stats.reuse++;
return;
}
please give me feedback.