Add timestamp/serial to cookies, with timeout
diff --git a/include/polarssl/ssl_cookie.h b/include/polarssl/ssl_cookie.h
index a28f338..7db00c2 100644
--- a/include/polarssl/ssl_cookie.h
+++ b/include/polarssl/ssl_cookie.h
@@ -48,7 +48,10 @@
  */
 typedef struct
 {
-    md_context_t    hmac_ctx;
+    md_context_t    hmac_ctx;       /*!< context for the HMAC portion   */
+#if !defined(POLARSSL_HAVE_TIME)
+    unsigned long   serial;         /*!< serial number for expiration   */
+#endif
 } ssl_cookie_ctx;
 
 /**