From owner-freebsd-multimedia Thu Oct 10 03:26:23 1996 Return-Path: owner-multimedia Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA07939 for multimedia-outgoing; Thu, 10 Oct 1996 03:26:23 -0700 (PDT) Received: from rah.star-gate.com (rah.star-gate.com [204.188.121.18]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id DAA07932 for ; Thu, 10 Oct 1996 03:26:20 -0700 (PDT) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.7.6/8.7.3) with ESMTP id DAA00380; Thu, 10 Oct 1996 03:26:17 -0700 (PDT) Message-Id: <199610101026.DAA00380@rah.star-gate.com> X-Mailer: exmh version 1.6.9 8/22/96 To: Denis DeLaRoca 825-4580 (310) cc: multimedia@FREEBSD.ORG Subject: Re: GUS PnP driver release 4 In-reply-to: Your message of "Wed, 09 Oct 1996 15:48:00 PDT." <199610092248.PAA14958@freefall.freebsd.org> Date: Thu, 10 Oct 1996 03:26:17 -0700 From: Amancio Hasty Sender: owner-multimedia@FREEBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >From The Desk Of Denis DeLaRoca 825-4580 : > On Tue, 08 Oct 1996 05:37:00 -0700, > Amancio Hasty 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