diff options
Diffstat (limited to 'source4/include/smb.h')
-rw-r--r-- | source4/include/smb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/include/smb.h b/source4/include/smb.h index 3c03c7d7f1..fcde3848dc 100644 --- a/source4/include/smb.h +++ b/source4/include/smb.h @@ -192,6 +192,11 @@ typedef struct datablob { size_t length; } DATA_BLOB; +struct data_blob_list_item { + struct data_blob_list_item *prev,*next; + DATA_BLOB blob; +}; + /* by making struct ldb_val and DATA_BLOB the same, we can simplify a fair bit of code */ #define ldb_val datablob |