timer/ping_pong.h
Zack Buhman 8c1c1e97f6 duplicate send, resend, ack
The 'software' renderer is now explicitly requested.
2024-06-26 02:44:07 -05:00

14 lines
295 B
C

#pragma once
#include <netinet/in.h>
#include "link.h"
#define PING_INTERVAL 1
int handle_ping_pong(int sockfd,
struct sockaddr_in6 * dest_addr,
void * buf, ssize_t length,
struct link_state * link_state
);