Warn if ttl is out of bounds
authorTim Laszlo <Tim.Laszlo@magnetar.com>
Fri, 20 Jun 2014 13:37:19 +0000 (08:37 -0500)
committerTim Laszlo <Tim.Laszlo@magnetar.com>
Fri, 20 Jun 2014 13:37:19 +0000 (08:37 -0500)
src/network.c

index 98cb8eb..8cf1703 100644 (file)
@@ -2897,6 +2897,10 @@ static int network_config_set_ttl (const oconfig_item_t *ci) /* {{{ */
   tmp = (int) ci->values[0].value.number;
   if ((tmp > 0) && (tmp <= 255))
     network_config_ttl = tmp;
+  else {
+    WARNING ("network plugin: The `TimeToLive' must be between 1 and 255.");
+    return (-1);    
+  }
 
   return (0);
 } /* }}} int network_config_set_ttl */