test_networkaddr.cxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. static const char* const test_networkaddr_cxx_Version =
  51.     "$Id: test_networkaddr.cxx,v 1.11 2000/12/18 23:49:27 bko Exp $";
  52. #include "global.h"
  53. #include "NetworkAddress.h"
  54. #include "cpLog.h"
  55. int main(void)
  56. {
  57.     //    cpLogSetPriority(LOG_DEBUG);
  58.     NetworkAddress addr1("192.168.5.11", 8080);
  59.     NetworkAddress addr2("192.168.22.15", 8989);
  60.     struct sockaddr socka;
  61.     struct sockaddr socka2;
  62.     addr1.getSockAddr(socka);
  63.     addr2.getSockAddr(socka2);
  64.     cout << socka.sa_family << endl;
  65.     for (int i = 0; i < 14; i++)
  66.         cout << (int) socka.sa_data[i] << " " ;
  67.     cout << endl;
  68.     cout << socka2.sa_family << endl;
  69.     for (int j = 0; j < 14; j++)
  70.         cout << (int) socka2.sa_data[j] << " " ;
  71.     cout << endl;
  72.     /*
  73.         NetworkAddress addr2("");
  74.         NetworkAddress addr3("boo:8080");
  75.         NetworkAddress addr4("192.168.5.11:8080");
  76.      
  77.         cout << "NetworkAddress addr1("192.168.5.11", 8080);" << endl;
  78.         cout << "NetworkAddress addr2("boo", 8080);" << endl;
  79.         cout << "NetworkAddress addr3("boo:8080");" << endl;
  80.         cout << "NetworkAddress addr4("192.168.5.11:8080");" << endl << endl;
  81.      
  82.         cout << "addr1.getHostName()= " << addr1.getHostName() << endl;
  83.         cout << "addr2.getHostName()= " << addr2.getHostName() << endl;
  84.         cout << "addr3.getHostName()= " << addr3.getHostName() << endl;
  85.         cout << "addr4.getHostName()= " << addr4.getHostName() << endl << endl;
  86.      
  87.         cout << "addr1.getIpName()= " << addr1.getIpName() << endl;
  88.         cout << "addr2.getIpName()= " << addr2.getIpName() << endl;
  89.         cout << "addr3.getIpName()= " << addr3.getIpName() << endl;
  90.         cout << "addr4.getIpName()= " << addr4.getIpName() << endl << endl;
  91.      
  92.         cout << "addr1.getIp4Address()= " << dec << addr1.getIp4Address()
  93.              << " HEX=" << hex << addr1.getIp4Address() << endl;
  94.         cout << "addr2.getIp4Address()= " << dec << addr2.getIp4Address() 
  95.              << " HEX=" << hex << addr2.getIp4Address() << endl;
  96.         cout << "addr3.getIp4Address()= " << dec << addr3.getIp4Address() 
  97.              << " HEX=" << hex << addr3.getIp4Address() << endl;
  98.         cout << "addr4.getIp4Address()= " << dec << addr4.getIp4Address() 
  99.              << " HEX=" << hex << addr4.getIp4Address() << endl << endl;
  100.      
  101.         cout << dec;
  102.      
  103.         cout << "addr1.getPort()= " << addr1.getPort() << endl;
  104.         cout << "addr2.getPort()= " << addr2.getPort() << endl;
  105.         cout << "addr3.getPort()= " << addr3.getPort() << endl;
  106.         cout << "addr4.getPort()= " << addr4.getPort() << endl << endl;
  107.      
  108.         cout << "string(addr1)= " << string(addr1) << endl;
  109.         cout << "string(addr2)= " << string(addr2) << endl;
  110.         cout << "string(addr3)= " << string(addr3) << endl;
  111.         cout << "string(addr4)= " << string(addr4) << endl << endl;
  112.      
  113.         cout << "ostream addr1= " << addr1 << endl;
  114.         cout << "ostream addr2= " << addr2 << endl;
  115.         cout << "ostream addr3= " << addr3 << endl;
  116.         cout << "ostream addr4= " << addr4 << endl << endl;
  117.     */
  118. }