Changeset 514 for trunk/client/src
- Timestamp:
- Jan 7, 2011, 12:06:57 PM (15 years ago)
- Location:
- trunk/client/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/src/help/readme.txt
r499 r514 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. 73 75 74 76 3.1 Netdrive … … 93 95 4. NDPSMB.DLL 94 96 _____________ 97 95 98 96 99 4.1. Usage with Netdrive -
trunk/client/src/help/readme_de.txt
r499 r514 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 -
trunk/client/src/help/readme_fr.txt
r499 r514 84 84 _______________ 85 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. 86 91 87 92 3.1 Netdrive -
trunk/client/src/ndpsmb.c
r508 r514 408 408 409 409 /* Create a directory cache with expiration time 15 seconds and up to 32 listings cached. */ 410 dircache_create(&pRes->pdc, 1 0, 32);410 dircache_create(&pRes->pdc, 15, 32); 411 411 412 412 return rc; … … 1088 1088 debug_printf("NdpSetPathInfo in [%p]\n", pConn); 1089 1089 1090 // delete the dir c hache1090 // delete the dir cache 1091 1091 dircache_invalidate(szPathName, pRes->pdc, 1); 1092 1092 … … 1914 1914 debuglocal(9,"NdpFileClose in [%p] %d <%s>\n", pConn, pConn->file.fd, pConn->file.fd < 0 ? "!null!" : pConn->file.fname); 1915 1915 1916 // delete the dir chache1917 dircache_invalidate(pConn->file.fullname, pRes->pdc, 1);1918 1919 1916 do { 1920 1917 if (pConn->file.fd < 0) … … 2038 2035 debuglocal(9,"NdpFileWrite in [%p]\n", pConn); 2039 2036 2037 /* delete the dir cache 2038 this was moved from NdpFileClose() becasue if there are a lot files in the tree all are reread 2039 the problem when moved to here is, that last accessed time is not refreshed 2040 if this is needed, a new function needs to be done to update only one file in the cache */ 2041 dircache_invalidate(pConn->file.fullname, pRes->pdc, 1); 2042 2040 2043 do { 2041 2044 if (pConn->file.fd < 0) -
trunk/client/src/resources/instpl.cmd
r401 r514 1 @echo off 2 REM this script is executed from NLS directory! 3 copy ndpsmb.hlp .. 4 cd .. 5 nd.exe plugin install ndpsmb.ndp 6 del ndpsmb.hlp 1 /* Install Samba Plugin */ 2 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs' 3 call SysLoadFuncs 4 '@echo off' 5 6 /* Add supported languages here */ 7 langs = "DE,FR,EN" 8 9 ok = SysFileTree("ndpsmb.dll",exist.,"FO") 10 if exist.0 = 0 then do 11 say "Plugin not found in current directory! Aborting..." 12 exit -1 13 end 14 15 lang = translate(arg(1)) 16 if lang = "" then do 17 lang = translate(left(strip(value("LANG",,"OS2ENVIRONMENT")),2)) 18 end 19 if pos(lang,langs) = 0 then lang = 'EN' 20 say 'Installing 'lang 21 'copy .\'lang'\ndpsmb.hlp 1>NUL' 22 'nd.exe plugin install ndpsmb.ndp' 23 ok = SysFileDelete("ndpsmb.hlp")
Note:
See TracChangeset
for help on using the changeset viewer.