Plasma.pnCli2Auth_AcctLoginRequest.Write C# (CSharp) Method

Write() public method

public Write ( Plasma.hsStream s ) : void
s Plasma.hsStream
return void
        public override void Write(hsStream s)
        {
            s.WriteUInt(fTransID);
            s.WriteUInt(fChallenge);
            pnHelpers.WriteString(s, fAccount, 64);

            // We need to send a uint[5] for the Hash
            for (int i = 0; i < 5; i++)
                IWriteHashUInt(s, i);

            pnHelpers.WriteString(s, fAuthToken, 64);
            pnHelpers.WriteString(s, fOS, 8);
        }