1
0
Fork 0
mirror of https://github.com/yarrick/iodine.git synced 2025-04-04 13:53:34 +03:00

be more conservative with max hostname/data len

This commit is contained in:
frekky 2017-07-04 21:45:35 +02:00
parent 6e7099866f
commit 2a425b90f7

View file

@ -27,8 +27,8 @@ size_t
get_raw_length_from_dns(size_t enc_bytes, struct encoder *enc, const char *topdomain)
/* Returns the maximum length of raw data that can be encoded into enc_bytes */
{
/* 2 byte for something - seems necessary */
size_t enc_datalen = enc_bytes - strlen(topdomain) - 2;
/* 4 byte for dots and extra - seems necessary */
size_t enc_datalen = enc_bytes - strlen(topdomain) - 4;
/* Number of dots in length of encoded data */
size_t dots = 1;
if (!enc->eats_dots()) /* Dots are not included in encoded data length */