I think there are a lot of people out there unaware of RFC's (Request for Comments). I know what they are at a logical level, but can anybody give a good description for a new developer? Also, sharing some resources on how to use and read them would be nice.
相关问题
- Are x86 Assembly Mnemonic standarized?
- Are C preprocessor statements a part of the C lang
- imap_search() unknown search criterion “OR”
- Default argument and parameter promotions in C
- What if an object passed into std::swap throws an
相关文章
- Is there a standard way to store XY data in python
- What is the longest possible email address? [dupli
- W3C document states
- How to compute standard error for predicted data i
- C++: Calculate number of possible floating-point v
- operator new with empty exception-specification ca
- Should I prevent password autocomplete?
- How can I prevent a nameless struct\\union?
The term comes from the days of ARPANET, the predecessor to the internet, where the researchers would basically just throw ideas out there to, well, make a request for comments from the other researchers on the project. They could be about pretty much anything and were not very formal at the time. If you go read them, it’s pretty comical how informal they were.
Now, there are more standards about what goes in RFC's and you can't get an RFC published until you have met strict guidelines and have done extensive research. They are pretty much reserved for well researched network standards that have been approved by the IETF.
It's a Request For Comments. That title is a little misleading though, as it's often used as a name for standards, mostly those by the IETF. See Wikipedia
This could also mean "Request for Change" in an Agile environment. Just throwing that out there as everyone is so certain is just means "Request for Comments".
Wikipedia gives a good description of what [RFC] is about but in a nutshell it is a set of recommendation from the Internet Engineering Task Force applicable to the working of the Internet and Internet-connected systems. They are used as the standards.
So if you're looking for a definitive source of the information about the implementation of FTP, LDAP, IMAP, POP etc you don't have to look further than the appropriate RFC documents.
From http://linux.about.com/cs/linux101/g/rfclparrequestf.htm
See also: RFC Wikipedia Article