Changeset 513 for branches/client-2.0/src
- Timestamp:
- Jan 7, 2011, 12:00:54 PM (15 years ago)
- Location:
- branches/client-2.0/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/client-2.0/src/help/readme.txt
r510 r513 71 71 DLL) somewhere in your LIBPATH, if it is not there already (It comes with any 72 72 recent eComStation release). 73 The plugin needs the 32 bit TCP/IP stack. This stack comes with all eComStation 74 releases. If you have still the 16 bit stack, please search the net for the 32 bit stack. 75 73 76 74 77 3.1 Netdrive -
branches/client-2.0/src/help/readme_de.txt
r510 r513 75 75 Innotek GCC Runtime DLL) irgendwo in Ihrem LIBPATH, wenn sie nicht schon dort 76 76 ist (Sie kommt mit allen bisherigen eComStation Versionen). 77 Desweiteren bentigt das Plugin den 32 bit TCP/IP Stack. Auch dieser kommt mit allen 78 eComstation Versionen mit. Falls noch der 16 bit stack installiert ist, suchen Sie 79 bitte im Internet nach dem 32 bit stack. 77 80 78 81 3.1 Netdrive … … 97 100 4. NDPSMB.DLL 98 101 _____________ 102 99 103 100 104 4.1. Verwendung mit Netdrive -
branches/client-2.0/src/help/readme_fr.txt
r510 r513 83 83 3. Installation 84 84 _______________ 85 86 The plugin needs the klibc runtime named libc06*.dll (the innotek gcc runtime 87 DLL) somewhere in your LIBPATH, if it is not there already (It comes with any 88 recent eComStation release). 89 The plugin needs the 32 bit TCP/IP stack. This stack comes with all eComStation 90 releases. If you have still the 16 bit stack, please search the net for the 32 bit stack. 85 91 86 92 -
branches/client-2.0/src/ndpsmb.c
r510 r513 506 506 507 507 /* Create a directory cache with expiration time 15 seconds and up to 32 listings cached. */ 508 dircache_create(&pRes->pdc, 1 0, 32);508 dircache_create(&pRes->pdc, 15, 32); 509 509 510 510 return rc; … … 2014 2014 debuglocal(9,"NdpFileClose in [%p] %d <%s>\n", pConn, pConn->file.fd, pConn->file.fd < 0 ? "!null!" : pConn->file.fname); 2015 2015 2016 // delete the dir cache2017 dircache_invalidate(pConn->file.fullname, pRes->pdc, 1);2018 2019 2016 do { 2020 2017 if (pConn->file.fd < 0) … … 2140 2137 debuglocal(9,"NdpFileWrite in [%p]\n", pConn); 2141 2138 2139 /* delete the dir cache 2140 this was moved from NdpFileClose() becasue if there are a lot files in the tree all are reread 2141 the problem when moved to here is, that last accessed time is not refreshed 2142 if this is needed, a new function needs to be done to update only one file in the cache */ 2143 dircache_invalidate(pConn->file.fullname, pRes->pdc, 1); 2144 2142 2145 do { 2143 2146 if (pConn->file.fd < 0)
Note:
See TracChangeset
for help on using the changeset viewer.