tor/src/feature/dirparse/policy_parse.h

26 lines
756 B
C
Raw Normal View History

2018-10-01 18:08:09 +02:00
/* Copyright (c) 2001 Matej Pfajfar.
* Copyright (c) 2001-2004, Roger Dingledine.
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
2019-01-16 18:32:32 +01:00
* Copyright (c) 2007-2019, The Tor Project, Inc. */
2018-10-01 18:08:09 +02:00
/* See LICENSE for licensing information */
/**
* \file policy_parse.h
* \brief Header file for policy_parse.c.
**/
#ifndef TOR_POLICY_PARSE_H
#define TOR_POLICY_PARSE_H
#include "lib/testsupport/testsupport.h"
struct directory_token_t;
MOCK_DECL(addr_policy_t *, router_parse_addr_policy_item_from_string,
(const char *s, int assume_action, int *malformed_list));
addr_policy_t *router_parse_addr_policy(struct directory_token_t *tok,
unsigned fmt_flags);
#endif /* !defined(TOR_POLICY_PARSE_H) */