From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Sun, 31 Jul 2022 11:32:24 +0000 (+0100) Subject: Update handle_sync definition, remove handle_delay_resp definition -- not implemented. X-Git-Tag: 1.2~1^2~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6af3111a090b0dc79a498db8639157b044e2118;p=thirdparty%2Fnqptp.git Update handle_sync definition, remove handle_delay_resp definition -- not implemented. --- diff --git a/nqptp-message-handlers.h b/nqptp-message-handlers.h index c89b359..72a4cda 100644 --- a/nqptp-message-handlers.h +++ b/nqptp-message-handlers.h @@ -28,14 +28,11 @@ void handle_announce(char *buf, ssize_t recv_len, clock_source_private_data *clo uint64_t reception_time); void handle_sync(char *buf, ssize_t recv_len, clock_source_private_data *clock_private_info, - uint64_t reception_time, SOCKADDR *from_sock_addr, int socket_number); + uint64_t reception_time); void handle_follow_up(char *buf, ssize_t recv_len, clock_source_private_data *clock_private_info, uint64_t reception_time); -void handle_delay_resp(char *buf, ssize_t recv_len, clock_source_private_data *clock_private_info, - uint64_t reception_time); - void handle_control_port_messages(char *buf, ssize_t recv_len, clock_source_private_data *clock_private_info);