Displaying 5 results from an estimated 5 matches for "rfc1122".
Did you mean:
rfc1123
2004 Aug 06
1
Second patch again CVS version
On Sun, Feb 24, 2002 at 09:04:03AM +0100, Ricardo Galli wrote:
> Sorry, didn't explain well.
>
> Nagle's algorithm (rfc896) buffers user data until there is no pending acks
> or it can send a full segment (rfc1122).
>
> icecast doesn't need it at all, because it already sends large buffers and
> the time to send the next buffers is relatively very long.
IMO we should be using the nagle algorithm. It greatly reduces protocol
overhead and there will always be less than 1500 bytes unsent. Thi...
2010 Sep 09
1
URL error when trying to use help function in R [Sec: UNOFFICIAL]
...tion only
Comment: support this for 127.0.0.1. This block was
Comment: assigned by the IETF in the Standard document,
Comment: RFC 1122 and is further documented in the Best
Comment: Current Practice document RFC 5735. These
Comment: documents can be found at:
Comment: http://www.rfc-editor.org/rfc/rfc1122.txt
Comment: http://www.rfc-editor.org/rfc/rfc5735.txt
RegDate:
Updated: 2010-04-14
Ref: http://whois.arin.net/rest/net/NET-127-0-0-0-1
[extraneous detail here deleted]
Thanks in advance,
Michelle
Michelle Gosse
Consumer and Social Sciences
Food Standards Australia New Zealand
108 The Terrace
We...
2004 Aug 06
4
Second patch again CVS version
On 24/02/02 05:02, Jack Moffitt shaped the electrons to say:
> > - The server didn't check for the status of the client's socket before
> > the unblocking send(). This caused a disconnection at a minimun network
> > congestion, causing a broken pipe error (Linux 2.4 behaviour?) in the
> > network. I've just added a poll in sock.c.>
> Can you send me this
2004 Aug 06
0
Second patch again CVS version
...le algorithm off, so there it doesn't introduce delays
> (although it can generate more messages). Should be tested in severeal
> conditions.
Sorry, didn't explain well.
Nagle's algorithm (rfc896) buffers user data until there is no pending acks
or it can send a full segment (rfc1122).
icecast doesn't need it at all, because it already sends large buffers and
the time to send the next buffers is relatively very long.
<p>
--
ricardo
"I just stopped using Windows and now you tell me to use Mirrors?"
- said Aunt Tillie, just before downloading 2.5.3...
2003 May 26
0
ip_input.c
Hi, secfolks.
While reading ip_input.c I have met following lines:
;-------------------------------------------------
/* 127/8 must not appear on wire - RFC1122 */
if ((ntohl(ip->ip_dst.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET ||
(ntohl(ip->ip_src.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET) {
if ((m->m_pkthdr.rcvif->if_flags & IFF_LOOPBACK) == 0) {
ipstat.ips_badaddr++;...