proxyudp-audiocodes
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:9k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #!/usr/bin/perl
  2. # ====================================================================
  3. # The Vovida Software License, Version 1.0 
  4. # Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. # 1. Redistributions of source code must retain the above copyright
  9. #    notice, this list of conditions and the following disclaimer.
  10. # 2. Redistributions in binary form must reproduce the above copyright
  11. #    notice, this list of conditions and the following disclaimer in
  12. #    the documentation and/or other materials provided with the
  13. #    distribution.
  14. # 3. The names "VOCAL", "Vovida Open Communication Application Library",
  15. #    and "Vovida Open Communication Application Library (VOCAL)" must
  16. #    not be used to endorse or promote products derived from this
  17. #    software without prior written permission. For written
  18. #    permission, please contact vocal@vovida.org.
  19. # 4. Products derived from this software may not be called "VOCAL", nor
  20. #    may "VOCAL" appear in their name, without prior written
  21. #    permission of Vovida Networks, Inc.
  22. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  23. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  24. # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  25. # NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  26. # NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  27. # IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  28. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  29. # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  30. # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  31. # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  32. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  33. # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  34. # DAMAGE.
  35. # ====================================================================
  36. # This software consists of voluntary contributions made by Vovida
  37. # Networks, Inc. and many individuals on behalf of Vovida Networks,
  38. # Inc.  For more information on Vovida Networks, Inc., please see
  39. # <http://www.vovida.org/>.
  40. use Socket;
  41. require "getopts.pl";
  42. &Getopts("n:");
  43. $number = $opt_n;
  44. if($#ARGV < 1) {
  45.   print "Usage:n";
  46.   print "$0 a:b:c d:e:f gn";
  47.   print "where,n";
  48.   print "a = agent host e.g. 192.168.5.1n";
  49.   print "b = gateway sends to this port e.g. 2427n";
  50.   print "c = agent listens to this port e.g. 5010n";
  51.   print "d = gateway host e.g. 192.168.5.171n";
  52.   print "e = agent sends to this port e.g. 5050n";
  53.   print "f = gateway listens to this port e.g. 2427n";
  54.   print "g = filter filen";
  55.   print "e.g.n$0 192.168.22.17:2427:5011 192.168.5.122:5051:2427n";
  56.   exit(-1);
  57. }
  58. open(F, $ARGV[0]);
  59. while(<F>) {
  60.   chomp;
  61.   if(/^listener/) {
  62.     #listener  name        port     filter            default-sender
  63.     ($file, $in_name, $in_port, $in_filter_name, $in_default_sender) = split(/s+/);
  64.     &mksocket($in_port, "IN_$in_name");
  65.     $in_port{$in_name} = $in_port;
  66.     $in_filter{$in_name} = $in_filter_name;
  67.     $in_sender{$in_name} = $in_default_sender;
  68.     
  69.   } elsif(/^sender/) {
  70.     #sender   sender-name   destination-ip   destination-port   listener-name
  71.     ($file, $in_name, $in_port, $in_filter_name, $in_default_sender) = split(/s+/);
  72.   }
  73. }
  74. close(F);
  75. ($host1, $local_port1, $remote_port1) = split(/:/, $ARGV[0]);
  76. ($host2, $local_port2, $remote_port2) = split(/:/, $ARGV[1]);
  77. &mksocket($local_port1, S1);
  78. &mksocket($local_port2, S2);
  79. ($name,$aliases,$type,$len,$host1_addr) = gethostbyname($host1);
  80. ($name,$aliases,$type,$len,$host2_addr) = gethostbyname($host2);
  81. $them_S1 = pack($sockaddr,PF_INET, $remote_port1, $host1_addr);
  82. $them_S2 = pack($sockaddr,PF_INET, $remote_port2, $host2_addr);
  83. # ($name,$aliases,$type,$len,$host3_addr) = gethostbyname("192.168.5.1");
  84. # $them_agent1 = pack($sockaddr,PF_INET, "5012", $host3_addr);
  85. # $them_agent2= pack($sockaddr,PF_INET, "5011", $host3_addr);
  86. sub mksocket {
  87.   local($port, $socket) = @_;
  88.   
  89.   $sockaddr = "S n a4 x8";($name,$aliases,$proto) = getprotobyname('udp');
  90.   chomp($hostname  = `hostname`);
  91.   #$hostname  = "192.168.10.12";
  92.   
  93.   ($name,$aliases,$type,$len,$myaddr) = gethostbyname($hostname);
  94.   
  95.   $me   = pack($sockaddr,PF_INET, $port, $myaddr);
  96.   
  97.   print "myaddr: $myaddrn";
  98.   print "port: $portn";
  99.   
  100.   socket($socket, PF_INET, SOCK_DGRAM, $proto) || die $!;
  101.   bind($socket , $me) || die "died with port $port $!";
  102.   
  103. }
  104. while(1) {
  105.   $rin = '';
  106.   vec($rin, fileno(S1), 1) = 1;
  107.   vec($rin, fileno(S2), 1) = 1;
  108.   #        @bits = split(//, unpack("b*", $rin));
  109.   # if($bits[fileno(S)]) {
  110.   # print "got Sn";
  111.   # }
  112.   if(select($rin, undef, undef, undef)) {
  113.     @bits = split(//, unpack("b*", $rin));
  114.     undef($data);
  115.     undef($new_data);
  116.     if($bits[fileno(S1)]) {
  117.       print "got S1n";
  118.       $data = "";
  119.       $his_address = recv(S1, $data, 60000, 0);
  120.       if($data) {
  121. print "-----------------------------n";
  122. print "$data";
  123. print "-----------------------------n";
  124.         $new_data = &rewrite_S1($data);
  125.         if($new_data) {
  126.   print "$new_data";
  127.   print "-----------------------------n";
  128.   defined(send(S2,$new_data,0,$them_S1)) || die $!;
  129.         }
  130.       }
  131.     } elsif($bits[fileno(S2)]) {
  132.       print "got S2n";
  133.       $data = "";
  134.       $his_address = recv(S2, $data, 60000, 0);
  135.       if($data) {
  136. print "-----------------------------n";
  137. print "$data";
  138. print "-----------------------------n";
  139.         $new_data = &rewrite_S2($data);
  140.         if($new_data) {
  141.   print "$new_data";
  142.   print "-----------------------------n";
  143.   defined(send(S1,$new_data,0,$them_S2)) || die $!;
  144.         }
  145.       }
  146.     }
  147.   }
  148. }
  149. #$them = pack($sockaddr,PF_INET, $port, $myaddr);
  150. #send(S,$msg,0,$them) || die $!;
  151. sub renumber_S2 {
  152.   local($_) = $_[0];
  153.   
  154.   s/^([0-9]*)s([0-9]*)s/$1 $map{$2} /;
  155.   $map{$number} = $2;
  156.   
  157.   return $_;
  158. }
  159. sub renumber_S1 {
  160.   local($_) = $_[0];
  161.   if(s/^([a-zA-Z]*)s([0-9]*)s/$1 $number /) {
  162.     $map{$number} = $2;
  163.     $number++;
  164.   }
  165.   return $_;
  166. }
  167. # incoming messages to the call agent
  168. sub rewrite_S1
  169. {
  170.   local($_) = $_[0];
  171. #  if(y///d) {
  172. #    print "killed \0!n";
  173. #  }
  174.   # pretend a wild card is actually for the first endpoint
  175. #  s/*@ubr/aaln/0@ubr/;
  176.   # Use _ instead of / due to parsing problems (also change ubr924 to galileo)
  177. #  s/*@ubr924/aaln_0@galileo/;
  178. #  s/aaln/0@ubr924/aaln_0@galileo/g;
  179. #  s/aaln/([0-1])@ubr924/aaln_1@galileo/g;
  180.   # split up dialed digits
  181. #  s/O: D/9/o: d/5,d/0,d/0,d//;
  182.   s/O: D/9([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])/o: d/1,d/2,d/3,d/4,d/5,d/6,d/7/;
  183.   s/O: D/([0-9])([0-9])([0-9])([0-9])/o: d/1,d/2,d/3,d/4/;
  184.   s/ACgw0@[192.168.5.122]/6244@192.168.22.17/g;
  185.   s/ACgw1@[192.168.5.122]/5501@192.168.22.17/g;
  186.   s/ACgw2@[192.168.5.122]/5502@192.168.22.17/g;
  187.   s/ACgw3@[192.168.5.122]/5503@192.168.22.17/g;
  188.   s/ACgw4@[192.168.5.122]/5504@192.168.22.17/g;
  189.   s/ACgw5@[192.168.5.122]/5505@192.168.22.17/g;
  190.   s/ACgw6@[192.168.5.122]/5506@192.168.22.17/g;
  191.   s/ACgw7@[192.168.5.122]/5507@192.168.22.17/g;  
  192.  return $_;
  193. }
  194. # outgoing messages to the MGCP gateways
  195. sub rewrite_S2 
  196. {
  197.   local($_) = $_[0];
  198.   if(y///d)
  199.   {
  200.     print "killed \0!n";
  201.   }
  202. #  s/#[0-9]/5/;
  203. #  s/[0-9]/x/g;
  204. #  s/[2-9]/9/;
  205.   # Change _ back to /   (also change galileo back to ubr924)
  206. #  s/aaln_([0-1])@galileo/aaln/1@ubr924/g;
  207.   # change the use of wildcard x to explicit [0-9#*T], but it T needed here?
  208.   s/d/x(d)/d/[0-9#*T](D)/;
  209.   s/rnrn/rn/g;
  210.   if (/CRCX/)
  211.   {
  212.       if (!/v=0/)
  213.       {
  214.           s/M: sendrecv/M: recvonly/;
  215.       }
  216.       s/v=0/rnv=0/;
  217.       s/L: e:on/X: 1000rnR: l/hu(n)rnL: a:G711Mulaw, e:on/;
  218.   }
  219.   if (/RQNT/)
  220.   {
  221. #      s/R: l/hu(n),l/hf(n),d/x(n)/R: d/x(n)/;
  222.   }
  223.   if (/MDCX/)
  224.   {
  225.       s/v=0/rnv=0/;
  226.   }
  227. s/o=- 0 0 IN IP4 192.168.22.17rns=Vovida Gatewayrn//;
  228. s/o=- [0-9]+ [0-9]+ IN IP4 192.168.5.122rn//;
  229. s/s=-rn//;
  230. #s/o=CiscoSystemsSIP-GW-UserAgent [0-9][0-9][0-9][0-9] [0-9][0-9][0-9][0-9] IN IP4 192.168.6.210rns=SIP Callrn//;
  231. s/o=CiscoSystemsSIP-GW-UserAgent [0-9]+ [0-9]+ IN IP4 192.168.6.210rns=SIP Callrn//;
  232.  #changes here 
  233.  #  tr/r//d;
  234.   s/6244@192.168.22.17/ACgw0@[192.168.5.122]/g;
  235.   s/5501@192.168.22.17/ACgw1@[192.168.5.122]/g;
  236.   s/5502@192.168.22.17/ACgw2@[192.168.5.122]/g;
  237.   s/5503@192.168.22.17/ACgw3@[192.168.5.122]/g;
  238.   s/5504@192.168.22.17/ACgw4@[192.168.5.122]/g;
  239.   s/5505@192.168.22.17/ACgw5@[192.168.5.122]/g;
  240.   s/5506@192.168.22.17/ACgw6@[192.168.5.122]/g;
  241.   s/5507@192.168.22.17/ACgw7@[192.168.5.122]/g;
  242.   s/IN IP4 hera.private.vovida.com/IN IP4 192.168.22.17/g;
  243.   s/IN IP4 darwin.private.vovida.com/IN IP4 192.168.5.18/g;
  244.   return $_;
  245. }