change log for rtems (2011-05-05)
rtems-vc at rtems.org
rtems-vc at rtems.org
Thu May 5 13:10:42 UTC 2011
*ralf*:
Make self-contained.
M 1.6 cpukit/librpc/include/rpc/auth.h
M 1.6 cpukit/librpc/include/rpc/auth_unix.h
M 1.13 cpukit/librpc/include/rpc/clnt.h
M 1.5 cpukit/librpc/include/rpc/clnt_soc.h
M 1.7 cpukit/librpc/include/rpc/pmap_clnt.h
M 1.6 cpukit/librpc/include/rpc/pmap_prot.h
M 1.6 cpukit/librpc/include/rpc/pmap_rmt.h
M 1.6 cpukit/librpc/include/rpc/rpc_msg.h
M 1.12 cpukit/librpc/include/rpc/svc.h
M 1.4 cpukit/librpc/include/rpc/svc_auth.h
M 1.4 cpukit/librpc/include/rpc/svc_soc.h
diff -u rtems/cpukit/librpc/include/rpc/auth.h:1.5 rtems/cpukit/librpc/include/rpc/auth.h:1.6
--- rtems/cpukit/librpc/include/rpc/auth.h:1.5 Thu Mar 24 04:33:24 2011
+++ rtems/cpukit/librpc/include/rpc/auth.h Thu May 5 07:30:09 2011
@@ -45,6 +45,7 @@
#define _RPC_AUTH_H
#include <sys/cdefs.h>
#include <sys/socket.h>
+#include <rpc/xdr.h>
#define MAX_AUTH_BYTES 400
#define MAXNETNAMELEN 255 /* maximum length of network user's name */
diff -u rtems/cpukit/librpc/include/rpc/auth_unix.h:1.5 rtems/cpukit/librpc/include/rpc/auth_unix.h:1.6
--- rtems/cpukit/librpc/include/rpc/auth_unix.h:1.5 Thu Mar 24 04:33:24 2011
+++ rtems/cpukit/librpc/include/rpc/auth_unix.h Thu May 5 07:30:09 2011
@@ -47,6 +47,7 @@
#ifndef _RPC_AUTH_UNIX_H
#define _RPC_AUTH_UNIX_H
#include <sys/cdefs.h>
+#include <rpc/auth.h> /* opaque_auth */
/* The machine name is part of a credential; it may not exceed 255 bytes */
#define MAX_MACHINE_NAME 255
diff -u rtems/cpukit/librpc/include/rpc/clnt.h:1.12 rtems/cpukit/librpc/include/rpc/clnt.h:1.13
--- rtems/cpukit/librpc/include/rpc/clnt.h:1.12 Thu Mar 24 04:33:24 2011
+++ rtems/cpukit/librpc/include/rpc/clnt.h Thu May 5 07:30:09 2011
@@ -66,6 +66,7 @@
#include <rpc/clnt_stat.h>
#include <sys/cdefs.h>
#include <sys/un.h>
+#include <rpc/auth.h> /* auth_stat */
/*
* Error info.
diff -u rtems/cpukit/librpc/include/rpc/clnt_soc.h:1.4 rtems/cpukit/librpc/include/rpc/clnt_soc.h:1.5
--- rtems/cpukit/librpc/include/rpc/clnt_soc.h:1.4 Thu Mar 24 04:33:24 2011
+++ rtems/cpukit/librpc/include/rpc/clnt_soc.h Thu May 5 07:30:09 2011
@@ -40,6 +40,8 @@
#ifndef _RPC_CLNT_SOC_H
#define _RPC_CLNT_SOC_H
+#include <time.h>
+
/* derived from clnt_soc.h 1.3 88/12/17 SMI */
/*
@@ -48,6 +50,7 @@
*/
#include <sys/cdefs.h>
+#include <rpc/clnt.h>
#define UDPMSGSIZE 8800 /* rpc imposed limit on udp msg size */
diff -u rtems/cpukit/librpc/include/rpc/pmap_clnt.h:1.6 rtems/cpukit/librpc/include/rpc/pmap_clnt.h:1.7
--- rtems/cpukit/librpc/include/rpc/pmap_clnt.h:1.6 Thu Mar 24 04:33:24 2011
+++ rtems/cpukit/librpc/include/rpc/pmap_clnt.h Thu May 5 07:30:09 2011
@@ -62,7 +62,11 @@
#ifndef _RPC_PMAPCLNT_H
#define _RPC_PMAPCLNT_H
+
#include <sys/cdefs.h>
+#include <netinet/in.h> /* struct sockaddr_in */
+#include <rpc/types.h>
+#include <rpc/xdr.h> /* xdrproc_t */
__BEGIN_DECLS
extern bool_t pmap_set (u_long, u_long, int, int);
diff -u rtems/cpukit/librpc/include/rpc/pmap_prot.h:1.5 rtems/cpukit/librpc/include/rpc/pmap_prot.h:1.6
--- rtems/cpukit/librpc/include/rpc/pmap_prot.h:1.5 Thu Mar 24 04:33:24 2011
+++ rtems/cpukit/librpc/include/rpc/pmap_prot.h Thu May 5 07:30:09 2011
@@ -71,6 +71,7 @@
#ifndef _RPC_PMAPPROT_H
#define _RPC_PMAPPROT_H
#include <sys/cdefs.h>
+#include <rpc/xdr.h>
#define PMAPPORT ((u_short)111)
#define PMAPPROG ((u_long)100000)
diff -u rtems/cpukit/librpc/include/rpc/pmap_rmt.h:1.5 rtems/cpukit/librpc/include/rpc/pmap_rmt.h:1.6
--- rtems/cpukit/librpc/include/rpc/pmap_rmt.h:1.5 Thu Mar 24 04:33:24 2011
+++ rtems/cpukit/librpc/include/rpc/pmap_rmt.h Thu May 5 07:30:09 2011
@@ -41,6 +41,7 @@
#ifndef _RPC_PMAPRMT_H
#define _RPC_PMAPRMT_H
#include <sys/cdefs.h>
+#include <rpc/xdr.h>
struct rmtcallargs {
u_long prog, vers, proc, arglen;
diff -u rtems/cpukit/librpc/include/rpc/rpc_msg.h:1.5 rtems/cpukit/librpc/include/rpc/rpc_msg.h:1.6
--- rtems/cpukit/librpc/include/rpc/rpc_msg.h:1.5 Thu May 27 02:36:24 2010
+++ rtems/cpukit/librpc/include/rpc/rpc_msg.h Thu May 5 07:30:09 2011
@@ -45,6 +45,12 @@
#ifndef _RPC_RPC_MSG_H
#define _RPC_RPC_MSG_H
+#include <rpc/types.h>
+#include <rpc/xdr.h> /* xdrproc_t */
+#include <rpc/auth.h> /* opaque_auth */
+
+struct rpc_err; /* forward */
+
#define RPC_MSG_VERSION ((u_int32_t) 2)
#define RPC_SERVICE_PORT ((u_short) 2048)
diff -u rtems/cpukit/librpc/include/rpc/svc.h:1.11 rtems/cpukit/librpc/include/rpc/svc.h:1.12
--- rtems/cpukit/librpc/include/rpc/svc.h:1.11 Thu Mar 24 04:33:24 2011
+++ rtems/cpukit/librpc/include/rpc/svc.h Thu May 5 07:30:09 2011
@@ -39,7 +39,13 @@
#ifndef _RPC_SVC_H
#define _RPC_SVC_H
+
#include <sys/cdefs.h>
+#include <rpc/types.h>
+#include <rpc/xdr.h> /* xdrproc_t */
+#include <sys/socket.h> /* socklen_t */
+#include <netinet/in.h> /* struct sockaddr_in */
+#include <rpc/auth.h> /* auth_stat */
/*
* This interface must manage two items concerning remote procedure calling:
diff -u rtems/cpukit/librpc/include/rpc/svc_auth.h:1.3 rtems/cpukit/librpc/include/rpc/svc_auth.h:1.4
--- rtems/cpukit/librpc/include/rpc/svc_auth.h:1.3 Fri Aug 1 00:32:24 2008
+++ rtems/cpukit/librpc/include/rpc/svc_auth.h Thu May 5 07:30:09 2011
@@ -40,6 +40,8 @@
#ifndef _RPC_SVCAUTH_H
#define _RPC_SVCAUTH_H
+#include <sys/cdefs.h>
+
struct rpc_msg;
struct svc_req;
diff -u rtems/cpukit/librpc/include/rpc/svc_soc.h:1.3 rtems/cpukit/librpc/include/rpc/svc_soc.h:1.4
--- rtems/cpukit/librpc/include/rpc/svc_soc.h:1.3 Thu Mar 24 04:33:24 2011
+++ rtems/cpukit/librpc/include/rpc/svc_soc.h Thu May 5 07:30:09 2011
@@ -40,6 +40,8 @@
#ifndef _RPC_SVC_SOC_H
#define _RPC_SVC_SOC_H
#include <sys/cdefs.h>
+#include <rpc/types.h>
+#include <rpc/svc.h> /* SVCXPRT */
/* #pragma ident "@(#)svc_soc.h 1.11 94/04/25 SMI" */
/* svc_soc.h 1.8 89/05/01 SMI */
*ralf*:
2011-05-05 Ralf Corsépius <ralf.corsepius at rtems.org>
* librpc/include/rpc/auth.h, librpc/include/rpc/auth_unix.h,
librpc/include/rpc/clnt.h, librpc/include/rpc/clnt_soc.h,
librpc/include/rpc/pmap_clnt.h, librpc/include/rpc/pmap_prot.h,
librpc/include/rpc/pmap_rmt.h, librpc/include/rpc/rpc_msg.h,
librpc/include/rpc/svc.h, librpc/include/rpc/svc_auth.h,
librpc/include/rpc/svc_soc.h: Make self-contained.
M 1.2807 cpukit/ChangeLog
diff -u rtems/cpukit/ChangeLog:1.2806 rtems/cpukit/ChangeLog:1.2807
--- rtems/cpukit/ChangeLog:1.2806 Wed Apr 27 12:18:58 2011
+++ rtems/cpukit/ChangeLog Thu May 5 07:30:36 2011
@@ -1,3 +1,12 @@
+2011-05-05 Ralf Corsépius <ralf.corsepius at rtems.org>
+
+ * librpc/include/rpc/auth.h, librpc/include/rpc/auth_unix.h,
+ librpc/include/rpc/clnt.h, librpc/include/rpc/clnt_soc.h,
+ librpc/include/rpc/pmap_clnt.h, librpc/include/rpc/pmap_prot.h,
+ librpc/include/rpc/pmap_rmt.h, librpc/include/rpc/rpc_msg.h,
+ librpc/include/rpc/svc.h, librpc/include/rpc/svc_auth.h,
+ librpc/include/rpc/svc_soc.h: Make self-contained.
+
2011-04-27 Jennifer Averett <Jennifer.Averett at OARcorp.com>
PR 1784
--
Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110505/c0d66b6f/attachment-0001.html>
More information about the vc
mailing list