chiark / gitweb /
buffer: Abolish unused `flags'
[secnet.git] / secnet.h
index c6e8f4966164762c4dd3d0a918f5e4c5308cefc8..5b1e24b402fff7bb8c3426425bb937ae93fdb3f4 100644 (file)
--- a/secnet.h
+++ b/secnet.h
@@ -379,8 +379,8 @@ extern init_module log_module;
 struct buffer_if;
 
 struct alg_msg_data {
-    uint8_t *sigstart;
-    int32_t siglen;
+    uint8_t *start;
+    int32_t len;
 };
 
 /* PURE closure requires no interface */
@@ -659,7 +659,6 @@ struct hash_if {
 struct buffer_if {
     bool_t free;
     cstring_t owner; /* Set to constant string */
-    uint32_t flags; /* How paranoid should we be? */
     struct cloc loc; /* Where we were defined */
     uint8_t *base;
     uint8_t *start;