infinite interval when under 0
This commit is contained in:
@ -6,7 +6,7 @@
|
|||||||
/* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */
|
/* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2025/04/24 22:49:22 by tomoron #+# #+# */
|
/* Created: 2025/04/24 22:49:22 by tomoron #+# #+# */
|
||||||
/* Updated: 2025/08/24 17:08:44 by tomoron ### ########.fr */
|
/* Updated: 2025/08/24 19:55:45 by tomoron ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
#include "includes/ft_ping.h"
|
#include "includes/ft_ping.h"
|
||||||
@ -69,7 +69,7 @@ t_waitlist *send_icmp(t_settings *set, struct addrinfo *host, uint16_t *seq, t_s
|
|||||||
t_waitlist *ret;
|
t_waitlist *ret;
|
||||||
size_t len;
|
size_t len;
|
||||||
|
|
||||||
if(timediff(&set->last_send_time) < set->interval)
|
if(timediff(&set->last_send_time) < set->interval || (set->interval < 0 && stats->sent))
|
||||||
return (0);
|
return (0);
|
||||||
gettimeofday(&set->last_send_time, 0);
|
gettimeofday(&set->last_send_time, 0);
|
||||||
packet = prepare_icmp_echo(*seq, set->id);
|
packet = prepare_icmp_echo(*seq, set->id);
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
/* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */
|
/* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2025/04/26 17:01:53 by tomoron #+# #+# */
|
/* Created: 2025/04/26 17:01:53 by tomoron #+# #+# */
|
||||||
/* Updated: 2025/08/24 16:43:35 by tomoron ### ########.fr */
|
/* Updated: 2025/08/24 19:53:30 by tomoron ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
#include "includes/ft_ping.h"
|
#include "includes/ft_ping.h"
|
||||||
@ -69,7 +69,7 @@ int check_values(t_settings *set, char *name)
|
|||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (set->interval < 0.2)
|
if (set->interval < 0.2 && set->interval >= 0)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "%s: option value is too small: %g\n", name, set->interval);
|
fprintf(stderr, "%s: option value is too small: %g\n", name, set->interval);
|
||||||
return(0);
|
return(0);
|
||||||
|
Reference in New Issue
Block a user