aboutsummaryrefslogtreecommitdiff
path: root/src/lib/ndpi_utils.c
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2024-09-19 13:18:26 +0200
committerLuca Deri <deri@ntop.org>2024-09-19 13:18:26 +0200
commit191694f797639fc0b56adcf050bc9cfa8dc02f3d (patch)
tree58c51d7bfe0e346192a0296cf942aae2590da1eb /src/lib/ndpi_utils.c
parent456bc2a52c06c16e12e01c5ec8426bc8783961c1 (diff)
Implemented ndpi_strrstr()
Fixed bug in ndpi_get_host_domain
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r--src/lib/ndpi_utils.c26
1 files changed, 24 insertions, 2 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c
index 6a2e237a3..a1b0a5e6e 100644
--- a/src/lib/ndpi_utils.c
+++ b/src/lib/ndpi_utils.c
@@ -3424,8 +3424,8 @@ int tpkt_verify_hdr(const struct ndpi_packet_struct * const packet)
/* ******************************************* */
-int64_t ndpi_strtonum(const char *numstr, int64_t minval, int64_t maxval, const char **errstrp, int base)
-{
+int64_t ndpi_strtonum(const char *numstr, int64_t minval,
+ int64_t maxval, const char **errstrp, int base) {
int64_t val = 0;
char* endptr;
@@ -3441,14 +3441,17 @@ int64_t ndpi_strtonum(const char *numstr, int64_t minval, int64_t maxval, const
*errstrp = "value too small";
return 0;
}
+
if((val == LLONG_MAX && errno == ERANGE) || (val > maxval )) {
*errstrp = "value too large";
return 0;
}
+
if(errno != 0 && val == 0) {
*errstrp = "generic error";
return 0;
}
+
if(endptr == numstr) {
*errstrp = "No digits were found";
return 0;
@@ -3459,6 +3462,25 @@ int64_t ndpi_strtonum(const char *numstr, int64_t minval, int64_t maxval, const
return val;
}
+/* ****************************************************** */
+
+char* ndpi_strrstr(const char *haystack, const char *needle) {
+ char *ret = NULL;
+
+ while(true) {
+ char *s = strstr(haystack, needle);
+
+ if(s == NULL)
+ break;
+ else {
+ ret = s;
+ haystack = &s[1]; /* Skip the first char */
+ }
+ }
+
+ return(ret);
+}
+
/* ******************************************* */
const char *ndpi_lru_cache_idx_to_name(lru_cache_type idx)