diff options
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 5a6376c6f..a9e34f30b 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -8421,3 +8421,22 @@ char *ndpi_hostname_sni_set(struct ndpi_flow_struct *flow, const u_int8_t *value return dst; } + +/* ******************************************************************** */ + +char *ndpi_user_agent_set(struct ndpi_flow_struct *flow, const u_int8_t *value, size_t value_len) +{ + if (flow->http.user_agent != NULL) + { + return NULL; + } + + flow->http.user_agent = ndpi_malloc(value_len + 1); + if (flow->http.user_agent != NULL) + { + memcpy(flow->http.user_agent, value, value_len); + flow->http.user_agent[value_len] = '\0'; + } + + return flow->http.user_agent; +} |