From: Jeremy Allison Date: Mon, 12 Mar 2001 21:09:55 +0000 (+0000) Subject: We copy the RPC header directly from the incoming client - remember to X-Git-Tag: samba-2.2.5pre1~2226^2~255 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=0185f8159dbd30820d1ec9ce2aec8eb1cddcfc0b;p=samba.git We copy the RPC header directly from the incoming client - remember to set little-endian flag on marshalling. AS/U now correctly tries to join our domain ! Jeremy. --- diff --git a/source/rpc_parse/parse_rpc.c b/source/rpc_parse/parse_rpc.c index 9fe893d4be2..f330c5947e6 100644 --- a/source/rpc_parse/parse_rpc.c +++ b/source/rpc_parse/parse_rpc.c @@ -187,6 +187,11 @@ BOOL smb_io_rpc_hdr(char *desc, RPC_HDR *rpc, prs_struct *ps, int depth) return False; if(!prs_uint8 ("flags ", ps, depth, &rpc->flags)) return False; + + /* We always marshall in little endian format. */ + if (MARSHALLING(ps)) + rpc->pack_type[0] = 0x10; + if(!prs_uint8("pack_type0", ps, depth, &rpc->pack_type[0])) return False; if(!prs_uint8("pack_type1", ps, depth, &rpc->pack_type[1])) @@ -201,7 +206,7 @@ BOOL smb_io_rpc_hdr(char *desc, RPC_HDR *rpc, prs_struct *ps, int depth) * format. Set the flag in the prs_struct to specify reverse-endainness. */ - if (ps->io && rpc->pack_type[0] == 0) { + if (UNMARSHALLING(ps) && rpc->pack_type[0] == 0) { DEBUG(10,("smb_io_rpc_hdr: PDU data format is big-endian. Setting flag.\n")); prs_set_endian_data(ps, RPC_BIG_ENDIAN); }