summaryrefslogtreecommitdiffstats
path: root/include/libipset/icmp.h
blob: fc76fe5bf0d8e2c6fa5b5242e04e22e6fdbfe477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Copyright 2007-2010 Jozsef Kadlecsik (kadlec@netfilter.org)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#ifndef LIBIPSET_ICMP_H
#define LIBIPSET_ICMP_H

#include <stdint.h>				/* uintxx_t */

#ifdef __cplusplus
extern "C" {
#endif

extern const char *id_to_icmp(uint8_t id);
extern const char *icmp_to_name(uint8_t type, uint8_t code);
extern int name_to_icmp(const char *str, uint16_t *typecode);

#ifdef __cplusplus
}
#endif

#endif /* LIBIPSET_ICMP_H */