1 /* implementation based on wireshark c-code */
3 const RQUOTAPATHLEN = 1024; /* Guess this is max. It is max for mount so probably rquota too */
11 typedef string exportpath<RQUOTAPATHLEN>;
13 struct GETQUOTA1args {
23 struct GETQUOTA2args {
29 struct GETQUOTA1res_ok {
42 union GETQUOTA1res switch (rquotastat status) {
44 GETQUOTA1res_ok quota;
49 program RQUOTA_PROGRAM {
52 RQUOTA1_NULL(void) = 0;
55 RQUOTA1_GETQUOTA(GETQUOTA1args) = 1;
58 RQUOTA1_GETACTIVEQUOTA(GETQUOTA1args) = 2;
63 RQUOTA2_NULL(void) = 0;
66 RQUOTA2_GETQUOTA(GETQUOTA2args) = 1;
69 RQUOTA2_GETACTIVEQUOTA(GETQUOTA2args) = 2;