| * (C) Masami Komiya <mkomiya@sonare.it> 2004 |
| * This program is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU General Public License as |
| * published by the Free Software Foundation; either version 2, or (at |
| * your option) any later version. |
| #define PROG_PORTMAP 100000 |
| #define PROG_MOUNT 100005 |
| #define PORTMAP_GETPORT 3 |
| #define MOUNT_UMOUNTALL 4 |
| /* Block size used for NFS read accesses. A RPC reply packet (including all |
| * headers) must fit within a single Ethernet frame to avoid fragmentation. |
| * Chosen to be a power of two, as most NFS servers are optimized for this. */ |
| #define NFS_READ_SIZE 1024 |
| #define NFS_MAXLINKDEPTH 16 |
| extern void NfsStart (void); /* Begin NFS */ |
| /**********************************************************************/ |