summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-05-10 07:54:13 +0000
committerRoger Dingledine <arma@torproject.org>2004-05-10 07:54:13 +0000
commit5dd9e60231f3b59d86149d0efec6fdf8257e384b (patch)
treeea83e0a5562fdc1fce5d63716b13e1e4c70e3bf1
parent341d6f2cabcd71656bf9501f2157b7172eec7309 (diff)
downloadtor-5dd9e60231f3b59d86149d0efec6fdf8257e384b.tar.gz
tor-5dd9e60231f3b59d86149d0efec6fdf8257e384b.zip
doxygen markup for common/*.h
svn:r1840
-rw-r--r--src/common/aes.h5
-rw-r--r--src/common/crypto.h2
-rw-r--r--src/common/fakepoll.h5
-rw-r--r--src/common/log.h5
-rw-r--r--src/common/test.h5
-rw-r--r--src/common/torint.h8
-rw-r--r--src/common/tortls.h5
-rw-r--r--src/common/util.h2
8 files changed, 31 insertions, 6 deletions
diff --git a/src/common/aes.h b/src/common/aes.h
index 2edbb8818c..3c63a0e4f2 100644
--- a/src/common/aes.h
+++ b/src/common/aes.h
@@ -7,6 +7,11 @@
#ifndef __AES_H
#define __AES_H
+/**
+ * \file aes.h
+ * \brief Headers for aes.c
+ */
+
#include "../common/torint.h"
struct aes_cnt_cipher;
diff --git a/src/common/crypto.h b/src/common/crypto.h
index 019a536a4c..2b752af372 100644
--- a/src/common/crypto.h
+++ b/src/common/crypto.h
@@ -3,7 +3,7 @@
/* $Id$ */
/**
- * \file crypto.c
+ * \file crypto.h
*
* \brief Headers for low-level cryptographic functions.
**/
diff --git a/src/common/fakepoll.h b/src/common/fakepoll.h
index 783aff0c42..bf11237dd1 100644
--- a/src/common/fakepoll.h
+++ b/src/common/fakepoll.h
@@ -5,6 +5,11 @@
#ifndef __FAKEPOLL_H
#define __FAKEPOLL_H
+/**
+ * \file fakepoll.h
+ * \brief Headers for fakepoll.c
+ */
+
#include "orconfig.h"
#define POLL_NO_WARN
diff --git a/src/common/log.h b/src/common/log.h
index 5f900d320e..fa830a9b46 100644
--- a/src/common/log.h
+++ b/src/common/log.h
@@ -10,6 +10,11 @@
#ifndef __LOG_H
+/**
+ * \file log.h
+ * \brief Headers for log.c
+ */
+
#ifdef HAVE_SYSLOG_H
#include <syslog.h>
#define LOG_WARN LOG_WARNING
diff --git a/src/common/test.h b/src/common/test.h
index 15615f3991..81d54b88f3 100644
--- a/src/common/test.h
+++ b/src/common/test.h
@@ -5,6 +5,11 @@
#ifndef __TEST_H
#define __TEST_H
+/**
+ * \file test.h
+ * \brief Headers for test.c
+ */
+
#include <string.h>
#include <stdio.h>
diff --git a/src/common/torint.h b/src/common/torint.h
index ce2d067ab4..07e291e51e 100644
--- a/src/common/torint.h
+++ b/src/common/torint.h
@@ -2,16 +2,16 @@
/* See LICENSE for licensing information */
/* $Id$ */
-/*****
- * torint.h: Header file to define uint32_t and friends.
- *****/
+/**
+ * \file torint.h
+ * \brief Header file to define uint32_t and friends
+ **/
#ifndef __TORINT_H
#define __TORINT_H
#include "orconfig.h"
-
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
diff --git a/src/common/tortls.h b/src/common/tortls.h
index b69e951bbe..f9ffb0edc0 100644
--- a/src/common/tortls.h
+++ b/src/common/tortls.h
@@ -5,6 +5,11 @@
#ifndef _TORTLS_H
#define _TORTLS_H
+/**
+ * \file tortls.h
+ * \brief Headers for tortls.c
+ **/
+
#include "../common/crypto.h"
/* Opaque structure to hold a TLS connection. */
diff --git a/src/common/util.h b/src/common/util.h
index ed01e65732..04811abfa1 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -5,7 +5,7 @@
/**
* \file util.h
* \brief Headers for util.c
- */
+ **/
#ifndef __UTIL_H
#define __UTIL_H