• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/openvpn/

Lines Matching defs:gc

632 print_key_id (struct tls_multi *multi, struct gc_arena *gc)
635 struct buffer out = alloc_buf_gc (256, gc);
642 session_id_print (&ks->session_id_remote, gc));
844 struct gc_arena gc = gc_new ();
889 session_id_print (&session->session_id, &gc));
891 gc_free (&gc);
1055 struct gc_arena *gc)
1059 ALLOC_OBJ_CLEAR_GC (tas, struct tls_auth_standalone, gc);
1229 struct gc_arena gc = gc_new ();
1240 print_link_socket_actual (from, &gc));
1241 gc_free (&gc);
1252 print_link_socket_actual (from, &gc));
1253 gc_free (&gc);
1263 gc_free (&gc);
1275 struct gc_arena gc = gc_new ();
1284 format_hex (k->pre_master, sizeof (k->pre_master), 0, &gc));
1288 format_hex (k->random1, sizeof (k->random1), 0, &gc));
1292 format_hex (k->random2, sizeof (k->random2), 0, &gc));
1294 gc_free (&gc);
1324 struct gc_arena gc = gc_new ();
1339 dmsg (D_SHOW_KEY_SOURCE, "tls1_P_hash sec: %s", format_hex (sec, sec_len, 0, &gc));
1340 dmsg (D_SHOW_KEY_SOURCE, "tls1_P_hash seed: %s", format_hex (seed, seed_len, 0, &gc));
1378 dmsg (D_SHOW_KEY_SOURCE, "tls1_P_hash out: %s", format_hex (out_orig, olen_orig, 0, &gc));
1379 gc_free (&gc);
1409 struct gc_arena gc = gc_new ();
1416 out2 = (uint8_t *) gc_malloc (olen, false, &gc);
1431 dmsg (D_SHOW_KEY_SOURCE, "tls1_PRF out[%d]: %s", olen, format_hex (out1, olen, 0, &gc));
1433 gc_free (&gc);
1774 struct gc_arena gc = gc_new ();
1782 struct buffer out = alloc_buf_gc (512*3, &gc);
1809 buf_printf (&out, "IV_HWADDR=%s\n", format_hex_ex (rgi.hwaddr, 6, 0, 1, ":", &gc));
1839 gc_free (&gc);
1995 struct gc_arena gc = gc_new ();
1999 ALLOC_ARRAY_CLEAR_GC (options, char, TLS_OPTIONS_LEN, &gc);
2037 ALLOC_OBJ_CLEAR_GC (up, struct user_pass, &gc);
2123 gc_free (&gc);
2129 gc_free (&gc);
2161 struct gc_arena gc = gc_new ();
2236 session_id_print (&session->session_id, &gc));
2531 gc_free (&gc);
2542 gc_free (&gc);
2560 struct gc_arena gc = gc_new ();
2590 session_id_print (&session->session_id, &gc),
2591 session_id_print (&ks->session_id_remote, &gc),
2592 print_link_socket_actual (&ks->remote_addr, &gc));
2699 gc_free (&gc);
2740 struct gc_arena gc = gc_new ();
2794 key_id, print_link_socket_actual (from, &gc));
2795 gc_free (&gc);
2819 print_link_socket_actual (from, &gc), key_id);
2833 print_link_socket_actual (from, &gc), op);
2848 print_link_socket_actual (from, &gc));
2857 packet_opcode_name (op), print_link_socket_actual (from, &gc));
2867 print_link_socket_actual (from, &gc));
2882 session_id_print (&session->session_id, &gc),
2883 session_id_print (&sid, &gc),
2884 print_link_socket_actual (from, &gc),
2885 session_id_print (&ks->session_id_remote, &gc),
2886 print_link_socket_actual (&ks->remote_addr, &gc));
2894 session_id_print (&sid, &gc));
2899 i, session_id_print (&sid, &gc));
2931 print_link_socket_actual (from, &gc));
2948 print_link_socket_actual (from, &gc),
2949 session_id_print (&sid, &gc));
2974 print_link_socket_actual (from, &gc));
2997 print_link_socket_actual (from, &gc));
3015 print_link_socket_actual (from, &gc),
3027 print_link_socket_actual (from, &gc));
3044 i, session_id_print (&sid, &gc));
3059 i, session_id_print (&sid, &gc));
3093 print_link_socket_actual (from, &gc));
3113 ks->key_id, key_id, print_key_id (multi, &gc));
3169 gc_free (&gc);
3196 struct gc_arena gc = gc_new ();
3221 print_link_socket_actual (from, &gc),
3231 print_link_socket_actual (from, &gc));
3240 print_link_socket_actual (from, &gc),
3282 gc_free (&gc);
3287 gc_free (&gc);
3334 struct gc_arena gc = gc_new ();
3336 print_key_id (multi, &gc));
3337 gc_free (&gc);
3439 protocol_dump (struct buffer *buffer, unsigned int flags, struct gc_arena *gc)
3441 struct buffer out = alloc_buf_gc (256, gc);
3480 buf_printf (&out, " sid=%s", session_id_print (&sid, gc));
3496 buf_printf (&out, " tls_hmac=%s", format_hex (tls_auth_hmac, tls_auth_hmac_size, 0, gc));
3500 buf_printf(&out, " pid=%s", packet_id_net_print (&pin, (flags & PD_VERBOSE), gc));
3506 buf_printf (&out, " %s", reliable_ack_print(&buf, (flags & PD_VERBOSE), gc));
3524 buf_printf (&out, " DATA %s", format_hex (BPTR (&buf), BLEN (&buf), 80, gc));