Displaying 20 results from an estimated 1000 matches similar to: "IPv4/v6 socket problem on BSD"
2002 Mar 23
2
RSYNC 2.5.4 and FreeBSD RELENG_4 Problems [HELP]
I use FreeBSD RELENG_4
with
rsync version 2.5.4 protocol version 26
Copyright (C) 1996-2002 by Andrew Tridgell and others
<http://rsync.samba.org/>
Capabilities: 64-bit files, socketpairs, hard links, symlinks, batchfiles, IPv6,
32-bit system inums, 64-bit internal inums
and when I try to transfer file I get
rsync: connection unexpectedly closed (5994 bytes read so
2004 Feb 19
2
traffic normalizer for ipfw?
Hi there,
Is there some way to configure ipfw to do traffic
normalizing ("scrubbing", as in ipf for OpenBSD)? Is
there any tool to do it for FreeBSD firewalling?
I've heard that ipf was ported on current, anything
else?
TIA,
/Dorin.
__________________________________
Do you Yahoo!?
Yahoo! Mail SpamGuard - Read only the mail you want.
http://antispam.yahoo.com/tools
2004 Sep 24
1
Audio board [HELP]
Hi Christophe,
On Mon, 2003-01-06 at 23:22, Christophe Prevotaux wrote:
> I have a Gateway Laptop running 4-STABLE however I can't seem to find the correct
> driver for the onboard audio chip which is:
>
>
> none0@pci0:9:0: class=0x040100 card=0x2150107b chip=0x89381102 rev=0x00 hdr=0x00
> vendor = 'Creative Labs'
> device = 'EV1938 Sound'
2007 Sep 01
2
Re: 1.2.0: Test suite failures on LP64 archs?
Christian Weisgerber <naddy@mips.inka.de> wrote:
> #0 0x0000000040d18810 in FLAC__lpc_compute_residual_from_qlp_coefficients_wide
> (data=0x49e4c014, data_len=110, qlp_coeff=0x7f7ffffece70, order=1,
> lp_quantization=14, residual=0x4fced000) at lpc.c:745
> 745 residual[i] =
> data[i] - (FLAC__int32)((qlp_coeff[0] *
2004 Sep 10
9
FLAC 1.0.4 released
I uploaded the source tarball and binary releases for win32 and
redhat 7. Solaris package should be ready tomorrow.
See the news item for all the improvements from 1.0.3:
http://flac.sourceforge.net/news.html#20020924
Developers, see the new Doxygen-based API docs:
http://flac.sourceforge.net/api/index.html
Thanks again to all the contributors and testers.
Josh
2007 Aug 31
2
1.2.0: Test suite failures on LP64 archs?
Running the basic (--disable-thorough-tests) test suite, I get these
failures
round-trip test (rt-1-24-111.raw) encode... Segmentation fault (core
dumped) ERROR
FAIL: ./test_flac.sh
fsd24-01 (--channels=1 --bps=24 -0 -l 16 --lax -m -e -p): encode...ERROR during encode of fsd24-01
FAIL: ./test_streams.sh
on alpha and amd64. By contrast, i386 is fine. (All OpenBSD/4.2.)
Could be a generic LP64
2004 Sep 10
5
Re: beta 10 candidate checked in
Christian Weisgerber <naddy@mips.inka.de> wrote:
> | # nasm build rule:
> | %.lo: %.s
Even with gmake, this really works only by accident. Automake
generates a competing suffix rule, and gmake apparently gives the
rule above a higher priority than the suffix rule (or that just
happens to be the evaluation order).
Matt, since you seem to understand automake, can you come up with
2004 Sep 10
3
Re: 0.9 problems
Matt Zimmerman <mdz@debian.org> wrote:
> Aha. In FLAC__fixed_restore_signal, the index variable 'i' is declared
> unsigned, then used like so: [...] With the following trivial patch applied,
> everything works on Alpha, at least with my test sample.
Against 0.9 or CVS? While this clearly fixes a bug, 0.9 still dies
for me.
#0 0x1600692a8 in
2004 Sep 10
4
FLAC 1.0.1 source release out
The source release for 1.0.1 is finally up on sourceforge.
If you are compiling for x86 make sure to read the note in
in the README about automake 1.5.
Josh
__________________________________________________
Do You Yahoo!?
Find the one for you at Yahoo! Personals
http://personals.yahoo.com
2020 Jan 02
2
u2f seed
That sounds like the application param is still used as part of the process though? Would allowing the user to specify the application work in the Solokey case?
What is stored in the private keyfile? The documentation says no private key is stored there. So is it just information used to reseed the public/private key?
Thanks,
Kevin
________________________________________
From: openssh-unix-dev
2004 Sep 10
6
beta 10 candidate checked in
I have checked in all the latest into CVS and am going to start the
test suite again. if all goes well I will probably release this as
beta 10.
this one should have all the configure stuff working with the new
assembly infrastructure. I have tried to make it as easy as possible
to port routines to assembly. all that's really needed now is to
write the corresponding routine for a specific
2004 Sep 10
5
0.9 problems
Problems in FLAC 0.9:
- On alpha, flac immediately dumps core for both encoding and
decoding (FreeBSD/alpha).
- The distribution Makefile.in files haven't been generated with
"automake --include-deps". The resulting Makefiles aren't fully
portable; in particular they break with BSD make. In the future,
care should be taken to use "--include-deps".
- What is
2020 Jan 10
4
u2f / libfido2 version
Hi,
So I finally have time to test the u2f support
but so far I haven't been very successful,
Specifically, current HEAD has
SSH_SK_VERSION_MAJOR 0x00040000
and I can't seem to find a matching libfido2 version,
current HEAD of Yubico/libfido2 is 0x00020000
Is there a more up to date libfido2
or a particular commit of openssh-portable
I should be using?
thanks
Sean
2005 Mar 09
1
XMMS plugin: string handling bugs
There are problems in the configure option handling code for http
streaming that was added to the XMMS plugin for 1.1.2.
In configure.c, flac_cfg.stream.proxy_host and other pointers to
strings are initialized with pointers to an empty string "".
Subsequent code in FLAC_XMMS__init() and flac_configurewin_ok()
passes these pointers to g_free(). Since they don't point to memory
that
2005 Mar 17
1
Bogus autoconf test for socklen_t
This affects the XMMS plugin. configure.in has this test:
AC_CHECK_TYPES(socklen_t, [], [])
And src/plugin_xmms/http.c is the only consumer:
#ifndef HAVE_SOCKLEN_T
typedef unsigned int socklen_t;
#endif
Together this looks bogus to me. The configure check looks for
socklen_t in the default headers. If it isn't found there, socklen_t
will be typedef'ed.
However, at least on
2002 Feb 08
1
RC3: oggenc & iconv
I'm currently trying to figure out why RC3 oggenc with iconv support
will
- work, but enter replacement characters into tags instead of
converting to UTF-8;
- dump core; or
- catch an assert();
depending on the locale settings. (On FreeBSD, with Chuguev iconv.)
I think I'm getting a handle on the assert(). It's this one:
assertion "(!k && !ibl) || (k == (size_t)(-1)
2003 Nov 24
1
libogg 1.1 test failure on alpha
libogg 1.1's included regression tests ("make check") fail at least
on alpha:
--------------->
./test_bitwise
Small preclipped packing (LSb): ok.
Null bit call (LSb): ok.
Large preclipped packing (LSb): ok.
32 bit preclipped packing (LSb): ok.
Small unclipped packing (LSb): ok.
Large unclipped packing (LSb): ok.
Single bit unclipped packing (LSb): ok.
Testing read past end
2020 Jun 01
3
"ssh -Q key" does not list rsa-sha2 algorithms
With the upcoming deprecation of ssh-rsa I was trying to see what keys my
version of OpenSSH ( 7.8p1 ) supports. I noticed that "ssh -Q key" does not
actually list the suggested algorithms to transition to ( rsa-sha2-256 and
rsa-sha2-512 ) even though they are supported. Looking through the code, it
looks like an issue with the arguments passed to sshkey_alg_list in ssh.c
where it should
2001 Mar 17
2
ao: Sun audio plug-in
Here's the promised Sun audio system plug-in.
I have tested this on OpenBSD. It should work without changes on
NetBSD, too. Jeremy, could you please verify this?
After a few minor tweaks it now also compiles on Solaris 2.7.
Alas, I can't verify whether it actually plays anything there.
I guess this could also with little effort be made to work on
SunOS4.
Attached:
- Diff to
2008 Jan 25
7
vorbis-tools 1.2.0 Release Candidate
I bumped the version number of vorbis-tools and am preparing it for an
eventual release in a few days.
A changelog of what's new may be found at [1].
Meanwhile, what's in SVN is a "Release Candidate" to find out if
anything was broken since version 1.1.1. Report any (or lack of)
problems you may find, so we'll be able to put out a new version of
vorbis-tools.
-Ivo
[1]