Lines Matching refs:reply
551 uint8_t *reply, size_t len, struct dhcp_msg *msg, in dhcpv4_send() argument
607 ret = zsock_sendto(ctx->sock, reply, len, 0, (struct sockaddr *)&dst_addr, in dhcpv4_send()
621 uint8_t reply[NET_IPV4_MTU]; in dhcpv4_send_offer() local
622 uint8_t *buf = reply; in dhcpv4_send_offer()
623 size_t buflen = sizeof(reply); in dhcpv4_send_offer()
644 reply_len = sizeof(reply) - buflen; in dhcpv4_send_offer()
646 ret = dhcpv4_send(ctx, NET_DHCPV4_MSG_TYPE_OFFER, reply, reply_len, in dhcpv4_send_offer()
662 uint8_t reply[NET_IPV4_MTU]; in dhcpv4_send_ack() local
663 uint8_t *buf = reply; in dhcpv4_send_ack()
664 size_t buflen = sizeof(reply); in dhcpv4_send_ack()
689 reply_len = sizeof(reply) - buflen; in dhcpv4_send_ack()
691 ret = dhcpv4_send(ctx, NET_DHCPV4_MSG_TYPE_ACK, reply, reply_len, msg, in dhcpv4_send_ack()
704 uint8_t reply[NET_IPV4_MTU]; in dhcpv4_send_nak() local
705 uint8_t *buf = reply; in dhcpv4_send_nak()
706 size_t buflen = sizeof(reply); in dhcpv4_send_nak()
725 reply_len = sizeof(reply) - buflen; in dhcpv4_send_nak()
727 ret = dhcpv4_send(ctx, NET_DHCPV4_MSG_TYPE_NAK, reply, reply_len, msg, in dhcpv4_send_nak()