* fhandler-tut.txt: hinfo -> dtable.

This commit is contained in:
Christopher Faylor 2000-08-18 19:52:31 +00:00
parent dc999f678d
commit 25685bb107
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Fri Aug 18 15:51:06 2000 Christopher Faylor <cgf@cygnus.com>
* fhandler-tut.txt: hinfo -> dtable.
Thu Jul 20 13:01:00 2000 Corinna Vinschen <corinna@vinschen.de>
* ntsec.sgml: Add description for the new setuid ability

View File

@ -8,7 +8,7 @@ Files to note:
fhandler.h - must define a new derived class here and FH_*
path.cc - to notice "/dev/zero" and mark it
fhandler_zero.cc - new
hinfo.cc - to create the fhandler instance
dtable.cc - to create the fhandler instance
OK, first we have to define what this new fhandler will do. In our
example case, we're going to implement the unix "/dev/zero" device,
@ -45,7 +45,7 @@ to open "/dev/zero". Look in get_device_number; there's a long list
of cases, just add one (I added one after "null"). Also remember to
add an entry to the windows_device_names list in the right spot.
To go along with that change, we'll need to change hinfo.cc. Look for
To go along with that change, we'll need to change dtable.cc. Look for
FH_NULL and add a case for FH_ZERO as well.
Now we get to fhandler_zero.cc itself. Create the empty file and copy