ACL: Ensure that acl_smtp_notquit is called for a conndrop between data-go-ahead...
[exim.git] / src / src / blob.h
1 /*
2 * Blob - a general pointer/size item for a memory chunk
3 *
4 * Copyright (C) 2016 Exim maintainers
5 */
6
7 #ifndef BLOB_H /* entire file */
8 #define BLOB_H
9
10 typedef struct {
11 uschar * data;
12 size_t len;
13 } blob;
14
15 #endif