Changeset 111

Show
Ignore:
Timestamp:
01/21/08 09:56:03 (11 months ago)
Author:
psmedley
Message:

Add support for NdpIOCTL

Files:
1 modified

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