You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ar...@locus.apache.org on 2000/09/07 01:10:39 UTC

cvs commit: xml-xerces/c/src/util/Platforms/OS390 OS390PlatformUtils.cpp

aruna1      00/09/06 16:10:39

  Modified:    c/src/util/Platforms/OS390 OS390PlatformUtils.cpp
  Log:
  OS390 sockets related changes
  
  Revision  Changes    Path
  1.14      +10 -0     xml-xerces/c/src/util/Platforms/OS390/OS390PlatformUtils.cpp
  
  Index: OS390PlatformUtils.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/Platforms/OS390/OS390PlatformUtils.cpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- OS390PlatformUtils.cpp	2000/07/25 22:30:24	1.13
  +++ OS390PlatformUtils.cpp	2000/09/06 23:10:38	1.14
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: OS390PlatformUtils.cpp,v $
  + * Revision 1.14  2000/09/06 23:10:38  aruna1
  + * OS390 sockets related changes
  + *
    * Revision 1.13  2000/07/25 22:30:24  aruna1
    * Char definitions in XMLUni moved to XMLUniDefs
    *
  @@ -140,6 +143,9 @@
   #else   // use In-memory message loader
       #include <util/MsgLoaders/InMemory/InMemMsgLoader.hpp>   //hint for the user to include this file.
   #endif
  +#if defined (XML_USE_NETACCESSOR_SOCKET)
  +    #include <util/NetAccessors/Socket/SocketNetAccessor.hpp>
  +#endif
   
   
   // ---------------------------------------------------------------------------
  @@ -177,7 +183,11 @@
   
   XMLNetAccessor* XMLPlatformUtils::makeNetAccessor()
   {
  +#if defined (XML_USE_NETACCESSOR_SOCKET)
  +    return new SocketNetAccessor();
  +#else
       return 0;
  +#endif
   }
   
   // ---------------------------------------------------------------------------