home *** CD-ROM | disk | FTP | other *** search
/ ftp.muug.mb.ca / 2014.06.ftp.muug.mb.ca.tar / ftp.muug.mb.ca / pub / openh323.tar.gz / openh323.tar / openh323 / src / x224.cxx < prev    next >
C/C++ Source or Header  |  2002-09-03  |  5KB  |  208 lines

  1. /*
  2.  * x224.cxx
  3.  *
  4.  * X.224 protocol handler
  5.  *
  6.  * Open H323 Library
  7.  *
  8.  * Copyright (c) 1998-2000 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Open H323 Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Contributor(s): ______________________________________.
  25.  *
  26.  * $Log: x224.cxx,v $
  27.  * Revision 1.12  2002/09/03 06:21:01  robertj
  28.  * Cosmetic change to formatting.
  29.  *
  30.  * Revision 1.11  2002/08/05 10:03:48  robertj
  31.  * Cosmetic changes to normalise the usage of pragma interface/implementation.
  32.  *
  33.  * Revision 1.10  2002/06/27 03:11:12  robertj
  34.  * Fixed encoding bugs, thanks Greg Adams
  35.  *
  36.  * Revision 1.9  2001/02/09 05:13:56  craigs
  37.  * Added pragma implementation to (hopefully) reduce the executable image size
  38.  * under Linux
  39.  *
  40.  * Revision 1.8  2000/05/02 04:32:28  robertj
  41.  * Fixed copyright notice comment.
  42.  *
  43.  * Revision 1.7  2000/04/18 11:36:40  robertj
  44.  * Fixed bug in setting data compont size in X224 packet, thanks Wolfgang Platzer
  45.  *
  46.  * Revision 1.6  1999/11/19 01:00:07  robertj
  47.  * Fixed bug that disallowed zero length data PDU's, thanks Dave Kristol.
  48.  *
  49.  * Revision 1.5  1999/11/15 14:11:29  robertj
  50.  * Fixed trace output stream being put back after setting hex/fillchar modes.
  51.  *
  52.  * Revision 1.4  1999/09/03 14:03:54  robertj
  53.  * Fixed warning under GNU compiler.
  54.  *
  55.  * Revision 1.3  1999/08/31 13:30:20  robertj
  56.  * Added gatekeeper support.
  57.  *
  58.  * Revision 1.2  1999/06/09 05:26:20  robertj
  59.  * Major restructuring of classes.
  60.  *
  61.  * Revision 1.1  1998/12/14 09:13:48  robertj
  62.  * Initial revision
  63.  *
  64.  */
  65.  
  66. #include <ptlib.h>
  67.  
  68. #ifdef __GNUC__
  69. #pragma implementation "x224.h"
  70. #endif
  71.  
  72. #include "x224.h"
  73.  
  74. #include <ptlib/sockets.h>
  75.  
  76.  
  77. ///////////////////////////////////////////////////////////////////////////////
  78.  
  79. X224::X224()
  80. {
  81. }
  82.  
  83.  
  84. void X224::PrintOn(ostream & strm) const
  85. {
  86.   int indent = 2;
  87.   strm << setprecision(indent) << "{\n"
  88.        << setw(indent) << ' ' << "code=";
  89.   switch (GetCode()) {
  90.     case ConnectRequest :
  91.       strm << "ConnectRequest";
  92.       break;
  93.     case ConnectConfirm :
  94.       strm << "ConnectConfirm";
  95.       break;
  96.     case DataPDU :
  97.       strm << "DataPDU";
  98.   }
  99.  
  100.   char fillchar = strm.fill();
  101.  
  102.   strm << '\n'
  103.        << setw(indent) << ' ' << "data: " << data.GetSize() << " bytes\n"
  104.        << hex;
  105.  
  106.   PINDEX i = 0;
  107.   while (i < data.GetSize()) {
  108.     strm << setfill(' ') << setw(indent) << ' ' << setfill('0');
  109.     PINDEX j;
  110.     for (j = 0; j < 16; j++)
  111.       if (i+j < data.GetSize())
  112.         strm << setw(2) << (unsigned)data[i+j] << ' ';
  113.       else
  114.         strm << "   ";
  115.     strm << "  ";
  116.     for (j = 0; j < 16; j++) {
  117.       if (i+j < data.GetSize()) {
  118.         if (isprint(data[i+j]))
  119.           strm << data[i+j];
  120.         else
  121.           strm << ' ';
  122.       }
  123.     }
  124.     strm << '\n';
  125.     i += 16;
  126.   }
  127.   strm << dec << setfill(fillchar)
  128.        << setw(indent-1) << '}'
  129.        << setprecision(indent-2);
  130. }
  131.  
  132.  
  133. BOOL X224::Decode(const PBYTEArray & rawData)
  134. {
  135.   PINDEX packetLength = rawData.GetSize();
  136.  
  137.   PINDEX headerLength = rawData[0];
  138.   if (packetLength < headerLength + 1) // Not enough bytes
  139.     return FALSE;
  140.  
  141.   header.SetSize(headerLength);
  142.   memcpy(header.GetPointer(), (const BYTE *)rawData+1, headerLength);
  143.  
  144.   packetLength -= headerLength + 1;
  145.   data.SetSize(packetLength);
  146.   if (packetLength > 0)
  147.     memcpy(data.GetPointer(), (const BYTE *)rawData+headerLength+1, packetLength);
  148.  
  149.   return TRUE;
  150. }
  151.  
  152.  
  153. BOOL X224::Encode(PBYTEArray & rawData) const
  154. {
  155.   PINDEX headerLength = header.GetSize();
  156.   PINDEX dataLength = data.GetSize();
  157.  
  158.   if (!rawData.SetSize(headerLength + dataLength + 1))
  159.     return FALSE;
  160.  
  161.   rawData[0] = (BYTE)headerLength;
  162.   memcpy(rawData.GetPointer() + 1, header, headerLength);
  163.  
  164.   if (dataLength > 0)
  165.     memcpy(rawData.GetPointer()+headerLength+1, data, dataLength);
  166.  
  167.   return TRUE;
  168. }
  169.  
  170.  
  171. void X224::BuildConnectRequest()
  172. {
  173.   data.SetSize(0);
  174.   header.SetSize(6);
  175.   header[0] = ConnectRequest;
  176.   header[1] = 0;
  177.   header[2] = 0x7b;
  178.   header[3] = 2;
  179.   header[4] = 0;
  180.   header[5] = 0;
  181. }
  182.  
  183.  
  184. void X224::BuildConnectConfirm()
  185. {
  186.   data.SetSize(0);
  187.   header.SetSize(6);
  188.   header[0] = ConnectConfirm;
  189.   header[1] = 0;
  190.   header[2] = 0x7b;
  191.   header[3] = 2;
  192.   header[4] = 0;
  193.   header[5] = 0;
  194. }
  195.  
  196.  
  197. void X224::BuildData(const PBYTEArray & d)
  198. {
  199.   header.SetSize(2);
  200.   header[0] = DataPDU;
  201.   header[1] = 0x80;
  202.   data = d;
  203. }
  204.  
  205.  
  206.  
  207. /////////////////////////////////////////////////////////////////////////////
  208.