OSSP CVS Repository

ossp - Check-in [4271]
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [Patchset]  [Tagging/Branching

Check-in Number: 4271
Date: 2001-Aug-02 10:10:12 (local)
2001-Aug-02 08:10:12 (UTC)
User:simons
Branch:
Comment: Include xds.h, not internal.h!
Tickets:
Inspections:
Files:
ossp-pkg/xds/xdr-decode-double.c      1.2->removed
ossp-pkg/xds/xdr-decode-int32.c      1.4->removed
ossp-pkg/xds/xdr-decode-int64.c      1.4->removed
ossp-pkg/xds/xdr-decode-octetstream.c      1.4->removed
ossp-pkg/xds/xdr-decode-string.c      1.5 -> 1.6     1 inserted, 1 deleted
ossp-pkg/xds/xdr-decode-uint32.c      1.4->removed
ossp-pkg/xds/xdr-decode-uint64.c      1.4->removed
ossp-pkg/xds/xdr-encode-double.c      1.2->removed
ossp-pkg/xds/xdr-encode-int32.c      1.4->removed
ossp-pkg/xds/xdr-encode-int64.c      1.4->removed
ossp-pkg/xds/xdr-encode-octetstream.c      1.5->removed
ossp-pkg/xds/xdr-encode-string.c      1.6->removed
ossp-pkg/xds/xdr-encode-uint32.c      1.4->removed
ossp-pkg/xds/xdr-encode-uint64.c      1.4->removed
ossp-pkg/xds/xml-decode-begin.c      1.2->removed
ossp-pkg/xds/xml-decode-double.c      1.4->removed
ossp-pkg/xds/xml-decode-end.c      1.2->removed
ossp-pkg/xds/xml-decode-int32.c      1.3 -> 1.4     1 inserted, 1 deleted
ossp-pkg/xds/xml-decode-int64.c      1.4 -> 1.5     1 inserted, 1 deleted
ossp-pkg/xds/xml-decode-uint32.c      1.3 -> 1.4     1 inserted, 1 deleted
ossp-pkg/xds/xml-decode-uint64.c      1.4 -> 1.5     1 inserted, 1 deleted
ossp-pkg/xds/xml-encode-begin.c      1.2->removed
ossp-pkg/xds/xml-encode-double.c      1.4->removed
ossp-pkg/xds/xml-encode-end.c      1.2->removed
ossp-pkg/xds/xml-encode-int32.c      1.4->removed
ossp-pkg/xds/xml-encode-int64.c      1.4->removed
ossp-pkg/xds/xml-encode-uint32.c      1.3->removed
ossp-pkg/xds/xml-encode-uint64.c      1.4->removed

ossp-pkg/xds/xdr-decode-double.c 1.2 -> 1.3

--- xdr-decode-double.c  2001/08/01 15:25:47     1.2
+++ xdr-decode-double.c  2001/08/02 08:10:13     1.3
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xdr_decode_double(xds_t* xds, void* engine_context,
                       void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-decode-int32.c 1.4 -> 1.5

--- xdr-decode-int32.c   2001/08/01 15:25:47     1.4
+++ xdr-decode-int32.c   2001/08/02 08:10:13     1.5
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xdr_decode_int32(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-decode-int64.c 1.4 -> 1.5

--- xdr-decode-int64.c   2001/08/01 15:25:47     1.4
+++ xdr-decode-int64.c   2001/08/02 08:10:13     1.5
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xdr_decode_int64(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-decode-octetstream.c 1.4 -> 1.5

--- xdr-decode-octetstream.c     2001/08/01 15:25:47     1.4
+++ xdr-decode-octetstream.c     2001/08/02 08:10:13     1.5
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 int xdr_decode_octetstream(xds_t* xds, void* engine_context,
                            void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-decode-string.c 1.5 -> 1.6

--- xdr-decode-string.c  2001/08/01 15:25:47     1.5
+++ xdr-decode-string.c  2001/08/02 08:10:13     1.6
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 int xdr_decode_string(xds_t* xds, void* engine_context,
                       void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-decode-uint32.c 1.4 -> 1.5

--- xdr-decode-uint32.c  2001/08/01 15:25:47     1.4
+++ xdr-decode-uint32.c  2001/08/02 08:10:13     1.5
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xdr_decode_uint32(xds_t* xds, void* engine_context,
                       void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-decode-uint64.c 1.4 -> 1.5

--- xdr-decode-uint64.c  2001/08/01 15:25:47     1.4
+++ xdr-decode-uint64.c  2001/08/02 08:10:13     1.5
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xdr_decode_uint64(xds_t* xds, void* engine_context,
                       void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-encode-double.c 1.2 -> 1.3

--- xdr-encode-double.c  2001/08/01 15:25:47     1.2
+++ xdr-encode-double.c  2001/08/02 08:10:13     1.3
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xdr_encode_double(xds_t* xds, void* engine_context,
                       void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-encode-int32.c 1.4 -> 1.5

--- xdr-encode-int32.c   2001/08/01 15:25:47     1.4
+++ xdr-encode-int32.c   2001/08/02 08:10:13     1.5
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xdr_encode_int32(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-encode-int64.c 1.4 -> 1.5

--- xdr-encode-int64.c   2001/08/01 15:25:47     1.4
+++ xdr-encode-int64.c   2001/08/02 08:10:13     1.5
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xdr_encode_int64(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-encode-octetstream.c 1.5 -> 1.6

--- xdr-encode-octetstream.c     2001/08/01 15:25:47     1.5
+++ xdr-encode-octetstream.c     2001/08/02 08:10:13     1.6
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 int xdr_encode_octetstream(xds_t* xds, void* engine_context,
                            void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-encode-string.c 1.6 -> 1.7

--- xdr-encode-string.c  2001/08/01 15:25:47     1.6
+++ xdr-encode-string.c  2001/08/02 08:10:13     1.7
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 int xdr_encode_string(xds_t* xds, void* engine_context,
                       void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-encode-uint32.c 1.4 -> 1.5

--- xdr-encode-uint32.c  2001/08/01 15:25:47     1.4
+++ xdr-encode-uint32.c  2001/08/02 08:10:13     1.5
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xdr_encode_uint32(xds_t* xds, void* engine_context,
                       void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xdr-encode-uint64.c 1.4 -> 1.5

--- xdr-encode-uint64.c  2001/08/01 15:25:47     1.4
+++ xdr-encode-uint64.c  2001/08/02 08:10:13     1.5
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xdr_encode_uint64(xds_t* xds, void* engine_context,
                       void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-decode-begin.c 1.2 -> 1.3

--- xml-decode-begin.c   2001/08/01 15:25:47     1.2
+++ xml-decode-begin.c   2001/08/02 08:10:12     1.3
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 int xml_decode_begin(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-decode-double.c 1.4 -> 1.5

--- xml-decode-double.c  2001/08/01 15:25:47     1.4
+++ xml-decode-double.c  2001/08/02 08:10:13     1.5
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xml_decode_double(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-decode-end.c 1.2 -> 1.3

--- xml-decode-end.c     2001/08/01 15:25:47     1.2
+++ xml-decode-end.c     2001/08/02 08:10:13     1.3
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 int xml_decode_end(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-decode-int32.c 1.3 -> 1.4

--- xml-decode-int32.c   2001/08/01 15:25:47     1.3
+++ xml-decode-int32.c   2001/08/02 08:10:13     1.4
@@ -27,7 +27,7 @@
 
 #include <string.h>
 #include <ctype.h>
-#include "internal.h"
+#include "xds.h"
 
 int xml_decode_int32(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-decode-int64.c 1.4 -> 1.5

--- xml-decode-int64.c   2001/08/01 15:25:47     1.4
+++ xml-decode-int64.c   2001/08/02 08:10:13     1.5
@@ -27,7 +27,7 @@
 
 #include <string.h>
 #include <ctype.h>
-#include "internal.h"
+#include "xds.h"
 
 int xml_decode_int64(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-decode-uint32.c 1.3 -> 1.4

--- xml-decode-uint32.c  2001/08/01 15:25:47     1.3
+++ xml-decode-uint32.c  2001/08/02 08:10:13     1.4
@@ -27,7 +27,7 @@
 
 #include <string.h>
 #include <ctype.h>
-#include "internal.h"
+#include "xds.h"
 
 int xml_decode_uint32(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-decode-uint64.c 1.4 -> 1.5

--- xml-decode-uint64.c  2001/08/01 15:25:47     1.4
+++ xml-decode-uint64.c  2001/08/02 08:10:13     1.5
@@ -27,7 +27,7 @@
 
 #include <string.h>
 #include <ctype.h>
-#include "internal.h"
+#include "xds.h"
 
 int xml_decode_uint64(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-encode-begin.c 1.2 -> 1.3

--- xml-encode-begin.c   2001/08/01 15:25:47     1.2
+++ xml-encode-begin.c   2001/08/02 08:10:13     1.3
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 const char xds_xml_begin_text[] = \
     "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\">\n" \


ossp-pkg/xds/xml-encode-double.c 1.4 -> 1.5

--- xml-encode-double.c  2001/08/01 15:25:47     1.4
+++ xml-encode-double.c  2001/08/02 08:10:13     1.5
@@ -25,7 +25,7 @@
    SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "xds.h"
 
 int xml_encode_double(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-encode-end.c 1.2 -> 1.3

--- xml-encode-end.c     2001/08/01 15:25:47     1.2
+++ xml-encode-end.c     2001/08/02 08:10:13     1.3
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 const char xds_xml_end_text[] = "</xds>\n";
 


ossp-pkg/xds/xml-encode-int32.c 1.4 -> 1.5

--- xml-encode-int32.c   2001/08/01 15:25:47     1.4
+++ xml-encode-int32.c   2001/08/02 08:10:13     1.5
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 int xml_encode_int32(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-encode-int64.c 1.4 -> 1.5

--- xml-encode-int64.c   2001/08/01 15:25:47     1.4
+++ xml-encode-int64.c   2001/08/02 08:10:13     1.5
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 int xml_encode_int64(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-encode-uint32.c 1.3 -> 1.4

--- xml-encode-uint32.c  2001/08/01 15:25:47     1.3
+++ xml-encode-uint32.c  2001/08/02 08:10:13     1.4
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 int xml_encode_uint32(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,


ossp-pkg/xds/xml-encode-uint64.c 1.4 -> 1.5

--- xml-encode-uint64.c  2001/08/01 15:25:47     1.4
+++ xml-encode-uint64.c  2001/08/02 08:10:13     1.5
@@ -26,7 +26,7 @@
 */
 
 #include <string.h>
-#include "internal.h"
+#include "xds.h"
 
 int xml_encode_uint64(xds_t* xds, void* engine_context,
                      void* buffer, size_t buffer_size, size_t* used_buffer_size,

CVSTrac 2.0.1