* client.c: Update header locations. Rename of xdr_free
authorTom Yu <tlyu@mit.edu>
Sat, 14 Feb 1998 02:29:44 +0000 (02:29 +0000)
committerTom Yu <tlyu@mit.edu>
Sat, 14 Feb 1998 02:29:44 +0000 (02:29 +0000)
* rpc_test.h: Update header locations.

* server.c: Update header locations.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10448 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/rpc/unit-test/ChangeLog
src/lib/rpc/unit-test/client.c
src/lib/rpc/unit-test/rpc_test.h
src/lib/rpc/unit-test/server.c

index 97c763df49a0d77ac01b80f2be2f2233ea6a1083..e5be82ad18ba62a3eb2d644da581d87810f45bad 100644 (file)
@@ -1,3 +1,11 @@
+Fri Feb 13 21:28:18 1998  Tom Yu  <tlyu@mit.edu>
+
+       * client.c: Update header locations.  Rename of xdr_free.
+
+       * rpc_test.h: Update header locations.
+
+       * server.c: Update header locations.
+
 Thu Feb 12 16:39:38 1998  Tom Yu  <tlyu@mit.edu>
 
        * client.c (main): Tweak the kludge variable
index 224b065dc4db92802cd4e1a2d2cf78f2e65c1a87..b0e831704e1530f42c46e4b39debde68494183df 100644 (file)
@@ -5,6 +5,13 @@
  * $Source$
  * 
  * $Log$
+ * Revision 1.16  1998/02/14 02:29:42  tlyu
+ *     * client.c: Update header locations.  Rename of xdr_free.
+ *
+ *     * rpc_test.h: Update header locations.
+ *
+ *     * server.c: Update header locations.
+ *
  * Revision 1.15  1998/02/12 21:40:16  tlyu
  *     * client.c (main): Tweak the kludge variable
  *     krb5_gss_dbg_clietn_expcreds so we can send expired creds to the
@@ -88,10 +95,10 @@ static char *rcsid = "$Header$";
 #endif
 
 #include <stdio.h>
-#include <rpc/rpc.h>
+#include <gssrpc/rpc.h>
 #include <gssapi/gssapi.h>
-#include <rpc/rpc.h>
-#include <rpc/auth_gssapi.h>
+#include <gssrpc/rpc.h>
+#include <gssrpc/auth_gssapi.h>
 #include "rpc_test.h"
 
 #define BIG_BUF 4096
@@ -211,7 +218,7 @@ main(argc, argv)
              strcmp(echo_arg, (*echo_resp) + 6) != 0)
               fprintf(stderr, "RPC_TEST_ECHO call %d response wrong: "
                       "arg = %s, resp = %s\n", echo_arg, *echo_resp);
-         xdr_free(xdr_wrapstring, echo_resp);
+         gssrpc_xdr_free(xdr_wrapstring, echo_resp);
      }
 
      /*
@@ -317,7 +324,7 @@ main(argc, argv)
                   strcmp(echo_arg, (*echo_resp) + 6) != 0)
                    fprintf(stderr,
                            "RPC_TEST_LENGTHS call %d response wrong\n");
-              xdr_free(xdr_wrapstring, echo_resp);
+              gssrpc_xdr_free(xdr_wrapstring, echo_resp);
          }
          
          /* cycle from 1 to 255 */
index 6e183e54c6dcf14268ecfd91eb2b63368dbc27ee..bd53c06f9ce7f42b47243729ad172e72ed2f77d2 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef _RPC_TEST_H_RPCGEN
 #define        _RPC_TEST_H_RPCGEN
 
-#include <rpc/rpc.h>
+#include <gssrpc/rpc.h>
 
 #define        RPC_TEST_PROG ((unsigned long)(1000001))
 #define        RPC_TEST_VERS_1 ((unsigned long)(1))
index f65379a9ad3126ada3a2e33bb38c35d84cc48434..02537ff04a52d1b35771dd57435e21f4b6b1ef57 100644 (file)
@@ -12,11 +12,11 @@ static char *rcsid = "$Header$";
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include <rpc/rpc.h>
+#include <gssrpc/rpc.h>
 #include <arpa/inet.h>  /* inet_ntoa */
 #include <gssapi/gssapi.h>
 #include <gssapi/gssapi_generic.h>
-#include <rpc/auth_gssapi.h>
+#include <gssrpc/auth_gssapi.h>
 #include <sys/param.h> /* MAXHOSTNAMELEN */
 #include "rpc_test.h"