Displaying 1 result from an estimated 1 matches for "put_record".
Did you mean:
plt_record
1999 Nov 27
0
(Correction) File caching while "oplocks=False", black magic or what?
...ESSAGE:
NOTE: I have definitely put "oplocks=False" in my smb.conf.
I use a program running on 2 machines (win95 and win98) to access data
on my samba server (samba 2.0.3-8, on Redhat 6.0). The programs, when
accessing data on the server, go like this:
int get_record(..) int put_record(..)
{ {
if (lseek(...)) { if (lseek(...)) {
if (read(...)) { if (write(...)) {
.... ....
} else ... } else ...
} else ... } else ...
} }...