mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	https://origsvn.digium.com/svn/asterisk/trunk ................ r209132 | mmichelson | 2009-07-27 12:50:04 -0500 (Mon, 27 Jul 2009) | 24 lines Merged revisions 209131 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r209131 | mmichelson | 2009-07-27 12:44:06 -0500 (Mon, 27 Jul 2009) | 18 lines Allow for UDPTL to use only even-numbered ports if desired. There are some VoIP providers out there that will not accept SDP offers with odd numbered UDPTL ports. While it is my personal opinion that these VoIP providers are misinterpreting RFC 2327, it really is not a big deal to play along with their silly little games. Of course, since restricting UDPTL ports to only even numbers reduces the range of available ports by half, so the option to use only even port numbers is off by default. A user can enable the behavior by setting use_even_ports=yes in udptl.conf. (closes issue #15182) Reported by: CGMChris Patches: 15182.patch uploaded by mmichelson (license 60) Tested by: CGMChris ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@209134 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			36 lines
		
	
	
		
			822 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			822 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ;
 | |
| ; UDPTL Configuration (UDPTL is one of the transports for T.38)
 | |
| ;
 | |
| [general]
 | |
| ;
 | |
| ; UDPTL start and UDPTL end configure start and end addresses
 | |
| ;
 | |
| udptlstart=4000
 | |
| udptlend=4999
 | |
| ;
 | |
| ; Whether to enable or disable UDP checksums on UDPTL traffic
 | |
| ;
 | |
| ;udptlchecksums=no
 | |
| ;
 | |
| ; The error correction type to be sent
 | |
| ;
 | |
| T38FaxUdpEC = t38UDPFEC
 | |
| ;T38FaxUdpEC = t38UDPRedundancy
 | |
| ;
 | |
| ; The maximum length of a UDPTL packet
 | |
| ;
 | |
| T38FaxMaxDatagram = 400
 | |
| ;
 | |
| ; The number of error correction entries in a UDPTL packet
 | |
| ;
 | |
| udptlfecentries = 3
 | |
| ;
 | |
| ; The span over which parity is calculated for FEC in a UDPTL packet
 | |
| ;
 | |
| udptlfecspan = 3
 | |
| ;
 | |
| ; Some VoIP providers will only accept an offer with an even-numbered
 | |
| ; UDPTL port. Set this option so that Asterisk will only attempt to use
 | |
| ; even-numbered ports when negotiating T.38. Default is no.
 | |
| use_even_ports = no
 |