Lines Matching refs:cookie

162 		this attachment and use the cookie to track it. This filter is
167 @param cookie Used to allow the socket filter to set the cookie for
173 typedef errno_t (*sf_attach_func)(void **cookie, socket_t so);
182 @param cookie Cookie value specified when the filter attach was
188 typedef void (*sf_detach_func)(void *cookie, socket_t so);
195 @param cookie Cookie value specified when the filter attach was
201 typedef void (*sf_notify_func)(void *cookie, socket_t so, sflt_event_t event,
213 @param cookie Cookie value specified when the filter attach was
222 typedef int (*sf_getpeername_func)(void *cookie, socket_t so,
234 @param cookie Cookie value specified when the filter attach was
243 typedef int (*sf_getsockname_func)(void *cookie, socket_t so,
255 @param cookie Cookie value specified when the filter attach was
273 typedef errno_t (*sf_data_in_func)(void *cookie, socket_t so,
285 @param cookie Cookie value specified when the filter attach was
303 typedef errno_t (*sf_data_out_func)(void *cookie, socket_t so,
315 @param cookie Cookie value specified when the filter attach was
325 typedef errno_t (*sf_connect_in_func)(void *cookie, socket_t so,
334 @param cookie Cookie value specified when the filter attach was
344 typedef errno_t (*sf_connect_out_func)(void *cookie, socket_t so,
352 @param cookie Cookie value specified when the filter attach was
360 typedef errno_t (*sf_bind_func)(void *cookie, socket_t so,
368 @param cookie Cookie value specified when the filter attach was
378 typedef errno_t (*sf_setoption_func)(void *cookie, socket_t so, sockopt_t opt);
385 @param cookie Cookie value specified when the filter attach was
395 typedef errno_t (*sf_getoption_func)(void *cookie, socket_t so, sockopt_t opt);
402 @param cookie Cookie value specified when the filter attach was
410 typedef errno_t (*sf_listen_func)(void *cookie, socket_t so);
421 @param cookie Cookie value specified when the filter attach was
432 typedef errno_t (*sf_ioctl_func)(void *cookie, socket_t so,
445 @param cookie Cookie value specified when the filter attach was called.
465 typedef errno_t (*sf_accept_func)(void *cookie, socket_t so_listen, socket_t so,