Questions tagged [rfc]

An RFC is a "Request For Comments": the form of internet standards from the Internet Engineering Task Force (IETF) until they are made standards. And the usual form of reference to those standards.

An RFC is a "Request For Comments": the form of internet standards from the Internet Engineering Taskforce (IETF) until they are made standards. And the usual form of reference to those standards.

Official Site: http://www.ietf.org/rfc.html

590 questions
3
votes
1 answer

What does the AAAA in an AAAA record mean?

What does the AAAA in an AAAA record mean? I am guessing it is for address:address:address:address but couldn't even find a mention of AAAA in the IPv6 specification. Please provide a source.
Elijah Lynn
  • 12,272
  • 10
  • 61
  • 91
3
votes
2 answers

HTTP Status Code Priority and Processing

Let's say a web application gets the following request: POST /some/endpoint HTTP/1.1 Host: Accept: application/json Accept-Language: pt Content-Type: application/json If-Match: "blabla" Some body If the server doesn't support HTTP 1.1…
user2141650
  • 2,827
  • 1
  • 15
  • 23
3
votes
1 answer

URN/URI For Software Manufacturer/Product/Version

I am working on extending a current logger solution that I would like to include more information than just class, line number, log level, date, etc. I would like to also capture the host name, the manufacturer of the software that generated the…
davidemm
  • 2,001
  • 1
  • 23
  • 31
3
votes
2 answers

diffie-hellman ssh keyxchange

I've set out to make a primitive SSH client in C#; you might remember me from posts such as primitive ssh connection (lowlevel) hehe. Anyway, things are great up until the time when I initiate a DH key exchange. I've compared the traffic when I…
Chuck
  • 125
  • 2
  • 6
3
votes
2 answers

Which RFCs specify the syntax of hostnames and constraints on DNS hostnames?

Regarding the syntax of hostnames, answers to questions like this often refer to RFC 1123 and RFC 952, but fail to mention RFC 921 which seems to place additional restrictions on hostnames. There are probably a bunch of later RFCs about the DNS (and…
jotik
  • 17,044
  • 13
  • 58
  • 123
3
votes
1 answer

In quoted-printable, what constitutes a line break according to the 76 character rule?

While the RFC 2045 clearly states that a line in quoted-printable (QP) must not be longer than 76 characters, in the real-world not every client seems to follow this requirement. Or could it be I misunderstand the requirement from the RFC? Consider…
0xC0000022L
  • 20,597
  • 9
  • 86
  • 152
3
votes
1 answer

DHCP Options field padding

According to RFC2132 "Pad Option" (0s) CAN be used to align subsequent fields on word boundaries. But looking at DHCP packets I can't tell what is the size of the "word". Onetime "Options" field is 32 bytes, one time is 60 bytes. In my setup the…
Chris
  • 1,213
  • 1
  • 21
  • 38
3
votes
2 answers

RFC question about cookies and paths

I'm trying to set a session cookie restricted to a particular path (let's say /foo) when a user logs in. The complication being that the login page is on /, but the request immediately redirects to /foo/something. Something like this: Request: POST…
Dan
  • 61,568
  • 9
  • 61
  • 78
3
votes
1 answer

Different query/parameter separators in URIs

I wonder what the different parameter separators in (SIP) URIs indicate? Some separated by ;, like: . Other are separated by ? and &, like:
John Fear
  • 1,265
  • 2
  • 8
  • 10
3
votes
2 answers

Why Gmail doesn't display my RFC 2047-encoded From header?

My Python application uses email.header.Header (http://docs.python.org/2/library/email.header.html ) to encode all headers of outgoing email (including From header), just like indicated here: Encoding mail subject (SMTP) in Python with non-ASCII…
Marcin
  • 591
  • 5
  • 12
3
votes
2 answers

Does Spring MVC URI Template processing implement RFC 6570?

I am trying to find a definitive answer as to how URI Templates in Spring MVC are parsed. The Documentation links to the Draft RFC, but Spring is not listed in the RFC's implementations page On the other hand, this page seems to suggest that they…
Alexandre Roger
  • 971
  • 7
  • 8
3
votes
1 answer

Nonstandard DMARC report sent by Google

I'm working on a system which parses DMARC reports and I figured the following issue: Sometimes, Google sends nonstandard e-mails, as can be seen below: MIME-Version: 1.0 X-Received: by x.x.x.x with SMTP id xxxx.xx.xxxx; Thu, 22 Aug 2013 02:13:03…
Cristian Ciocău
  • 1,024
  • 2
  • 10
  • 14
3
votes
1 answer

RTP AAC Packet Depacketizer

I asked earlier about H264 at RTP H.264 Packet Depacketizer My question now is about the audio packets. I noticed via the RTP packets that audio frames like AAC, G.711, G.726 and others all have the Marker Bit set. I think frames are independent. am…
pcbb
  • 67
  • 2
  • 4
3
votes
2 answers

How to write a good RFC standard and where to get started?

I was wondering what it requires to write a standard which targets programmers (e.g. JSON) and where to get started? Does anyone has hands-on experience on that?
Michal
  • 3,141
  • 5
  • 27
  • 29
3
votes
3 answers

Implementing an HTTP proxy

I would like to implement and HTTP proxy server to get a deeper understanding of some of the finer points of the protocol and learn some socket programming along the way but I don't want to implement a full-blown HTTP server. What are the relevant…
David K.
  • 6,153
  • 10
  • 47
  • 78