Home | History | Annotate | Download | only in cls
      1 /*
      2  * netlink/route/cls/fw.h	fw classifier
      3  *
      4  *	This library is free software; you can redistribute it and/or
      5  *	modify it under the terms of the GNU Lesser General Public
      6  *	License as published by the Free Software Foundation version 2.1
      7  *	of the License.
      8  *
      9  * Copyright (c) 2003-2006 Thomas Graf <tgraf (at) suug.ch>
     10  * Copyright (c) 2006 Petr Gotthard <petr.gotthard (at) siemens.com>
     11  * Copyright (c) 2006 Siemens AG Oesterreich
     12  */
     13 
     14 #ifndef NETLINK_FW_H_
     15 #define NETLINK_FW_H_
     16 
     17 #include <netlink/netlink.h>
     18 #include <netlink/route/classifier.h>
     19 
     20 #ifdef __cplusplus
     21 extern "C" {
     22 #endif
     23 
     24 extern int	rtnl_fw_set_classid(struct rtnl_cls *, uint32_t);
     25 extern int	rtnl_fw_set_mask(struct rtnl_cls *, uint32_t);
     26 
     27 #ifdef __cplusplus
     28 }
     29 #endif
     30 
     31 #endif
     32