HomeSort by: relevance | last modified time | path
    Searched defs:encrypted_buf (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/net/
if_wg.c 2897 char *encrypted_buf = NULL, *decrypted_buf; local in function:wg_handle_msg_data
2984 encrypted_buf = mtod(m, char *) + sizeof(*wgmd);
2986 encrypted_buf = kmem_intr_alloc(encrypted_len, KM_NOSLEEP);
2987 if (encrypted_buf == NULL) {
2988 WG_DLOG("failed to allocate encrypted_buf\n");
2991 m_copydata(m, sizeof(*wgmd), encrypted_len, encrypted_buf);
3020 wgs->wgs_tkey_recv, le64toh(wgmd->wgmd_counter), encrypted_buf,
3147 kmem_intr_free(encrypted_buf, encrypted_len);
if_wg.c 2897 char *encrypted_buf = NULL, *decrypted_buf; local in function:wg_handle_msg_data
2984 encrypted_buf = mtod(m, char *) + sizeof(*wgmd);
2986 encrypted_buf = kmem_intr_alloc(encrypted_len, KM_NOSLEEP);
2987 if (encrypted_buf == NULL) {
2988 WG_DLOG("failed to allocate encrypted_buf\n");
2991 m_copydata(m, sizeof(*wgmd), encrypted_len, encrypted_buf);
3020 wgs->wgs_tkey_recv, le64toh(wgmd->wgmd_counter), encrypted_buf,
3147 kmem_intr_free(encrypted_buf, encrypted_len);

Completed in 26 milliseconds