lib/netdev-dpdk: make device name parsing more robust
[cascardo/ovs.git] / lib / route-table.h
index 1479249..54d77f4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011 Nicira, Inc.
+ * Copyright (c) 2011, 2012, 2013, 2014 Nicira, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 #ifndef ROUTE_TABLE_H
 #define ROUTE_TABLE_H 1
 
+#include <sys/types.h>
+#include <sys/socket.h>
 #include <net/if.h>
 #include <stdbool.h>
 #include <stdint.h>
 
 #include "openvswitch/types.h"
 
-bool route_table_get_ifindex(ovs_be32 ip, int *ifindex);
-bool route_table_get_name(ovs_be32 ip, char name[IFNAMSIZ]);
-void route_table_register(void);
-void route_table_unregister(void);
+uint64_t route_table_get_change_seq(void);
+void route_table_init(void);
 void route_table_run(void);
 void route_table_wait(void);
+bool route_table_fallback_lookup(ovs_be32, char [], ovs_be32 *);
 
 #endif /* route-table.h */