mirror of
				https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
				synced 2023-10-10 17:16:51 +00:00 
			
		
		
		
	silenced format mismatch warning on 64bit OS
This commit is contained in:
		
							
								
								
									
										1
									
								
								HISTORY
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								HISTORY
									
									
									
									
									
								
							@@ -1,6 +1,7 @@
 | 
			
		||||
VDR Plugin 'streamdev' Revision History
 | 
			
		||||
---------------------------------------
 | 
			
		||||
 | 
			
		||||
- silenced format mismatch warning on 64bit OS
 | 
			
		||||
- now there's a common baseclass for all remuxers, make use of it
 | 
			
		||||
- added namespace to remuxers
 | 
			
		||||
- increased WRITERBUFSIZE - buffer was too small for high bandwidth content
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
/*
 | 
			
		||||
 *  $Id: componentIGMP.c,v 1.1.2.2 2009/02/13 10:39:42 schmirl Exp $
 | 
			
		||||
 *  $Id: componentIGMP.c,v 1.1.2.3 2009/07/03 21:42:08 schmirl Exp $
 | 
			
		||||
 */
 | 
			
		||||
#include <netinet/ip.h>
 | 
			
		||||
#include <netinet/igmp.h>
 | 
			
		||||
@@ -209,7 +209,7 @@ cServerConnection* cComponentIGMP::Accept(void)
 | 
			
		||||
	igmp->igmp_cksum = 0;
 | 
			
		||||
	if (chksum != inetChecksum((uint16_t *)igmp, ip_datalen))
 | 
			
		||||
	{
 | 
			
		||||
		esyslog("INVALID CHECKSUM %d %d %d %d 0x%x 0x%x", ntohs(ip->ip_len), ip_hdrlen, ip_datalen, recv_len, chksum, inetChecksum((uint16_t *)igmp, ip_datalen));
 | 
			
		||||
		esyslog("INVALID CHECKSUM %d %d %d %lu 0x%x 0x%x", (int) ntohs(ip->ip_len), ip_hdrlen, ip_datalen, (unsigned long int) recv_len, chksum, inetChecksum((uint16_t *)igmp, ip_datalen));
 | 
			
		||||
		return NULL;
 | 
			
		||||
	}
 | 
			
		||||
	logIGMP(igmp->igmp_type, ip->ip_src, ip->ip_dst, igmp->igmp_group);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user