Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Oct 1996 03:26:17 -0700
From:      Amancio Hasty <hasty@rah.star-gate.com>
To:        Denis DeLaRoca 825-4580 (310) <CSP1DWD@MVS.OAC.UCLA.EDU>
Cc:        multimedia@FREEBSD.ORG
Subject:   Re: GUS PnP driver release 4 
Message-ID:  <199610101026.DAA00380@rah.star-gate.com>
In-Reply-To: Your message of "Wed, 09 Oct 1996 15:48:00 PDT." <199610092248.PAA14958@freefall.freebsd.org> 

next in thread | previous in thread | raw e-mail | index | archive | help
>From The Desk Of Denis DeLaRoca 825-4580 :
> On Tue, 08 Oct 1996 05:37:00 -0700,
>    Amancio Hasty <hasty@RAH.STAR-GATE.COM> said:
> >
> > 2.0	I will release another version of vat in about a day or so
> > 	after I get chance to test it further.
> 
> More testing with vat4.0b1a and guspnp4. Switching audio among
> active vats doesn't work. When you switch focus to an alternate
> vat it fails to grab the audio device and you end up with repeated
> diagnostic messages

This is due to vat in group-ip.cc not setting the local ip multicast loop
option. If you look in the code you will see 

 #ifdef ultrix
                ttl = 1;
                if (setsockopt(ssock_, IPPROTO_IP, IP_MULTICAST_LOOP,
                                &ttl, 1) < 0) {
                        perror("GroupIPC: IP_MULTICAST_LOOP");
                        exit(1);
                }
 #endif

Just change the #ifdef to 
 #if defined(ultrix) || defined(__FreeBSD__)

	Cheers,
	Amancio




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199610101026.DAA00380>