Lines Matching defs:wgm
3216 struct wg_msg wgm;
3231 m_copydata(m, 0, sizeof(wgm), &wgm);
3232 switch (le32toh(wgm.wgm_type)) {
3248 le32toh(wgm.wgm_type));
3255 le32toh(wgm.wgm_type));
3277 struct wg_msg *wgm;
3286 wgm = mtod(m, struct wg_msg *);
3287 switch (le32toh(wgm->wgm_type)) {
3289 wg_handle_msg_init(wg, (struct wg_msg_init *)wgm, src);
3292 wg_handle_msg_resp(wg, (struct wg_msg_resp *)wgm, src);
3295 wg_handle_msg_cookie(wg, (struct wg_msg_cookie *)wgm);
3302 panic("invalid message type: %d", le32toh(wgm->wgm_type));
3695 struct wg_msg wgm;
3713 m_copydata(m, offset, sizeof(struct wg_msg), &wgm);
3714 WG_DLOG("type=%d\n", le32toh(wgm.wgm_type));
3722 switch (le32toh(wgm.wgm_type)) {