HomeSort by: relevance | last modified time | path
    Searched refs:NSD_COOKIE_HISTORY_SIZE (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/nsd/dist/
nsd.h 206 #define NSD_COOKIE_HISTORY_SIZE 2
214 typedef cookie_secret_type cookie_secrets_type[NSD_COOKIE_HISTORY_SIZE];
396 /* keep track of the last `NSD_COOKIE_HISTORY_SIZE`
util.c 1130 * secret. If the NSD_COOKIE_HISTORY_SIZE > 2 then all staging cookies
1140 #if NSD_COOKIE_HISTORY_SIZE > 2
1142 , sizeof(struct cookie_secret) * (NSD_COOKIE_HISTORY_SIZE - 2));
1146 nsd->cookie_count = nsd->cookie_count < NSD_COOKIE_HISTORY_SIZE
1147 ? nsd->cookie_count + 1 : NSD_COOKIE_HISTORY_SIZE;
1156 * If the NSD_COOKIE_HISTORY_SIZE > 2 then all staging secrets are moved
1165 , sizeof(struct cookie_secret) * (NSD_COOKIE_HISTORY_SIZE - 1));
1184 cookie_secret_type cookie_secrets[NSD_COOKIE_HISTORY_SIZE];
1252 for( count = 0; count < NSD_COOKIE_HISTORY_SIZE; count++ ) {
1302 for( j = 0; j < NSD_COOKIE_HISTORY_SIZE; j++)
    [all...]
edns.c 303 i < (int)nsd->cookie_count && i < NSD_COOKIE_HISTORY_SIZE;

Completed in 43 milliseconds