File: rquota_client.h

package info (click to toggle)
quota 4.09-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,700 kB
  • sloc: ansic: 12,461; sh: 5,470; perl: 406; makefile: 338; sed: 16
file content (18 lines) | stat: -rw-r--r-- 360 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 *
 *	Header file for rquota functions
 *
 */

#ifndef GUARD_RQUOTA_CLIENT_H
#define GUARD_RQUOTA_CLIENT_H

#include "quotaio.h"

/* Collect the requested quota information from a remote host. */
int rpc_rquota_get(struct dquot *dquot);

/* Set the requested quota information on a remote host. */
int rpc_rquota_set(int qcmd, struct dquot *dquot);

#endif