Displaying 20 results from an estimated 6000 matches similar to: "Networld Interop, Vegas 2006"
2019 May 22
1
[libnbd PATCH] interop: Don't fail qemu tls testing if nbdkit was not installed
On Fedora 29, nbdkit-devel at 1.10.4 is too old for any of the
tests/Makefile.am actions to run, but this also means we don't create
any tls pki/ or keys.psk files that we then want to reuse during qemu
testing, as evidenced by 'make check' failures such as:
FAIL: interop-qemu-nbd-tls-certs
================================
qemu-nbd: Unable to access credentials
2004 Sep 10
0
Re: id3v2 problem
Its file name is plugin_common/id3v2.c. I forgot to write.
Sorry.
On Sat, 29 Mar 2003 02:34:30 +0900
Daisuke Shimamura <Daisuke_Shimamura@nifty.com> wrote:
> Hi Josh,
>
> I found id3v2 didn't work on v1.1.0. I checked source codes, macros- (in
> such cases as FLAC_HAVE_ID3LIB) ware moved to config.h. That is good.
> But the place to do include is the after of #ifdef
2004 Aug 13
1
Interop RTP "Extension headers" for QOS?
We're setting up a connection with Level3's voip system and when we use
Asterisk or make or recv calls we get an initial pulsing noise. Level3's
Interop team explains that's their RTP extension headers and Asterisk
apparently doesn't know what to do with it. He said we need to either
ignore or of course let the traffic pass. Has anyone heard of this
before? I understand the
2004 Sep 10
3
id3v2 problem
Hi Josh,
I found id3v2 didn't work on v1.1.0. I checked source codes, macros- (in
such cases as FLAC_HAVE_ID3LIB) ware moved to config.h. That is good.
But the place to do include is the after of #ifdef FLAC_HAVE_ID3LIB.
The result of configure script isn't reflected. And it doesn't always
have id3lib with this.
Move place of 'include "config.h"' to the top. I
2007 Feb 14
2
ClearCase Interop problem with recent Samba versions
Dear all,
I have a SUN server running as ClearCase view-server and am using Samba
for Interop. Today I updated Samba from 3.0.21c to 3.0.24 and now I
cannot mount/start my views from windows!!
MVFS error log on my windows client gives "{8 pid/tid 49800000c58/85fdf178} MvfsFsNotification: Unsupported filesystem type (6)"
Samba logs don't show any error...
Trying other
2005 Mar 08
1
Asterisk Interop w/ Level 3
Has anyone done interop testing with Level 3 and Asterisk. If so, would you
be willing to share your experiences.
Gene
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050308/061aea35/attachment.htm
2019 Sep 18
1
Re: [PATCH libnbd 5/5] interop: Add tests of nbdkit + LIBNBD_TLS_ALLOW.
On 9/17/19 5:35 PM, Richard W.M. Jones wrote:
> Test both the TLS enabled and fallback paths.
>
> nbd-server doesn't appear to support TLS at all, and qemu-nbd is known
> not to allow fallback to unencrypted, and therefore it only makes
> sense to test nbdkit at the moment.
> ---
> .gitignore | 4 ++++
> +interop_nbdkit_tls_certs_allow_enabled_SOURCES =
2019 Sep 17
0
[PATCH libnbd 5/5] interop: Add tests of nbdkit + LIBNBD_TLS_ALLOW.
Test both the TLS enabled and fallback paths.
nbd-server doesn't appear to support TLS at all, and qemu-nbd is known
not to allow fallback to unencrypted, and therefore it only makes
sense to test nbdkit at the moment.
---
.gitignore | 4 ++++
TODO | 3 ---
interop/Makefile.am | 54 +++++++++++++++++++++++++++++++++++++++++++++
interop/interop.c | 30
2019 Sep 17
0
[PATCH libnbd 4/5] interop: Add -DTLS_MODE to the test.
This neutral refactoring adds -DTLS_MODE. We can in future change the
requested TLS mode, but not in this commit.
It also checks that nbd_get_tls_negotiated returns true after
connecting, when the requested mode was set to LIBNBD_TLS_REQUIRE.
---
interop/Makefile.am | 4 ++++
interop/interop.c | 26 ++++++++++++++++++++------
2 files changed, 24 insertions(+), 6 deletions(-)
diff --git
2009 Feb 27
3
Continue in dialplan on hangup
Is there a way to force a channel to continue in the dialplan after
the remote end hangs up?
Specifically, I am trying to play around with setting up a fax
server. I can receive the fax, but sometimes the sending fax hangs up
before my System command for printing can run and the fax never
prints. I know I can work around by setting up a custom context and
use the 'h'
2019 Sep 12
0
[PATCH libnbd 2/2] interop: Retry TCP connections to qemu-nbd.
The test interop-qemu-nbd-tls-certs frequently fails on slow (32 bit)
machines in Fedora Koji. (Is crypto slow on these already overloaded
machines?)
As we cannot wait for a signal when qemu-nbd is ready start serving,
we have to use a sleep. The current sleep is 5 seconds, which is not
long enough. Making the sleep longer would work but is inconsiderate
for people using faster machines.
2019 Oct 01
3
[PATCH libnbd 0/2] Change qemu-nbd interop tests to use socket activation.
Now that we have implemented systemd socket activation, we can use
this to run qemu-nbd in tests.
The first patch leaves some dead code around (the -DSERVE_OVER_TCP=1
path). It's possible we might want to use this to test against a
putative future NBD server that only supports TCP, but on the other
hand maybe we should just remove it.
Tests & valgrind still pass for me.
Rich.
2020 Oct 01
2
[PATCH libnbd] interop: Add test of qemu-storage-daemon.
This commit adds a simple test of qemu-storage-daemon (QSD). On the
basis that QSD is just qemu-nbd in new clothes this is only a simple
test, not complete coverage. Nor does it test the unique features of
QSD like being able to use QMP to create new server instances.
Unfortunately QSD is not yet stable upstream. This version works with
qemu 5.1.0 but at least two of the command line
2019 Sep 17
7
[PATCH libnbd 0/5] interop: Check that LIBNBD_TLS_ALLOW works against nbdkit.
I was a little surprised to find that LIBNBD_TLS_ALLOW worked out of
the box, so I had to examine the logs whereupon I saw the magic
message ...
libnbd: debug: nbd1: nbd_connect_command: server refused TLS (policy), continuing with unencrypted connection
I don't believe this path has ever been tested before.
It's possible the tests could be improved if they actually checked for
this
2016 Nov 19
4
[Bug 2639] New: PuTTY interop tests broken
https://bugzilla.mindrot.org/show_bug.cgi?id=2639
Bug ID: 2639
Summary: PuTTY interop tests broken
Product: Portable OpenSSH
Version: 7.3p1
Hardware: All
OS: Linux
Status: NEW
Severity: normal
Priority: P5
Component: Regression tests
Assignee: unassigned-bugs at mindrot.org
2019 Sep 18
1
Re: [PATCH libnbd 4/5] interop: Add -DTLS_MODE to the test.
On 9/17/19 5:35 PM, Richard W.M. Jones wrote:
> This neutral refactoring adds -DTLS_MODE. We can in future change the
> requested TLS mode, but not in this commit.
>
> It also checks that nbd_get_tls_negotiated returns true after
> connecting, when the requested mode was set to LIBNBD_TLS_REQUIRE.
> ---
> interop/Makefile.am | 4 ++++
> interop/interop.c | 26
2006 Mar 24
2
3Com Phones
Greetings,
We are looking at installing a VoIP system with Asterisk and are
currently looking at the line of 3Com phones. Has anybody had
success with using the following phones? We need to buy a lot and we
don't want to end up with phones that don't work properly with asterisk.
3Com 3101 (model with speakerphone)
3Com 3102 Business Phone
3Com 3103 Manager Phone
3Com 3105
2005 Jun 08
1
c# source to interop call vorbisfile.dll
Hi,
Can anyone tell me where I can get sample C# code to call the native (win32)
dll vorbisfile.dll to decode a vorbis Stream?
I want the native performance of this methodology, however Ive tried porting
the invocation code to C# and keep getting null reference errors when
Calling ov_open_callback.
Thanks
- Adam
-------------- next part --------------
An HTML attachment was
2019 Jun 05
1
[libnbd PATCH] api: Add nbd_supports_tls
This is slightly redundant with just trying nbd_set_tls(nbd, 2) then
checking for failure; however, this function does not set errors and
looks more similar to nbd_supports_uri.
---
This is borderline enough that I figured I'd post it to check if we want it.
generator/generator | 45 ++++++++++++++++++++++++++++++++++++++-------
interop/interop.c | 4 ++++
lib/handle.c | 12
2018 Jun 05
2
Booth volunteers needed for Grace Hopper Conference
Hello LLVM Developers!
Last year, the LLVM Foundation sponsored a booth at the Grace Hopper Conference. I had 2 amazing volunteers from the community, David Blaikie and Anna Zaks, help me spread the word about LLVM, compilers, and open source. It was a great experience and we are hoping to repeat this at the upcoming 2018 Grace Hopper conference in Houston, TX on September 26-28.
I’m looking