diff options
author | David Goulet <dgoulet@torproject.org> | 2019-10-28 08:47:57 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2019-10-28 08:47:57 -0400 |
commit | b98631d28082fd17a7568d693ebe97b4986fce56 (patch) | |
tree | 55b32b992e1e6fcf9883d40c0653994be227b709 /src/lib/container | |
parent | 25d66a33911df8561765b58b08d691b4afd36344 (diff) | |
parent | bc4b9d7df48106cb4cba4c3a288510038d7faea3 (diff) | |
download | tor-b98631d28082fd17a7568d693ebe97b4986fce56.tar.gz tor-b98631d28082fd17a7568d693ebe97b4986fce56.zip |
Merge branch 'tor-github/pr/1476'
Diffstat (limited to 'src/lib/container')
-rw-r--r-- | src/lib/container/namemap.c | 5 | ||||
-rw-r--r-- | src/lib/container/namemap_st.h | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/container/namemap.c b/src/lib/container/namemap.c index a90057b32c..909dcc9f03 100644 --- a/src/lib/container/namemap.c +++ b/src/lib/container/namemap.c @@ -3,6 +3,11 @@ * Copyright (c) 2007-2018, The Tor Project, Inc. */ /* See LICENSE for licensing information */ +/** + * @file namemap.c + * @brief Mappings between identifiers and 16-bit ints. + **/ + #include "orconfig.h" #include "lib/container/smartlist.h" #include "lib/container/namemap.h" diff --git a/src/lib/container/namemap_st.h b/src/lib/container/namemap_st.h index 2fa73fc173..20a8051918 100644 --- a/src/lib/container/namemap_st.h +++ b/src/lib/container/namemap_st.h @@ -6,6 +6,11 @@ #ifndef NAMEMAP_ST_H #define NAMEMAP_ST_H +/** + * @file namemap_st.h + * @brief Internal declarations for namemap structure. + **/ + #include "lib/cc/compat_compiler.h" #include "ext/ht.h" |