X-Git-Url: http://git.onelab.eu/?p=libnl.git;a=blobdiff_plain;f=include%2Fnetlink%2Fobject.h;fp=include%2Fnetlink%2Fobject.h;h=6999ff29277e702d705588058e97cccfba33a226;hp=0000000000000000000000000000000000000000;hb=4cee2ecb3b8afa0637e6f5fe4c57985a4bc740ff;hpb=2df2fbe518d5a221ce6e3ee88a3fb23fb1b94b27 diff --git a/include/netlink/object.h b/include/netlink/object.h new file mode 100644 index 0000000..6999ff2 --- /dev/null +++ b/include/netlink/object.h @@ -0,0 +1,42 @@ +/* + * netlink/object.c Generic Cacheable Object + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation version 2.1 + * of the License. + * + * Copyright (c) 2003-2006 Thomas Graf + */ + +#ifndef NETLINK_OBJECT_H_ +#define NETLINK_OBJECT_H_ + +#include +#include + +struct nl_cache; +struct nl_object; +struct nl_cache_ops; + +/* General */ +extern struct nl_object * nl_object_alloc(size_t size); +extern struct nl_object * nl_object_alloc_from_ops(struct nl_cache_ops *); +extern struct nl_object * nl_object_alloc_name(const char *); +extern void nl_object_free(struct nl_object *); +extern struct nl_object * nl_object_clone(struct nl_object *obj); +extern void nl_object_get(struct nl_object *); +extern void nl_object_put(struct nl_object *); +extern int nl_object_shared(struct nl_object *); +extern void nl_object_dump(struct nl_object *, + struct nl_dump_params *); +extern int nl_object_match(struct nl_object *, + struct nl_object *); + +/* Access Functions */ +extern int nl_object_get_refcnt(struct nl_object *); +extern struct nl_cache_ops * nl_object_get_ops(struct nl_object *); +extern struct nl_cache * nl_object_get_cache(struct nl_object *); +extern inline void * nl_object_priv(struct nl_object *); + +#endif