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

流媒体/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_sendrecv_recv_cxx_Version =
  51.     "$Id: test_sendrecv_recv.cxx,v 1.9 2000/12/18 23:49:27 bko Exp $";
  52. //#include <sys/time.h>
  53. #include <iostream.h>
  54. #ifndef __FreeBSD__
  55. #include <netinet/in.h>
  56. #else
  57. #include <sys/types.h>
  58. #include <netinet/in.h>
  59. //#include <resolv.h>
  60. #endif
  61. #include <netdb.h>
  62. #include <sys/socket.h>
  63. #include <string.h>
  64. #include <stdio.h>
  65. #include "errno.h"
  66. #if defined(__svr4__)
  67. typedef int socklen_t;
  68. #endif
  69. int main ()
  70. {
  71.     int socketFD;
  72.     struct sockaddr_in localAddr;
  73.     struct sockaddr_in remoteAddr;
  74.     int res1;
  75.     socketFD = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
  76. #ifdef __linux__
  77.     int buf1 = 1;
  78.     int len1 = sizeof(buf1);
  79.     struct protoent * protoent;
  80.     protoent = getprotobyname("icmp");
  81.     if (!protoent)
  82.     {
  83.         fprintf(stderr, "Cannot get icmp protocoln");
  84.     }
  85.     else
  86.     {
  87.         if (setsockopt(socketFD, protoent->p_proto, SO_BSDCOMPAT,
  88.                        (char*)&buf1, len1)
  89.                 == -1)
  90.         {
  91.             fprintf(stderr, "setsockopt error SO_BSDCOMPAT :%s",
  92.                     strerror(errno));
  93.         }
  94.     }
  95. #endif
  96.     memset((char*) &(localAddr), 0, sizeof(localAddr));
  97.     localAddr.sin_family = AF_INET;
  98.     localAddr.sin_addr.s_addr = htonl(INADDR_ANY);
  99.     localAddr.sin_port = htons(9000);
  100.     memset((char*) &(remoteAddr), 0, sizeof(remoteAddr));
  101.     remoteAddr.sin_family = AF_INET;
  102.     remoteAddr.sin_addr.s_addr = htonl(INADDR_ANY);
  103.     struct hostent* host = gethostbyname ("localhost");
  104.     memcpy((char*)&(remoteAddr).sin_addr.s_addr,
  105.            host->h_addr_list[0],  // take the first entry
  106.            host->h_length);
  107.     remoteAddr.sin_port = htons(9020);
  108.     res1 = bind( socketFD, (struct sockaddr*) & (localAddr), sizeof(localAddr));
  109.     cerr << "res1= " << res1 << endl;
  110.     int bytes = sendto( socketFD, "hello!", 7, 0,
  111.                         (struct sockaddr*) & remoteAddr, sizeof(sockaddr_in));
  112.     if (bytes == -1)
  113.     {
  114.         cout << "sendto failed: " << strerror(errno) << endl;
  115.         errno = 0;
  116.     }
  117.     cerr << "sendto" << endl;
  118.     /*
  119.         fd_set netFD;
  120.         FD_ZERO (&netFD);
  121.         FD_SET (socketFD, &netFD);
  122.         struct timeval timeout;
  123.         timeout.tv_sec = 0;
  124.         timeout.tv_usec = 300;
  125.      
  126.         int selret = 0;
  127.      
  128.         while (selret <= 0 )
  129.         {
  130.              selret = select (socketFD + 1,
  131.                              &netFD, NULL, NULL, &timeout);
  132.         }
  133.     */
  134.     char buf[256];
  135.     int bufSize = 256;
  136.     memset (buf, 0, bufSize);
  137.     struct sockaddr_in xSrc;
  138.     unsigned int lenSrc = sizeof(xSrc);
  139.     int len = recvfrom( socketFD,
  140.                         (char *)buf,
  141.                         bufSize,
  142.                         0 /*flags */,
  143.                         (struct sockaddr*) & xSrc,
  144.                         (socklen_t *) & lenSrc);
  145.     cout << "len=" << len << ", received: " << buf << endl;
  146.     if (len == -1)
  147.     {
  148.         cout << "recvfrom() failed: " << errno << " : " << strerror(errno) << endl;
  149.     }
  150.     /*    len = recvfrom( socketFD,
  151.                         (char *)buf, 
  152.                         bufSize,
  153.                         0 ,
  154.                         (struct sockaddr*)&xSrc,
  155.                         (socklen_t *) &lenSrc);
  156.      
  157.         cout << "len=" << len << ", received: " << buf << endl;
  158.         if (len == -1)
  159.         {
  160.             cout << "recvfrom() failed: " << errno << " : " << strerror(errno) << endl;
  161.         }
  162.     */
  163.     return 0;
  164. }