Hi,
Is there an upper limit on the number of connections (MaxConnections)
parameter to FltCreateCommunicationPort ? Is there an upper limit based on
best-practices / thumb rules etc ? MSDN says it should be greater than 0.
Thanks,
Hi,
Is there an upper limit on the number of connections (MaxConnections)
parameter to FltCreateCommunicationPort ? Is there an upper limit based on
best-practices / thumb rules etc ? MSDN says it should be greater than 0.
Thanks,
There are a few ways you could figure this out. First, just test various
values until something doesn’t work. Or, you could easily disassemble the
code to see what checks it does. Just quickly looking at it, it seems to
only check if the value is greater than 0.
mov r13d, [rsp+78h+arg_38]
test r13d, r13d
jg short loc_41B50
mov edi, 0C000000Dh
mov [rax-24h], edi
jmp loc_41CB4
But the magic number is really specific to your requirements. How many
connections do you really expect?
On Thu, Dec 4, 2014 at 4:51 PM, Arun M. Krishnakumar
wrote:
> Hi,
>
> Is there an upper limit on the number of connections (MaxConnections)
> parameter to FltCreateCommunicationPort ? Is there an upper limit based on
> best-practices / thumb rules etc ? MSDN says it should be greater than 0.
>
> Thanks,
> — NTFSD is sponsored by OSR OSR is hiring!! Info at
> http://www.osr.com/careers For our schedule of debugging and file system
> seminars visit: http://www.osr.com/seminars To unsubscribe, visit the
> List Server section of OSR Online at
> http://www.osronline.com/page.cfm?name=ListServer