mirror of
https://github.com/cesanta/mongoose.git
synced 2025-01-07 21:05:29 +08:00
849ec1684a
PUBLISHED_FROM=5cd78790a03580aa23dd3d2d8b825ad449083cc2
22 lines
643 B
Markdown
22 lines
643 B
Markdown
---
|
|
title: "mg_dns_uncompress_name()"
|
|
decl_name: "mg_dns_uncompress_name"
|
|
symbol_kind: "func"
|
|
signature: |
|
|
size_t mg_dns_uncompress_name(struct mg_dns_message *msg, struct mg_str *name,
|
|
char *dst, int dst_len);
|
|
---
|
|
|
|
Uncompresses a DNS compressed name.
|
|
|
|
The containing DNS message is required because of the compressed encoding
|
|
and reference suffixes present elsewhere in the packet.
|
|
|
|
If the name is less than `dst_len` characters long, the remainder
|
|
of `dst` is terminated with `\0` characters. Otherwise, `dst` is not
|
|
terminated.
|
|
|
|
If `dst_len` is 0 `dst` can be NULL.
|
|
Returns the uncompressed name length.
|
|
|