mount.x (9524e274b5484ac8b43bacd90d4029183ccf6476) | mount.x (5b31cc94b10d4bb7109c6b27940a0fc76a44a331) |
---|---|
1/*- 2 * Copyright (c) 2010, Oracle America, Inc. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are 6 * met: 7 * 8 * * Redistributions of source code must retain the above copyright --- 19 unchanged lines hidden (view full) --- 28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 */ 31 32/* 33 * Protocol description for the mount program 34 */ 35 | 1/*- 2 * Copyright (c) 2010, Oracle America, Inc. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are 6 * met: 7 * 8 * * Redistributions of source code must retain the above copyright --- 19 unchanged lines hidden (view full) --- 28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 */ 31 32/* 33 * Protocol description for the mount program 34 */ 35 |
36#ifndef RPC_HDR 37%#ifndef lint 38%/*static char sccsid[] = "from: @(#)mount.x 1.2 87/09/18 Copyr 1987 Sun Micro";*/ 39%/*static char sccsid[] = "from: @(#)mount.x 2.1 88/08/01 4.0 RPCSRC";*/ 40%#endif /* not lint */ 41%#include <sys/cdefs.h> 42#endif 43 | |
44const MNTPATHLEN = 1024; /* maximum bytes in a pathname argument */ 45const MNTNAMLEN = 255; /* maximum bytes in a name argument */ 46const FHSIZE = 32; /* size in bytes of a file handle */ 47#ifdef WANT_NFS3 48const FHSIZE3 = 64; /* size in bytes of a file handle (v3) */ 49#endif 50 51/* --- 207 unchanged lines hidden --- | 36const MNTPATHLEN = 1024; /* maximum bytes in a pathname argument */ 37const MNTNAMLEN = 255; /* maximum bytes in a name argument */ 38const FHSIZE = 32; /* size in bytes of a file handle */ 39#ifdef WANT_NFS3 40const FHSIZE3 = 64; /* size in bytes of a file handle (v3) */ 41#endif 42 43/* --- 207 unchanged lines hidden --- |