Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ordering mistake in the DEVICE_WRITE_CALL struct in Vxi11.cs #2

Open
DEddyDave opened this issue Jun 27, 2024 · 0 comments
Open

Ordering mistake in the DEVICE_WRITE_CALL struct in Vxi11.cs #2

DEddyDave opened this issue Jun 27, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@DEddyDave
Copy link

The flag variable must be behind the io_timeout and lock_timeout.

public struct DEVICE_WRITE_CALL
        {
            public int xid;
            public int msg_type;
            public int rpcvers;
            public int prog;
            public int vers;
            public int proc;
            public int cred_flavor;
            public int cred_len;
            public int verf_flavor;
            public int verf_len;
            public int lid;
            
            public int io_timeout;
            public int lock_timeout;
            public int flags;

            public int data_len;
        };
@MitakaMakers MitakaMakers added the bug Something isn't working label Jun 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants