similar to: [Bug 534] No option to use IPv6 connections by default

Displaying 20 results from an estimated 7000 matches similar to: "[Bug 534] No option to use IPv6 connections by default"

2003 May 16
1
[Bug 534] No option to use IPv6 connections by default
http://bugzilla.mindrot.org/show_bug.cgi?id=534 ------- Additional Comments From djm at mindrot.org 2003-05-16 10:50 ------- Created an attachment (id=303) --> (http://bugzilla.mindrot.org/attachment.cgi?id=303&action=view) Adds AddressFamily option to client ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2009 Dec 14
1
[Bug 1685] New: ssh attempts v4 connection w/v6 BindAddress setting in ssh config
https://bugzilla.mindrot.org/show_bug.cgi?id=1685 Summary: ssh attempts v4 connection w/v6 BindAddress setting in ssh config Product: Portable OpenSSH Version: 5.3p1 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Miscellaneous AssignedTo:
2011 Jul 17
2
openSSH 5.8p2 BindPort patch
Hi, i have written a patch for openSSH 5.8p2 which allows the user to set the local source port. The patch is as follows: diff -rupN openssh-5.8p2//readconf.c openssh-5.8p2-srcport//readconf.c --- openssh-5.8p2//readconf.c 2010-11-20 04:19:38.000000000 +0000 +++ openssh-5.8p2-srcport//readconf.c 2011-07-17 20:57:52.385044096 +0100 @@ -125,7 +125,7 @@ typedef enum { oGlobalKnownHostsFile2,
2012 Nov 28
4
How to disable ipv6
Hi all, I'm pretty new to CentOS. I am working with a newly set-up server: [cbearden at host ~]$ lsb_release -a LSB Version: :core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch Distributor ID: CentOS Description: CentOS release 6.3 (Final) Release: 6.3 Codename: Final I'm trying to solve this problem (X11 forwarding)
2019 Nov 11
1
Error: Corrupted index cache file and Error: Maildir filename has wrong S value
Good day Guys I forgot to add and mention a very important piece of the puzzle. We are making use of dovecots compression plugin. I.e. https://doc.dovecot.org/configuration_manual/zlib_plugin/#compression Regards Brent Clark On 2019/11/11 14:49, Brent Clark wrote: > Good day Aki > > Thanks ever so much for replying. > > Interesting that you ask the version of dovecot. Any
2013 Jun 03
0
[LLVMdev] LLVM/Clang research questions
Hi Brent, You're correct. The segmented stack model is intended for performance, not security. Its goal is to allow lightweight threads to be very cheaply allocated and destroyed. For your model, you would most likely want to use different address spaces for the different memory types. Currently, clang does not allow you to define the address space of variables with automatic storage
2019 Nov 11
2
Error: Corrupted index cache file and Error: Maildir filename has wrong S value
What version are you running? Aki On 11.11.2019 12.26, Brent Clark via dovecot wrote: > Good day Guys > > Just an update, my colleague and I came across this script. > > https://www.dovecot.org/tools/maildir-size-fix.pl > > We made a backup, ran it, but unfortunately the problem still persists. > > Regards > Brent > > On 2019/11/11 11:42, Brent Clark wrote:
2013 Jun 03
2
[LLVMdev] LLVM/Clang research questions
Hi Duncan, It doesn't appear to be what I'm looking for as there is copying of the old stack to the new stack. Additionally, according to the LLVM docs on segmented stacks (http://llvm.org/releases/3.0/docs/SegmentedStacks.html) the stacklings are allocated memory from the heap. Since this places them all on the same memory segment, a read/write from one stackling could technically
2013 Jun 03
0
[LLVMdev] LLVM/Clang research questions
Hi Brent, On 03/06/13 14:32, Brent Gregory Roth wrote: > Hi Duncan, > > Are the segmented stacks actually on separate memory segments? My intended > purpose for placing different datatypes on separate stacks is such that memory > accesses to one datatype won't be allowed to overflow to another datatype. > > If they aren't, in fact, on separate memory segments, are you
2013 Jun 03
2
[LLVMdev] LLVM/Clang research questions
Hi Duncan, Are the segmented stacks actually on separate memory segments? My intended purpose for placing different datatypes on separate stacks is such that memory accesses to one datatype won't be allowed to overflow to another datatype. If they aren't, in fact, on separate memory segments, are you aware of a way to place a non-readable/-writable segment in between two other stack
2012 Aug 27
0
[Bug 2037] New: sshd Causing DNS Queries on ListenAddress when binding to IPV4 and IPV6 addresses on AIX
https://bugzilla.mindrot.org/show_bug.cgi?id=2037 Priority: P5 Bug ID: 2037 Assignee: unassigned-bugs at mindrot.org Summary: sshd Causing DNS Queries on ListenAddress when binding to IPV4 and IPV6 addresses on AIX Severity: normal Classification: Unclassified OS: AIX Reporter: caleblloyd at
2006 Mar 22
5
Class Caching Problem [was Newbie Question about Custom Classes]
So any other ideas as to why my custom class under app/models is being cached even though all the caching is set to false in the config/environments/* files? Currently I''m having to restart WEBrick after EVERY change to the file. The controllers and views are reloading just fine and not being cached. It''s just the custom class I created that''s being cached. Any ideas
2008 Sep 08
2
Problems with async worker request
Sorry if this comes through twice. I already sent this once, before joining the mailing list. I''m attempting to use Backgroundrb to handle asynchronous pdf creation, but in doing so, I''ve run into a very strange problem. Below is a method that''s called from the controller which creates a new worker, then grabs the worker and calls the ''build_pdf''
2016 Jun 07
2
Delay after Answer
Well, I thought I had the problem solved. Ported everything over to PJSip and build RDNS records for the phones and the server, but I am still experiencing the problem on incoming calls. ** On 6/7/2016 1:00 PM, Faheem Muhammad wrote: > I've faced the same issue. The issue was related to DNS, the reverse > lookup query failure caused the delay around(7-9 seconds). The purpose >
2012 Jan 24
0
[LLVMdev] Pointer aliasing
I have no clue, I didn't have time to look into that example yet. How does the IR (before optimization) differ from the other version? Roel On 01/24/2012 04:45 PM, Brent Walker wrote: > Can you explain please why it works for this version of the function: > > double f(double *__restrict__ x, double *__restrict__ y, double > *__restrict__ z); > > What is different here?
2012 Dec 05
1
In factor analysis in the psych package, how can I work out which factors the columns in $scores relate to? How do I know what each of the scores is scoring?
Hi I have used fa() to perform a factor analysis of a psychological battery which is thought to have 11 factors. I can identify which factors the loadings relate to easily enough because I can see which items are loading onto each of the columns in the $loading output. However, how can I identify which items or loadings are being used to create each of the columns in the $scores output? I have
2012 Jan 24
2
[LLVMdev] Pointer aliasing
I think the problem here is that the IR doesn't have any way to attach restrict information to loads/stores/pointers. It works on arguments because they can be given the 'noalias' attribute, and then the alias analyzer must understand what that means. Pete On Jan 24, 2012, at 7:47 AM, Roel Jordans wrote: > I have no clue, I didn't have time to look into that example yet.
2006 May 15
3
How to tell if RTP stream is has been reinvited?
Howdy, How can you tell if RTP traffic has been reinvited/is bypassing an * server? Sincerely, Brent A. Torrenga brent.torrenga@torrenga.com Torrenga Engineering, Inc. 907 Ridge Road Munster, Indiana 46321-1771 +1 219 836 8918 x325 Voice +1 219 836 1138 Facsimile www.torrenga.com
2010 Aug 04
1
Asterisk (1.8-beta2) and SIP IPv4/IPv6 dual-stack possibilities
Dear list, I'm trying to get Asterisk to work dual-stack on Linux and I'm left with a question. Imagine that a user (on the road) connects to Asterisk from various places. Many of them probably don't have IPv6 support yet. However, his house and office do have IPv6 connectivity. I would like to make sure that whenever IPv6 is available, the connection will be made over IPv6, but
2013 Jun 03
0
[LLVMdev] LLVM/Clang research questions
Hi Brent, LLVM supports segmented stacks, I suggest you do a case insensitive grep for segmented.stack in the source code (the . is to match any character). Ciao, Duncan. On 03/06/13 00:35, Brent Gregory Roth wrote: > Greetings, > > First, my apologies if I have incorrectly used any of these lists. > > I'm sending this email in order to get some help on where in the >