* [PATCH] ip.7: Improve explanation about calling listen or connect
@ 2012-05-09 12:30 Flavio Leitner
[not found] ` <1336566636-14713-1-git-send-email-fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 7+ messages in thread
From: Flavio Leitner @ 2012-05-09 12:30 UTC (permalink / raw)
To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, netdev, Flavio Leitner
Signed-off-by: Flavio Leitner <fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
man7/ip.7 | 15 +++++++++------
1 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/man7/ip.7 b/man7/ip.7
index 9f560df..84fe32d 100644
--- a/man7/ip.7
+++ b/man7/ip.7
@@ -69,12 +69,11 @@ For
you may specify a valid IANA IP protocol defined in
RFC\ 1700 assigned numbers.
.PP
-.\" FIXME ip current does an autobind in listen, but I'm not sure
-.\" if that should be documented.
When a process wants to receive new incoming packets or connections, it
should bind a socket to a local interface address using
.BR bind (2).
-Only one IP socket may be bound to any given local (address, port) pair.
+In this case, only one IP socket may be bound to any given local
+(address, port) pair.
When
.B INADDR_ANY
is specified in the bind call, the socket will be bound to
@@ -82,10 +81,14 @@ is specified in the bind call, the socket will be bound to
local interfaces.
When
.BR listen (2)
-or
+is called on an unbound socket, the socket is automatically bound
+to a random free port with the local address set to
+.BR INADDR_ANY .
+When
.BR connect (2)
-are called on an unbound socket, it is automatically bound to a
-random free port with the local address set to
+is called on an unbound socket, the socket is automatically bound
+to a random free port or an usable shared port with the local address
+set to
.BR INADDR_ANY .
A TCP local socket address that has been bound is unavailable for
--
1.7.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] ip.7: Improve explanation about calling listen or connect
[not found] ` <1336566636-14713-1-git-send-email-fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2012-05-25 11:02 ` Peter Schiffer
[not found] ` <4FBF66D8.7060007-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 7+ messages in thread
From: Peter Schiffer @ 2012-05-25 11:02 UTC (permalink / raw)
To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
Cc: Flavio Leitner, linux-man-u79uwXL29TY76Z2rM5mHXA, netdev
Hi Michael,
do you have any comments for this update? Or do you need some supporting
info?
peter
On 05/09/2012 02:30 PM, Flavio Leitner wrote:
> Signed-off-by: Flavio Leitner<fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> ---
> man7/ip.7 | 15 +++++++++------
> 1 files changed, 9 insertions(+), 6 deletions(-)
>
> diff --git a/man7/ip.7 b/man7/ip.7
> index 9f560df..84fe32d 100644
> --- a/man7/ip.7
> +++ b/man7/ip.7
> @@ -69,12 +69,11 @@ For
> you may specify a valid IANA IP protocol defined in
> RFC\ 1700 assigned numbers.
> .PP
> -.\" FIXME ip current does an autobind in listen, but I'm not sure
> -.\" if that should be documented.
> When a process wants to receive new incoming packets or connections, it
> should bind a socket to a local interface address using
> .BR bind (2).
> -Only one IP socket may be bound to any given local (address, port) pair.
> +In this case, only one IP socket may be bound to any given local
> +(address, port) pair.
> When
> .B INADDR_ANY
> is specified in the bind call, the socket will be bound to
> @@ -82,10 +81,14 @@ is specified in the bind call, the socket will be bound to
> local interfaces.
> When
> .BR listen (2)
> -or
> +is called on an unbound socket, the socket is automatically bound
> +to a random free port with the local address set to
> +.BR INADDR_ANY .
> +When
> .BR connect (2)
> -are called on an unbound socket, it is automatically bound to a
> -random free port with the local address set to
> +is called on an unbound socket, the socket is automatically bound
> +to a random free port or an usable shared port with the local address
> +set to
> .BR INADDR_ANY .
>
> A TCP local socket address that has been bound is unavailable for
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] ip.7: Improve explanation about calling listen or connect
[not found] ` <4FBF66D8.7060007-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2012-06-06 14:44 ` Flavio Leitner
[not found] ` <20120606114426.0595fbac-xCsz71Izw+A8CFLZRvg3uA@public.gmane.org>
2013-02-10 2:00 ` Michael Kerrisk (man-pages)
0 siblings, 2 replies; 7+ messages in thread
From: Flavio Leitner @ 2012-06-06 14:44 UTC (permalink / raw)
To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
Cc: Peter Schiffer, linux-man-u79uwXL29TY76Z2rM5mHXA, netdev
Hi,
Could someone tell me what's the patch current state?
It has been a month already with no feedback.
thanks,
fbl
On Fri, 25 May 2012 13:02:48 +0200
Peter Schiffer <pschiffe-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> wrote:
> Hi Michael,
>
> do you have any comments for this update? Or do you need some supporting
> info?
>
> peter
>
> On 05/09/2012 02:30 PM, Flavio Leitner wrote:
> > Signed-off-by: Flavio Leitner<fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> > ---
> > man7/ip.7 | 15 +++++++++------
> > 1 files changed, 9 insertions(+), 6 deletions(-)
> >
> > diff --git a/man7/ip.7 b/man7/ip.7
> > index 9f560df..84fe32d 100644
> > --- a/man7/ip.7
> > +++ b/man7/ip.7
> > @@ -69,12 +69,11 @@ For
> > you may specify a valid IANA IP protocol defined in
> > RFC\ 1700 assigned numbers.
> > .PP
> > -.\" FIXME ip current does an autobind in listen, but I'm not sure
> > -.\" if that should be documented.
> > When a process wants to receive new incoming packets or connections, it
> > should bind a socket to a local interface address using
> > .BR bind (2).
> > -Only one IP socket may be bound to any given local (address, port) pair.
> > +In this case, only one IP socket may be bound to any given local
> > +(address, port) pair.
> > When
> > .B INADDR_ANY
> > is specified in the bind call, the socket will be bound to
> > @@ -82,10 +81,14 @@ is specified in the bind call, the socket will be bound to
> > local interfaces.
> > When
> > .BR listen (2)
> > -or
> > +is called on an unbound socket, the socket is automatically bound
> > +to a random free port with the local address set to
> > +.BR INADDR_ANY .
> > +When
> > .BR connect (2)
> > -are called on an unbound socket, it is automatically bound to a
> > -random free port with the local address set to
> > +is called on an unbound socket, the socket is automatically bound
> > +to a random free port or an usable shared port with the local address
> > +set to
> > .BR INADDR_ANY .
> >
> > A TCP local socket address that has been bound is unavailable for
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] ip.7: Improve explanation about calling listen or connect
[not found] ` <20120606114426.0595fbac-xCsz71Izw+A8CFLZRvg3uA@public.gmane.org>
@ 2012-07-09 14:53 ` Peter Schiffer
0 siblings, 0 replies; 7+ messages in thread
From: Peter Schiffer @ 2012-07-09 14:53 UTC (permalink / raw)
To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
Cc: Flavio Leitner, linux-man-u79uwXL29TY76Z2rM5mHXA, netdev
ping
On 06/06/2012 04:44 PM, Flavio Leitner wrote:
> Hi,
>
> Could someone tell me what's the patch current state?
> It has been a month already with no feedback.
> thanks,
> fbl
>
> On Fri, 25 May 2012 13:02:48 +0200
> Peter Schiffer <pschiffe-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> wrote:
>
>> Hi Michael,
>>
>> do you have any comments for this update? Or do you need some supporting
>> info?
>>
>> peter
>>
>> On 05/09/2012 02:30 PM, Flavio Leitner wrote:
>>> Signed-off-by: Flavio Leitner<fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
>>> ---
>>> man7/ip.7 | 15 +++++++++------
>>> 1 files changed, 9 insertions(+), 6 deletions(-)
>>>
>>> diff --git a/man7/ip.7 b/man7/ip.7
>>> index 9f560df..84fe32d 100644
>>> --- a/man7/ip.7
>>> +++ b/man7/ip.7
>>> @@ -69,12 +69,11 @@ For
>>> you may specify a valid IANA IP protocol defined in
>>> RFC\ 1700 assigned numbers.
>>> .PP
>>> -.\" FIXME ip current does an autobind in listen, but I'm not sure
>>> -.\" if that should be documented.
>>> When a process wants to receive new incoming packets or connections, it
>>> should bind a socket to a local interface address using
>>> .BR bind (2).
>>> -Only one IP socket may be bound to any given local (address, port) pair.
>>> +In this case, only one IP socket may be bound to any given local
>>> +(address, port) pair.
>>> When
>>> .B INADDR_ANY
>>> is specified in the bind call, the socket will be bound to
>>> @@ -82,10 +81,14 @@ is specified in the bind call, the socket will be bound to
>>> local interfaces.
>>> When
>>> .BR listen (2)
>>> -or
>>> +is called on an unbound socket, the socket is automatically bound
>>> +to a random free port with the local address set to
>>> +.BR INADDR_ANY .
>>> +When
>>> .BR connect (2)
>>> -are called on an unbound socket, it is automatically bound to a
>>> -random free port with the local address set to
>>> +is called on an unbound socket, the socket is automatically bound
>>> +to a random free port or an usable shared port with the local address
>>> +set to
>>> .BR INADDR_ANY .
>>>
>>> A TCP local socket address that has been bound is unavailable for
> --
> To unsubscribe from this list: send the line "unsubscribe linux-man" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] ip.7: Improve explanation about calling listen or connect
2012-06-06 14:44 ` Flavio Leitner
[not found] ` <20120606114426.0595fbac-xCsz71Izw+A8CFLZRvg3uA@public.gmane.org>
@ 2013-02-10 2:00 ` Michael Kerrisk (man-pages)
2013-02-11 17:50 ` Flavio Leitner
1 sibling, 1 reply; 7+ messages in thread
From: Michael Kerrisk (man-pages) @ 2013-02-10 2:00 UTC (permalink / raw)
To: Flavio Leitner; +Cc: Peter Schiffer, linux-man, netdev
On Wed, Jun 6, 2012 at 4:44 PM, Flavio Leitner <fbl@redhat.com> wrote:
>
> Hi,
>
> Could someone tell me what's the patch current state?
> It has been a month already with no feedback.
> thanks,
> fbl
Following up, long after the fact.
Flavio, I had no time pack then to review this patch... One problem
is, you never gave any rationle for the change ("Improve explanation
of..." is not a rationale -- I need to know *why* you think the
changes are needed.)
Thanks,
Michael
> On Fri, 25 May 2012 13:02:48 +0200
> Peter Schiffer <pschiffe@redhat.com> wrote:
>
>> Hi Michael,
>>
>> do you have any comments for this update? Or do you need some supporting
>> info?
>>
>> peter
>>
>> On 05/09/2012 02:30 PM, Flavio Leitner wrote:
>> > Signed-off-by: Flavio Leitner<fbl@redhat.com>
>> > ---
>> > man7/ip.7 | 15 +++++++++------
>> > 1 files changed, 9 insertions(+), 6 deletions(-)
>> >
>> > diff --git a/man7/ip.7 b/man7/ip.7
>> > index 9f560df..84fe32d 100644
>> > --- a/man7/ip.7
>> > +++ b/man7/ip.7
>> > @@ -69,12 +69,11 @@ For
>> > you may specify a valid IANA IP protocol defined in
>> > RFC\ 1700 assigned numbers.
>> > .PP
>> > -.\" FIXME ip current does an autobind in listen, but I'm not sure
>> > -.\" if that should be documented.
>> > When a process wants to receive new incoming packets or connections, it
>> > should bind a socket to a local interface address using
>> > .BR bind (2).
>> > -Only one IP socket may be bound to any given local (address, port) pair.
>> > +In this case, only one IP socket may be bound to any given local
>> > +(address, port) pair.
>> > When
>> > .B INADDR_ANY
>> > is specified in the bind call, the socket will be bound to
>> > @@ -82,10 +81,14 @@ is specified in the bind call, the socket will be bound to
>> > local interfaces.
>> > When
>> > .BR listen (2)
>> > -or
>> > +is called on an unbound socket, the socket is automatically bound
>> > +to a random free port with the local address set to
>> > +.BR INADDR_ANY .
>> > +When
>> > .BR connect (2)
>> > -are called on an unbound socket, it is automatically bound to a
>> > -random free port with the local address set to
>> > +is called on an unbound socket, the socket is automatically bound
>> > +to a random free port or an usable shared port with the local address
>> > +set to
>> > .BR INADDR_ANY .
>> >
>> > A TCP local socket address that has been bound is unavailable for
>
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Author of "The Linux Programming Interface"; http://man7.org/tlpi/
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] ip.7: Improve explanation about calling listen or connect
2013-02-10 2:00 ` Michael Kerrisk (man-pages)
@ 2013-02-11 17:50 ` Flavio Leitner
[not found] ` <20130211175000.GG31579-8Luz0qD3JK/tRgLqZ5aouw@public.gmane.org>
0 siblings, 1 reply; 7+ messages in thread
From: Flavio Leitner @ 2013-02-11 17:50 UTC (permalink / raw)
To: Michael Kerrisk (man-pages); +Cc: Peter Schiffer, linux-man, netdev
On Sun, Feb 10, 2013 at 03:00:03AM +0100, Michael Kerrisk (man-pages) wrote:
> On Wed, Jun 6, 2012 at 4:44 PM, Flavio Leitner <fbl@redhat.com> wrote:
> >
> > Hi,
> >
> > Could someone tell me what's the patch current state?
> > It has been a month already with no feedback.
> > thanks,
> > fbl
>
> Following up, long after the fact.
>
> Flavio, I had no time pack then to review this patch... One problem
> is, you never gave any rationle for the change ("Improve explanation
> of..." is not a rationale -- I need to know *why* you think the
> changes are needed.)
Because the current explanation is not detailed enough and/or the way
it is written may lead to a wrong interpretation, specially for non-English
users. Therefore, it should be improved adding supporting details
and a better writing to clarify each case.
The patch adds the missing details and clarifies each use case.
Thanks,
fbl
>
> Thanks,
>
> Michael
>
>
> > On Fri, 25 May 2012 13:02:48 +0200
> > Peter Schiffer <pschiffe@redhat.com> wrote:
> >
> >> Hi Michael,
> >>
> >> do you have any comments for this update? Or do you need some supporting
> >> info?
> >>
> >> peter
> >>
> >> On 05/09/2012 02:30 PM, Flavio Leitner wrote:
> >> > Signed-off-by: Flavio Leitner<fbl@redhat.com>
> >> > ---
> >> > man7/ip.7 | 15 +++++++++------
> >> > 1 files changed, 9 insertions(+), 6 deletions(-)
> >> >
> >> > diff --git a/man7/ip.7 b/man7/ip.7
> >> > index 9f560df..84fe32d 100644
> >> > --- a/man7/ip.7
> >> > +++ b/man7/ip.7
> >> > @@ -69,12 +69,11 @@ For
> >> > you may specify a valid IANA IP protocol defined in
> >> > RFC\ 1700 assigned numbers.
> >> > .PP
> >> > -.\" FIXME ip current does an autobind in listen, but I'm not sure
> >> > -.\" if that should be documented.
> >> > When a process wants to receive new incoming packets or connections, it
> >> > should bind a socket to a local interface address using
> >> > .BR bind (2).
> >> > -Only one IP socket may be bound to any given local (address, port) pair.
> >> > +In this case, only one IP socket may be bound to any given local
> >> > +(address, port) pair.
> >> > When
> >> > .B INADDR_ANY
> >> > is specified in the bind call, the socket will be bound to
> >> > @@ -82,10 +81,14 @@ is specified in the bind call, the socket will be bound to
> >> > local interfaces.
> >> > When
> >> > .BR listen (2)
> >> > -or
> >> > +is called on an unbound socket, the socket is automatically bound
> >> > +to a random free port with the local address set to
> >> > +.BR INADDR_ANY .
> >> > +When
> >> > .BR connect (2)
> >> > -are called on an unbound socket, it is automatically bound to a
> >> > -random free port with the local address set to
> >> > +is called on an unbound socket, the socket is automatically bound
> >> > +to a random free port or an usable shared port with the local address
> >> > +set to
> >> > .BR INADDR_ANY .
> >> >
> >> > A TCP local socket address that has been bound is unavailable for
> >
>
>
>
> --
> Michael Kerrisk
> Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
> Author of "The Linux Programming Interface"; http://man7.org/tlpi/
>
--
fbl
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] ip.7: Improve explanation about calling listen or connect
[not found] ` <20130211175000.GG31579-8Luz0qD3JK/tRgLqZ5aouw@public.gmane.org>
@ 2013-02-12 21:48 ` Michael Kerrisk (man-pages)
0 siblings, 0 replies; 7+ messages in thread
From: Michael Kerrisk (man-pages) @ 2013-02-12 21:48 UTC (permalink / raw)
To: Michael Kerrisk (man-pages), Peter Schiffer,
linux-man-u79uwXL29TY76Z2rM5mHXA, netdev
Hi Flavio,
On Mon, Feb 11, 2013 at 6:50 PM, Flavio Leitner <fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> wrote:
> On Sun, Feb 10, 2013 at 03:00:03AM +0100, Michael Kerrisk (man-pages) wrote:
>> On Wed, Jun 6, 2012 at 4:44 PM, Flavio Leitner <fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> wrote:
>> >
>> > Hi,
>> >
>> > Could someone tell me what's the patch current state?
>> > It has been a month already with no feedback.
>> > thanks,
>> > fbl
>>
>> Following up, long after the fact.
>>
>> Flavio, I had no time pack then to review this patch... One problem
>> is, you never gave any rationle for the change ("Improve explanation
>> of..." is not a rationale -- I need to know *why* you think the
>> changes are needed.)
>
> Because the current explanation is not detailed enough and/or the way
> it is written may lead to a wrong interpretation, specially for non-English
> users. Therefore, it should be improved adding supporting details
> and a better writing to clarify each case.
>
> The patch adds the missing details and clarifies each use case.
>
> Thanks,
> fbl
Peter sent me some supporting technical info that you'd supplied
elsewhere. I've applied your patch now.
Thanks!
Michael
>> > On Fri, 25 May 2012 13:02:48 +0200
>> > Peter Schiffer <pschiffe-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> wrote:
>> >
>> >> Hi Michael,
>> >>
>> >> do you have any comments for this update? Or do you need some supporting
>> >> info?
>> >>
>> >> peter
>> >>
>> >> On 05/09/2012 02:30 PM, Flavio Leitner wrote:
>> >> > Signed-off-by: Flavio Leitner<fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
>> >> > ---
>> >> > man7/ip.7 | 15 +++++++++------
>> >> > 1 files changed, 9 insertions(+), 6 deletions(-)
>> >> >
>> >> > diff --git a/man7/ip.7 b/man7/ip.7
>> >> > index 9f560df..84fe32d 100644
>> >> > --- a/man7/ip.7
>> >> > +++ b/man7/ip.7
>> >> > @@ -69,12 +69,11 @@ For
>> >> > you may specify a valid IANA IP protocol defined in
>> >> > RFC\ 1700 assigned numbers.
>> >> > .PP
>> >> > -.\" FIXME ip current does an autobind in listen, but I'm not sure
>> >> > -.\" if that should be documented.
>> >> > When a process wants to receive new incoming packets or connections, it
>> >> > should bind a socket to a local interface address using
>> >> > .BR bind (2).
>> >> > -Only one IP socket may be bound to any given local (address, port) pair.
>> >> > +In this case, only one IP socket may be bound to any given local
>> >> > +(address, port) pair.
>> >> > When
>> >> > .B INADDR_ANY
>> >> > is specified in the bind call, the socket will be bound to
>> >> > @@ -82,10 +81,14 @@ is specified in the bind call, the socket will be bound to
>> >> > local interfaces.
>> >> > When
>> >> > .BR listen (2)
>> >> > -or
>> >> > +is called on an unbound socket, the socket is automatically bound
>> >> > +to a random free port with the local address set to
>> >> > +.BR INADDR_ANY .
>> >> > +When
>> >> > .BR connect (2)
>> >> > -are called on an unbound socket, it is automatically bound to a
>> >> > -random free port with the local address set to
>> >> > +is called on an unbound socket, the socket is automatically bound
>> >> > +to a random free port or an usable shared port with the local address
>> >> > +set to
>> >> > .BR INADDR_ANY .
>> >> >
>> >> > A TCP local socket address that has been bound is unavailable for
>> >
>>
>>
>>
>> --
>> Michael Kerrisk
>> Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
>> Author of "The Linux Programming Interface"; http://man7.org/tlpi/
>>
>
> --
> fbl
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Author of "The Linux Programming Interface"; http://man7.org/tlpi/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-02-12 21:48 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-09 12:30 [PATCH] ip.7: Improve explanation about calling listen or connect Flavio Leitner
[not found] ` <1336566636-14713-1-git-send-email-fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2012-05-25 11:02 ` Peter Schiffer
[not found] ` <4FBF66D8.7060007-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2012-06-06 14:44 ` Flavio Leitner
[not found] ` <20120606114426.0595fbac-xCsz71Izw+A8CFLZRvg3uA@public.gmane.org>
2012-07-09 14:53 ` Peter Schiffer
2013-02-10 2:00 ` Michael Kerrisk (man-pages)
2013-02-11 17:50 ` Flavio Leitner
[not found] ` <20130211175000.GG31579-8Luz0qD3JK/tRgLqZ5aouw@public.gmane.org>
2013-02-12 21:48 ` Michael Kerrisk (man-pages)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).