rquota.x (5a1d14419a5b620430949a46cb6ee63148a43cb9) rquota.x (5b31cc94b10d4bb7109c6b27940a0fc76a44a331)
1/*
2 * Remote quota protocol
3 * Requires unix authentication
4 */
5
1/*
2 * Remote quota protocol
3 * Requires unix authentication
4 */
5
6#ifndef RPC_HDR
7%#include <sys/cdefs.h>
8#endif
9
10const RQ_PATHLEN = 1024;
11
12struct sq_dqblk {
13 unsigned int rq_bhardlimit; /* absolute limit on disk blks alloc */
14 unsigned int rq_bsoftlimit; /* preferred limit on disk blks */
15 unsigned int rq_curblocks; /* current block count */
16 unsigned int rq_fhardlimit; /* absolute limit on allocated files */
17 unsigned int rq_fsoftlimit; /* preferred file limit */

--- 123 unchanged lines hidden ---
6const RQ_PATHLEN = 1024;
7
8struct sq_dqblk {
9 unsigned int rq_bhardlimit; /* absolute limit on disk blks alloc */
10 unsigned int rq_bsoftlimit; /* preferred limit on disk blks */
11 unsigned int rq_curblocks; /* current block count */
12 unsigned int rq_fhardlimit; /* absolute limit on allocated files */
13 unsigned int rq_fsoftlimit; /* preferred file limit */

--- 123 unchanged lines hidden ---