home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / lan / soss.arj / SRC / README < prev    next >
Text File  |  1991-02-22  |  1KB  |  35 lines

  1. These are the NFS, port mapper and mount daemon programs.  A short
  2. summary follows:
  3.  
  4. netd.c:        main program
  5. nfs.c:        nfs server procedures
  6. pmap.c:        port mapper
  7. mountd.c:    mount daemon
  8. exports.c:    export file parser
  9. files.c:    file access routines to DOS files
  10. dtime.c:    DOS to Unix style time conversions and vice versa
  11. inodes.c:    artificial inode interface to DOS files
  12. sock.c:        socket routines
  13. mnt_xdr.c:    XDR routines for mount prog - from Sun user-level server.
  14. u_xdr.c:    XDR routines for the server - from Sun user-level server.
  15.  
  16. There is a makefile ("makefile") and a linker response file ("lresp").
  17.  
  18. IMPORTANT NOTE:
  19. ---------------
  20. The include file path should be set to the RPC directory before
  21. the default Microsoft C include directory, ie;
  22.  
  23.     set include = <RPC directory>;<default MSC dir>
  24.  
  25. CHANGES TO MSC INCLUDE FILE
  26. ---------------------------
  27.  
  28. One small addition was made to Microsoft C's include file "time.h".  I
  29. added the Unix timeval structure:
  30.  
  31. struct timeval {        /* Unix time value structure */
  32.     long tv_usec;
  33.     long tv_sec;
  34. };
  35.