RtspTcpClient.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 281421,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 RtspTcpClient_cxx_version =
  51.     "$Id: RtspTcpClient.cxx,v 1.7 2001/06/29 21:02:43 bko Exp $";
  52. #include <iostream.h>
  53. #include <stdio.h>
  54. #include <stdlib.h>
  55. #include <errno.h>
  56. #include <unistd.h>
  57. #include <fcntl.h>
  58. #include "NetworkAddress.h"
  59. #include "Connection.hxx"
  60. #include "Tcp_ClientSocket.hxx"
  61. #include "VNetworkException.hxx"
  62. #include "cpLog.h"
  63. int main( int argc, char* argv[] )
  64. {
  65.     cpLogSetPriority(LOG_DEBUG_STACK);
  66.     if( argc < 3 )
  67.     {
  68.         printf("Usage: %s remotehost remoteportn", argv[0] );
  69.         return 0;
  70.     }
  71.     // build remote address
  72.     string rmtHost = argv[1];
  73.     int rmtPort = atoi( argv[2] );
  74.     NetworkAddress remoteAddress( rmtHost, rmtPort );
  75.     // create TCP connection
  76.     // close connection = true
  77.     // blocking = false
  78.     cout <<"Connecting to: ";
  79.     remoteAddress.print( cout );
  80.     cout <<endl;
  81.     TcpClientSocket cSock( remoteAddress, true, false );
  82.     try
  83.     {
  84.         cSock.connect();
  85.     }
  86.     catch (VException &e)
  87.     {
  88.         cerr <<e.getDescription().c_str()<<endl;
  89.         return 0;
  90.     }
  91.     // create a buffer
  92.     cout <<"Building data bufffern";
  93.     cout <<"---------------------n";
  94.     //char* buffer = "DESCRIBE rtsp://www.vovida.com/vovida/example.wav RTSP/1.0rnCSeq: 1rnrn";
  95.     char* buffer = "SETUP rtsp://www.vovida.com/vovida/example.wav RTSP/1.0rnCSeq: 2rnTransport: rtp/avp;unicast;client_port=18074rnrn";
  96.     //char* buffer = "TEARDOWN rtsp://www.vovida.com/vovida/example.wav RTSP/1.0rnSession: 12345rnCSeq: 6rnrn";
  97.     int len = strlen(buffer);
  98.     cout <<buffer<<endl;
  99.     cout <<"---------------------n";
  100.     // write buffer to TCP connection
  101.     cout <<"Attemping to write datan";
  102.     try
  103.     {
  104.         cSock.getConn().writeData( buffer, len );
  105.     }
  106.     catch( VNetworkException& e )
  107.     {
  108.         cerr <<e.getDescription()<<endl;
  109.         return 0;
  110.     }
  111.     // write buffer to TCP connection
  112.     cout <<"Attemping to write datan";
  113.     try
  114.     {
  115.         cSock.getConn().writeData( buffer, len );
  116.     }
  117.     catch( VNetworkException& e )
  118.     {
  119.         cerr <<e.getDescription()<<endl;
  120.         return 0;
  121.     }
  122.     // read reply from TCP connection
  123.     string dRead;
  124.     char rdbuf[81];
  125.     int nRead = 0;
  126.     cout <<"Waiting for replyn";
  127.     fcntl(cSock.getConn().getConnId(), F_SETFL, O_NONBLOCK);
  128.     while( cSock.getConn().readLine( rdbuf, (sizeof(rdbuf) - 1), nRead ) )
  129.     {
  130.         rdbuf[nRead] = '';
  131.         dRead += rdbuf;
  132.         rdbuf[0] = '';
  133.         nRead = 0;
  134.         if( !cSock.getConn().isReadReady() )
  135.             break;
  136.     }
  137.     rdbuf[nRead] = '';
  138.     dRead += rdbuf;
  139.     cout <<"Server responded: n"<<dRead<<endl;;
  140.     cout <<"Sleeping 5 secn";
  141.     sleep( 5 );
  142.     cout <<"Closing connectionn";
  143.     cSock.close();
  144.     cout <<"Sleeping 20 secn";
  145.     sleep( 20 );
  146.     cout <<"Donen";
  147.     return 0;
  148. }
  149. /* Local Variables: */
  150. /* c-file-style: "stroustrup" */
  151. /* indent-tabs-mode: nil */
  152. /* c-file-offsets: ((access-label . -) (inclass . ++)) */
  153. /* c-basic-offset: 4 */
  154. /* End: */