Lines Matching refs:temp_buf
85 gss_buffer_desc temp_buf; in do_auth() local
91 get_inet_addr_info(&myctladdr, &temp_buf); in do_auth()
93 chan.initiator_address.length = temp_buf.length; in do_auth()
94 chan.initiator_address.value = malloc(temp_buf.length); in do_auth()
95 memcpy(chan.initiator_address.value, temp_buf.value, in do_auth()
96 temp_buf.length); in do_auth()
98 get_inet_addr_info(&remctladdr, &temp_buf); in do_auth()
100 chan.acceptor_address.length = temp_buf.length; in do_auth()
101 chan.acceptor_address.value = malloc(temp_buf.length); in do_auth()
102 memcpy(chan.acceptor_address.value, temp_buf.value, in do_auth()
103 temp_buf.length); in do_auth()