diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-04-13 08:04:15 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-04-13 08:04:15 +0000 |
commit | 99d8e31973c22e3b7a8cba62dd2bbae6a0fab0b8 (patch) | |
tree | a0a881180bfb95f8b6a7e494ecadd1d6d4fabe5c /sys/net/art.h | |
parent | 17e91c3e08c62fd92af16ba5954ef55177e773b5 (diff) |
Keep all pools in the same place.
ok jmatthew@
Diffstat (limited to 'sys/net/art.h')
-rw-r--r-- | sys/net/art.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/net/art.h b/sys/net/art.h index a6bfd39d4a0..48e172bce95 100644 --- a/sys/net/art.h +++ b/sys/net/art.h @@ -1,4 +1,4 @@ -/* $OpenBSD: art.h,v 1.11 2016/04/12 06:40:44 mpi Exp $ */ +/* $OpenBSD: art.h,v 1.12 2016/04/13 08:04:14 mpi Exp $ */ /* * Copyright (c) 2015 Martin Pieuchot @@ -59,4 +59,7 @@ struct art_node *art_lookup(struct art_root *, uint8_t *, int); int art_walk(struct art_root *, int (*)(struct art_node *, void *), void *); +struct art_node *art_get(struct sockaddr *, uint8_t); +void art_put(struct art_node *); + #endif /* _NET_ART_H_ */ |