Browse Source

Commit requested by marco:

Add nonblock support for xdrrecs
ok millert blambert & otto; from NetBSD. libc bump to follow soon.
OPENBSD_4_5
otto 16 years ago
parent
commit
21180bf08e
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/include/rpc/xdr.h

+ 2
- 1
src/include/rpc/xdr.h View File

@ -1,4 +1,4 @@
/* $OpenBSD: xdr.h,v 1.10 2008/06/13 21:12:11 sturm Exp $ */
/* $OpenBSD: xdr.h,v 1.11 2008/12/09 19:40:10 otto Exp $ */
/* $NetBSD: xdr.h,v 1.7 1995/04/29 05:28:06 cgd Exp $ */
/*
@ -118,6 +118,7 @@ typedef struct __rpc_xdr {
int32_t *(*x_inline)(struct __rpc_xdr *, unsigned int);
/* free privates of this xdr_stream */
void (*x_destroy)(struct __rpc_xdr *);
bool_t (*x_control)(struct __rpc_xdr *, int, void *);
} *x_ops;
caddr_t x_public; /* users' data */
caddr_t x_private; /* pointer to private data */


Loading…
Cancel
Save