]> code.citadel.org Git - citadel.git/blobdiff - webcit/locate_host.c
Began making changes to do better handling of character sets.
[citadel.git] / webcit / locate_host.c
index 034fd05e9ef0c2bb4231a368cbcf265b81b64fb9..7b5869907c8cb3cdb9c54e13295b3a5689c43ff4 100644 (file)
@@ -1,12 +1,20 @@
 /*
  * $Id$
- *
- * Examine a socket and determine the name/address of the originating host.
  */
-
+/**
+ * \defgroup Hostlookup Examine a socket and determine the name/address of the originating host.
+ * \ingroup WebcitHttpServer
+ */
+/*@{*/
 
 #include "webcit.h"
 
+/**
+ * \brief get a hostname 
+ * \todo buffersize?
+ * \param tbuf the returnbuffer
+ * \param client_socket the sock fd where the client is connected
+ */
 void locate_host(char *tbuf, int client_socket)
 {
        struct sockaddr_in cs;
@@ -32,3 +40,5 @@ void locate_host(char *tbuf, int client_socket)
        }
        safestrncpy(tbuf, ch->h_name, 64);
 }
+
+/*@}*/