sys/dev/wg/if_wg.c
185
struct wg_queue p_stage_queue;
sys/dev/wg/if_wg.c
186
struct wg_queue p_encrypt_serial;
sys/dev/wg/if_wg.c
187
struct wg_queue p_decrypt_serial;
sys/dev/wg/if_wg.c
1883
wg_queue_init(struct wg_queue *queue, const char *name)
sys/dev/wg/if_wg.c
1891
wg_queue_deinit(struct wg_queue *queue)
sys/dev/wg/if_wg.c
1898
wg_queue_len(struct wg_queue *queue)
sys/dev/wg/if_wg.c
1904
wg_queue_enqueue_handshake(struct wg_queue *hs, struct wg_packet *pkt)
sys/dev/wg/if_wg.c
1921
wg_queue_dequeue_handshake(struct wg_queue *hs)
sys/dev/wg/if_wg.c
1934
wg_queue_push_staged(struct wg_queue *staged, struct wg_packet *pkt)
sys/dev/wg/if_wg.c
1953
wg_queue_enlist_staged(struct wg_queue *staged, struct wg_packet_list *list)
sys/dev/wg/if_wg.c
1961
wg_queue_delist_staged(struct wg_queue *staged, struct wg_packet_list *list)
sys/dev/wg/if_wg.c
1971
wg_queue_purge(struct wg_queue *staged)
sys/dev/wg/if_wg.c
1981
wg_queue_both(struct wg_queue *parallel, struct wg_queue *serial, struct wg_packet *pkt)
sys/dev/wg/if_wg.c
2011
wg_queue_dequeue_serial(struct wg_queue *serial)
sys/dev/wg/if_wg.c
2025
wg_queue_dequeue_parallel(struct wg_queue *parallel)
sys/dev/wg/if_wg.c
238
struct wg_queue sc_handshake_queue;
sys/dev/wg/if_wg.c
242
struct wg_queue sc_encrypt_parallel;
sys/dev/wg/if_wg.c
243
struct wg_queue sc_decrypt_parallel;
sys/dev/wg/if_wg.c
347
static void wg_queue_init(struct wg_queue *, const char *);
sys/dev/wg/if_wg.c
348
static void wg_queue_deinit(struct wg_queue *);
sys/dev/wg/if_wg.c
349
static size_t wg_queue_len(struct wg_queue *);
sys/dev/wg/if_wg.c
350
static int wg_queue_enqueue_handshake(struct wg_queue *, struct wg_packet *);
sys/dev/wg/if_wg.c
351
static struct wg_packet *wg_queue_dequeue_handshake(struct wg_queue *);
sys/dev/wg/if_wg.c
352
static void wg_queue_push_staged(struct wg_queue *, struct wg_packet *);
sys/dev/wg/if_wg.c
353
static void wg_queue_enlist_staged(struct wg_queue *, struct wg_packet_list *);
sys/dev/wg/if_wg.c
354
static void wg_queue_delist_staged(struct wg_queue *, struct wg_packet_list *);
sys/dev/wg/if_wg.c
355
static void wg_queue_purge(struct wg_queue *);
sys/dev/wg/if_wg.c
356
static int wg_queue_both(struct wg_queue *, struct wg_queue *, struct wg_packet *);
sys/dev/wg/if_wg.c
357
static struct wg_packet *wg_queue_dequeue_serial(struct wg_queue *);
sys/dev/wg/if_wg.c
358
static struct wg_packet *wg_queue_dequeue_parallel(struct wg_queue *);