diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2022-01-05 11:05:57 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2022-01-05 11:05:57 +0000 |
commit | 54b231266b2b1aa73765700be8eff7de6246f1f5 (patch) | |
tree | d43b24c483b3b4f5315d267244c488c2672e6182 /contrib/librdns/dns_private.h | |
parent | 9ed19f57437a19340c7aafe81a67498821ccc179 (diff) | |
download | rspamd-54b231266b2b1aa73765700be8eff7de6246f1f5.tar.gz rspamd-54b231266b2b1aa73765700be8eff7de6246f1f5.zip |
[Project] Rdns: Fix various ownership issuesrdns-tcp-rework
Diffstat (limited to 'contrib/librdns/dns_private.h')
-rw-r--r-- | contrib/librdns/dns_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/librdns/dns_private.h b/contrib/librdns/dns_private.h index 359334c8d..adb753fd4 100644 --- a/contrib/librdns/dns_private.h +++ b/contrib/librdns/dns_private.h @@ -154,7 +154,7 @@ enum rdns_io_channel_flags { struct rdns_tcp_output_chain { uint16_t next_write_size; /* Network byte order! */ uint16_t cur_write; /* Cur bytes written including `next_write_size` */ - struct rdns_request *req; + unsigned char *write_buf; struct rdns_tcp_output_chain *prev, *next; }; |