Changeset 33540 in vbox for trunk/src/VBox/Additions/WINNT/SharedFolders
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Additions/WINNT/SharedFolders/redirector
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/SharedFolders/redirector/dll/vboxmrxp.cpp
r31634 r33540 107 107 Routine Description: 108 108 109 This routine returns the capab oilities of the Null Mini redirector109 This routine returns the capabilities of the Null Mini redirector 110 110 network provider implementation 111 111 … … 188 188 lpAuthenInfo - the authentication Information 189 189 190 lpPreviousAuthentInfoType - the previous au nthentication information type190 lpPreviousAuthentInfoType - the previous authentication information type 191 191 192 192 lpPreviousAuthentInfo - the previous authentication information … … 234 234 lpAuthenInfo - the authentication Information 235 235 236 lpPreviousAuthentInfoType - the previous au nthentication information type236 lpPreviousAuthentInfoType - the previous authentication information type 237 237 238 238 lpPreviousAuthentInfo - the previous authentication information … … 1383 1383 Status = SendToMiniRdr(IOCTL_MRX_VBOX_GETCONN, wzLocalName, 3 * sizeof(WCHAR), (PVOID)wzRemoteName, &CopyBytes); 1384 1384 1385 // if something strange happen ded then just say there are no more entries1385 // if something strange happened then just say there are no more entries 1386 1386 if (Status != WN_SUCCESS || CopyBytes == 0) 1387 1387 { … … 1459 1459 Status = SendToMiniRdr(IOCTL_MRX_VBOX_GETGLOBALCONN, &byConnectionList[i], sizeof(byConnectionList[i]), (PVOID)wzRemoteName, &CopyBytes); 1460 1460 1461 // if something strange happen ded then just say there are no more entries1461 // if something strange happened then just say there are no more entries 1462 1462 if (Status != WN_SUCCESS || CopyBytes == 0) 1463 1463 { … … 1604 1604 Log(("VBOXNP: NPGetResourceParent: lpNetResource %p, lpBuffer %p, lpBufferSize %p\n", 1605 1605 lpNetResource, lpBuffer, lpBufferSize)); 1606 /* Con truct a new NETRESOURCE which is syntactically a parent of lpNetResource,1606 /* Construct a new NETRESOURCE which is syntactically a parent of lpNetResource, 1607 1607 * then call NPGetResourceInformation to actually fill the buffer. 1608 1608 */ … … 1953 1953 dwInfoLevel - the desired info level 1954 1954 1955 lpBuffer - the buffer for the univer al name1955 lpBuffer - the buffer for the universal name 1956 1956 1957 1957 lpBufferSize - the buffer size -
trunk/src/VBox/Additions/WINNT/SharedFolders/redirector/sys/fileinfo.c
r31634 r33540 1115 1115 /* 1116 1116 * Note: We use the address of the FCB to determine the 1117 * index number of the file. If we have to maintain persist ance between1117 * index number of the file. If we have to maintain persistence between 1118 1118 * file opens for this request, then we might have to do something 1119 1119 * like checksuming the reserved fields on a FUNIQUE SMB response. … … 1295 1295 1296 1296 /* Note: We use the address of the FCB to determine the 1297 index number of the file. If we have to maintain persist ance between1297 index number of the file. If we have to maintain persistence between 1298 1298 file opens for this request, then we might have to do something 1299 1299 like checksuming the reserved fields on a FUNIQUE SMB response. -
trunk/src/VBox/Additions/WINNT/SharedFolders/redirector/sys/init.c
r32808 r33540 529 529 530 530 /* The FilePathName here looks like: \vboxsrv\... */ 531 if (PathNameLength >= 8 * sizeof (WCHAR)) /* Number of bytes in '\vboxsrv' unicode string. */531 if (PathNameLength >= 8 * sizeof (WCHAR)) /* Number of bytes in '\vboxsrv' unicode string. */ 532 532 { 533 533 PrefixOK = (FilePathName[0] == L'\\'); … … 814 814 815 815 /* Set filter mask */ 816 if (vboxCtlGuestFilterMask (VMMDEV_EVENT_HGCM, 0)) /** @todo r=bird: Why are we doing this? And more important ely, why are we clearing it further down. We're not the only HGCM user, are we? */816 if (vboxCtlGuestFilterMask (VMMDEV_EVENT_HGCM, 0)) /** @todo r=bird: Why are we doing this? And more importantly, why are we clearing it further down. We're not the only HGCM user, are we? */ 817 817 { 818 818 Log (("VBOXSF: DriverEntry: ERROR while setting guest event filter mask!\n")); … … 1160 1160 Arguments: 1161 1161 1162 VBoxMRxInitState - tells how far we got into the in tialization1162 VBoxMRxInitState - tells how far we got into the initialization 1163 1163 1164 1164 Return Value: … … 1384 1384 1385 1385 // 1386 // Miscellan ous1386 // Miscellaneous 1387 1387 // 1388 1388 -
trunk/src/VBox/Additions/WINNT/SharedFolders/redirector/sys/netroot.c
r31634 r33540 37 37 Notes: 38 38 39 By diff rentiating the mini redirector state from the net root condition it is possible39 By differentiating the mini redirector state from the net root condition it is possible 40 40 to permit a variety of reconnect strategies. It is conceivable that the RDBSS considers 41 41 a net root to be good while the underlying mini redirector might mark it as invalid … … 204 204 // NET_ROOT is NULL. Since the construction of NET_ROOT's/V_NET_ROOT's are serialized 205 205 // by the wrapper this is a safe check. 206 // ( The wrapper cannot have more then one thread trying to initialize the same206 // ( The wrapper cannot have more then one thread trying to initialize the same 207 207 // NET_ROOT). 208 208 // -
trunk/src/VBox/Additions/WINNT/SharedFolders/redirector/sys/notimpl.c
r31634 r33540 18 18 19 19 // 20 // File System Control func itonality20 // File System Control functionality 21 21 // 22 22 -
trunk/src/VBox/Additions/WINNT/SharedFolders/redirector/sys/srvcall.c
r31634 r33540 212 212 pSrvCall - the Server Call 213 213 214 ThisMinirdrIsTheWinner - TRUE if this mini rdr is the cho osen one.214 ThisMinirdrIsTheWinner - TRUE if this mini rdr is the chosen one. 215 215 216 216 pSrvCallContext - the server call context created by the mini redirector.
Note:
See TracChangeset
for help on using the changeset viewer.