Ignore:
Timestamp:
Jan 21, 2008, 9:56:03 AM (18 years ago)
Author:
Paul Smedley
Message:

Add support for NdpIOCTL

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/ndpsmb/ndpsmb.c

    r110 r111  
    20172017int APIENTRY NdpIOCTL (int type, HRESOURCE resource, char *path, int function, void *in, ULONG insize, PULONG poutlen)
    20182018{
    2019     log("NdpIOCTL <%s> %d %d\n", path, function, ERROR_NOT_SUPPORTED);
    2020         return ERROR_NOT_SUPPORTED;
     2019    log("NdpIOCTL <%s> %d\n", path, function);
     2020
     2021    if (in && insize > 4096)
     2022    {
     2023        sprintf (in, "SAMBA IOCTL function = %d, parms [%s] insize = %d, *poutlen = %d", function, in, insize, *poutlen);
     2024        *poutlen = insize;
     2025        return NO_ERROR;
     2026    }
     2027
     2028    return ERROR_NOT_SUPPORTED;
    20212029}
    20222030
Note: See TracChangeset for help on using the changeset viewer.