2663693cf8
Fix the WARNS 1 warnings except unused variables. Add prototype for log_netobj(). Don't compare signed/unsigned. Cast u_int64_t to 'unsigned long long' and print using %llu. Fix constness of string arrays. Use a cast to avoid an unused parameter in a signal handler. alarm(2) can't fail, so don't check for it. ANSI'ify some functions.
26 lines
1017 B
C
26 lines
1017 B
C
/* $NetBSD: lockd_lock.h,v 1.2 2000/06/09 14:00:54 fvdl Exp $ */
|
|
/* $FreeBSD$ */
|
|
|
|
/* Headers and function declarations for file-locking utilities */
|
|
|
|
struct nlm4_holder * testlock(struct nlm4_lock *lock, bool_t exclusive,
|
|
int flags);
|
|
enum nlm_stats getlock(nlm4_lockargs *lckarg, struct svc_req *rqstp,
|
|
const int flags);
|
|
enum nlm_stats unlock(nlm4_lock *lock, const int flags);
|
|
int lock_answer(int pid, netobj *netcookie, int result, int *pid_p,
|
|
int version);
|
|
|
|
void notify(const char *hostname, const int state);
|
|
|
|
/* flags for testlock, getlock & unlock */
|
|
#define LOCK_ASYNC 0x01 /* async version (getlock only) */
|
|
#define LOCK_V4 0x02 /* v4 version */
|
|
#define LOCK_MON 0x04 /* monitored lock (getlock only) */
|
|
#define LOCK_CANCEL 0x08 /* cancel, not unlock request (unlock only) */
|
|
|
|
/* callbacks from lock_proc.c */
|
|
void transmit_result __P((int, nlm_res *, struct sockaddr *));
|
|
void transmit4_result __P((int, nlm4_res *, struct sockaddr *));
|
|
CLIENT *get_client __P((struct sockaddr *, rpcvers_t));
|