From e72d6077b475bc6142afc3b5967db113922c76f5 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sun, 14 Oct 2007 22:27:51 +0000 Subject: Fixed an interesting ideosyncacy in Bu::Hash in a safe way, I should try to do this with the Bu::Archive next. Basically, there's one generic template function that will convert anything that can safely cast to a uint32_t and that supports direct comparisson, and doesn't have it's own override already to be a Hash key, such as char, uint8_t, uint64_t, etc. The Telnet protocol handler does everything I need it too for now, next up for it is escape sequence handling, it would be nice to make this general too, by using the termcap database or something, but there is an ANSI/ISO standard now, I may just go ahead and use that. Also, it looks like it'd be pretty easy to make the canonical mode editing functions be pluggable to facilitate different types of editing, but that can be done down the road as well. --- src/protocolhttp.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/protocolhttp.h') diff --git a/src/protocolhttp.h b/src/protocolhttp.h index e2612f5..85510e3 100644 --- a/src/protocolhttp.h +++ b/src/protocolhttp.h @@ -11,7 +11,14 @@ namespace Bu { /** - * + * An HTTP Protocol handler. Yes, I know that HTTP stands for Hyper Text + * Transfer Protocol, and that the Protocol part is redundant, but in this + * case the word Protocol is refering to the Libbu++ construct Bu::Protocol, + * and not a means of encoding conversations. Anyway, this class represents + * a general HTTP server processor. Every time a request comes in it calls + * the onRequest function in a subclass with the method and URI that were + * requested. The sub-class can then do whatever it needs to to send back + * a response. */ class ProtocolHttp : public Protocol { -- cgit v1.2.3