ofp-util: Work on decoding OF1.1 flow_mods.
[openvswitch] / lib / random.h
index 198adeabfa68d8be11def6fc5397b346f17ecedd..eaac1437b3f0dd4b6a07f0a8bbbb9cf6aff8b488 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2008, 2009 Nicira Networks.
+ * Copyright (c) 2008, 2009, 2010, 2012 Nicira, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 #include <stdint.h>
 
 void random_init(void);
+void random_set_seed(uint32_t);
+
 void random_bytes(void *, size_t);
 uint8_t random_uint8(void);
 uint16_t random_uint16(void);
 uint32_t random_uint32(void);
+uint64_t random_uint64(void);
 int random_range(int max);
 
 #endif /* random.h */