From 4feedef94b254f5aaf8e7cf7cd104ddfffd8496a Mon Sep 17 00:00:00 2001 From: Christopher Davis Date: Mon, 29 Nov 2010 07:18:32 -0800 Subject: [PATCH] Add a few more comments. --- http-internal.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/http-internal.h b/http-internal.h index 7a2446ff..01d29132 100644 --- a/http-internal.h +++ b/http-internal.h @@ -126,9 +126,11 @@ struct evhttp_bound_socket { struct evconnlistener *listener; }; +/* server alias list item. */ struct evhttp_server_alias { TAILQ_ENTRY(evhttp_server_alias) next; - char *alias; + + char *alias; /* the server alias. */ }; struct evhttp {