Lines Matching refs:out_mb
221 ntlmssp_put_type1(struct ssp_ctx *sp, struct mbdata *out_mb) in ntlmssp_put_type1() argument
278 (void) mb_put_mem(out_mb, &hdr.h_id, ID_SZ, MB_MSYSTEM); in ntlmssp_put_type1()
279 (void) mb_put_uint32le(out_mb, hdr.h_type); in ntlmssp_put_type1()
280 (void) mb_put_uint32le(out_mb, hdr.h_flags); in ntlmssp_put_type1()
281 (void) mb_put_sb_hdr(out_mb, &hdr.h_cldom); in ntlmssp_put_type1()
282 (void) mb_put_sb_hdr(out_mb, &hdr.h_wksta); in ntlmssp_put_type1()
284 err = mb_put_mbuf(out_mb, mb2.mb_top); in ntlmssp_put_type1()
396 ntlmssp_put_type3(struct ssp_ctx *sp, struct mbdata *out_mb) in ntlmssp_put_type3() argument
552 (void) mb_put_mem(out_mb, &hdr.h_id, ID_SZ, MB_MSYSTEM); in ntlmssp_put_type3()
553 (void) mb_put_uint32le(out_mb, hdr.h_type); in ntlmssp_put_type3()
555 (void) mb_put_sb_hdr(out_mb, &hdr.h_lm_resp); in ntlmssp_put_type3()
556 (void) mb_put_sb_hdr(out_mb, &hdr.h_nt_resp); in ntlmssp_put_type3()
558 (void) mb_put_sb_hdr(out_mb, &hdr.h_domain); in ntlmssp_put_type3()
559 (void) mb_put_sb_hdr(out_mb, &hdr.h_user); in ntlmssp_put_type3()
560 (void) mb_put_sb_hdr(out_mb, &hdr.h_wksta); in ntlmssp_put_type3()
562 (void) mb_put_sb_hdr(out_mb, &hdr.h_ssn_key); in ntlmssp_put_type3()
563 (void) mb_put_uint32le(out_mb, hdr.h_flags); in ntlmssp_put_type3()
566 pmic = mb_reserve(out_mb, NTLM_HASH_SZ); in ntlmssp_put_type3()
569 err = mb_put_mbuf(out_mb, mb2.mb_top); in ntlmssp_put_type3()
659 struct mbdata *out_mb) in ntlmssp_next_token() argument
663 if (out_mb == NULL) { in ntlmssp_next_token()
670 err = mb_init(out_mb); in ntlmssp_next_token()
680 err = ntlmssp_put_type1(sp, out_mb); in ntlmssp_next_token()
694 err = ntlmssp_put_type3(sp, out_mb); in ntlmssp_next_token()