git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Change the default for hosts_try_dane, enabling use by default
[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