From WSmith at ket.org Mon Jul 9 17:39:06 2012 From: WSmith at ket.org (William Smith) Date: Mon, 9 Jul 2012 15:39:06 +0000 Subject: [Udpcast] UDP-sender question Message-ID: <96ED2883DF89DA43B53A2B795C2911EB6C702B8D@CH1PRD0310MB380.namprd03.prod.outlook.com> I'm working to automate udp-sender in async mode. I need the transmission to autostart without the keypress but -nokbd doesn't appear to work in -async mode.. Am I missing something? -------------- next part -------------- An HTML attachment was scrubbed... URL: From alain at knaff.lu Tue Jul 10 11:12:30 2012 From: alain at knaff.lu (Alain Knaff) Date: Tue, 10 Jul 2012 11:12:30 +0200 Subject: [Udpcast] UDP-sender question In-Reply-To: <96ED2883DF89DA43B53A2B795C2911EB6C702B8D@CH1PRD0310MB380.namprd03.prod.outlook.com> References: <96ED2883DF89DA43B53A2B795C2911EB6C702B8D@CH1PRD0310MB380.namprd03.prod.outlook.com> Message-ID: <4FFBF1FE.9000504@knaff.lu> On 07/09/2012 05:39 PM, William Smith wrote: > I'm working to automate udp-sender in async mode. I need the transmission to autostart without the keypress but -nokbd doesn't appear to work in -async mode.. Am I missing something? > > Just tried it, and it appears to work all right: > udp-sender --async -f /bin/ls --autostart 2 --nokbd Warning: Async mode but no forward error correction Transmission may fail due to packet loss Add "--fec 8x8" to commandline Udp-sender 20120424 Using mcast address 232.168.1.11 UDP sender for /bin/ls at 192.168.1.11 on eth0 Broadcasting control to 192.168.1.255 Starting transfer: 00000029 bytes= 114 032 re-xmits=0000000 ( 0.0%) slice=1024 - 0 Transfer complete. Regards, Alain P.S. Try to use shorter lines From WSmith at ket.org Tue Jul 10 17:10:51 2012 From: WSmith at ket.org (William Smith) Date: Tue, 10 Jul 2012 15:10:51 +0000 Subject: [Udpcast] Udp-sender question Message-ID: <96ED2883DF89DA43B53A2B795C2911EB6C702DCD@CH1PRD0310MB380.namprd03.prod.outlook.com> Thanks Alain... I missed the second hypnen at the autostart flag... must use a bigger font or better glasses.. A second question.. Is the rate governor plugin not installed on the Windows version? If not what's the recommended compiler include it into udp-sender? From alain at knaff.lu Wed Jul 11 08:56:32 2012 From: alain at knaff.lu (Alain Knaff) Date: Wed, 11 Jul 2012 08:56:32 +0200 Subject: [Udpcast] Udp-sender question In-Reply-To: <96ED2883DF89DA43B53A2B795C2911EB6C702DCD@CH1PRD0310MB380.namprd03.prod.outlook.com> References: <96ED2883DF89DA43B53A2B795C2911EB6C702DCD@CH1PRD0310MB380.namprd03.prod.outlook.com> Message-ID: <4FFD23A0.3060904@knaff.lu> On 07/10/2012 05:10 PM, William Smith wrote: > Thanks Alain... > > I missed the second hypnen at the autostart flag... must use a bigger font or better glasses.. ... or use copy-paste :-) > > > A second question.. Is the rate governor plugin not installed on the Windows version? If not what's the recommended compiler include it into udp-sender? No, this is unfortunately not feasible on Windows, because this needs dynamic loading of shared objects. Regards, Alain From WSmith at ket.org Fri Jul 27 02:21:51 2012 From: WSmith at ket.org (William Smith) Date: Fri, 27 Jul 2012 00:21:51 +0000 Subject: [Udpcast] Udp-sender take 3 Message-ID: <96ED2883DF89DA43B53A2B795C2911EB702A5CC7@CH1PRD0310MB380.namprd03.prod.outlook.com> Ok got a Fedora box up and running and got the ipe.so made but have hit a snag.. When I use the --rate-governor option the system reports a bind: Address family not supported by protocol error I think its an IP4 IP6 issue but don're really know where to address it as its been about 10 years since I played in Linux. Thanks William From alain at knaff.lu Tue Jul 31 21:05:47 2012 From: alain at knaff.lu (Alain Knaff) Date: Tue, 31 Jul 2012 21:05:47 +0200 Subject: [Udpcast] Udp-sender take 3 In-Reply-To: <96ED2883DF89DA43B53A2B795C2911EB702A5CC7@CH1PRD0310MB380.namprd03.prod.outlook.com> References: <96ED2883DF89DA43B53A2B795C2911EB702A5CC7@CH1PRD0310MB380.namprd03.prod.outlook.com> Message-ID: <50182C8B.5080206@knaff.lu> On 2012-07-27 02:21, William Smith wrote: > Ok got a Fedora box up and running and got the ipe.so made but have hit a snag.. > > When I use the --rate-governor option the system reports a bind: Address family not supported by protocol error Did you supply an ip=xxx and a port=xxx value to --rategovernor? Such as --rate-governor ipe.so:ip=1.2.3.4,port=4000 If that doesn't help, try adding the following line before the bind call in ipe.c (line 218): me->recv.sin_family = AF_INET; > > I think its an IP4 IP6 issue but don're really know where to address it as its been about 10 years since I played in Linux. Currently, UDPCast only supports IPv4 > > Thanks > William > Regards, Alain