Lines Matching refs:serial
37 The context holds a serial number that is used to identify resolver
39 requests. This serial number is controlled using
41 lwres_context_initserial() sets the serial number for context *ctx to
42 serial. lwres_context_nextserial() increments the serial number and
176 ctx->serial = time(NULL); /* XXXMLG or BEW */
178 ctx->serial = _time32(NULL);
226 /*% Increments the serial number and returns the previous value. */
231 return (ctx->serial++);
234 /*% Sets the serial number for context *ctx to serial. */
236 lwres_context_initserial(lwres_context_t *ctx, lwres_uint32_t serial) {
239 ctx->serial = serial;