mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
dfd7a7f5b6
We'll be using this for four kinds of identifier in dispatch.c
36 lines
970 B
C
36 lines
970 B
C
/* Copyright (c) 2003-2004, Roger Dingledine
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
|
* Copyright (c) 2007-2018, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
#ifndef TOR_NAMEMAP_H
|
|
#define TOR_NAMEMAP_H
|
|
|
|
/**
|
|
* \file namemap.h
|
|
*
|
|
* \brief Header for namemap.c
|
|
**/
|
|
|
|
#include "lib/cc/compat_compiler.h"
|
|
#include "ext/ht.h"
|
|
|
|
#include <stddef.h>
|
|
|
|
typedef struct namemap_t namemap_t;
|
|
|
|
/** Returned in place of an identifier when an error occurs. */
|
|
#define NAMEMAP_ERR UINT_MAX
|
|
|
|
void namemap_init(namemap_t *map);
|
|
const char *namemap_get_name(const namemap_t *map, unsigned id);
|
|
const char *namemap_fmt_name(const namemap_t *map, unsigned id);
|
|
unsigned namemap_get_id(const namemap_t *map,
|
|
const char *name);
|
|
unsigned namemap_get_or_create_id(namemap_t *map,
|
|
const char *name);
|
|
size_t namemap_get_size(const namemap_t *map);
|
|
void namemap_clear(namemap_t *map);
|
|
|
|
#endif
|