summaryrefslogtreecommitdiffhomepage
path: root/src/os/unix/ngx_udp_sendmsg_chain.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-12-16Style.BullerDu1-1/+1
2022-01-25Core: added function for local source address cmsg.Vladimir Homutov1-0/+65
2022-01-25Core: made the ngx_sendmsg() function non-static.Vladimir Homutov1-70/+95
The NGX_HAVE_ADDRINFO_CMSG macro is defined when at least one of methods to deal with corresponding control message is available.
2020-06-08Stream: fixed processing of zero length UDP packets (ticket #1982).Vladimir Homutov1-0/+7
2017-06-01Style.Maxim Dounin1-3/+3
2017-04-11Set UDP datagram source address (ticket #1239).Roman Arutyunyan1-0/+90
Previously, the source IP address of a response UDP datagram could differ from the original datagram destination address. This could happen if the server UDP socket is bound to a wildcard address and the network interface chosen to output the response packet has a different default address than the destination address of the original packet. For example, if two addresses from the same network are configured on an interface. Now source address is set explicitly if a response is sent for a server UDP socket bound to a wildcard address.
2016-09-15Stream: filters.Roman Arutyunyan1-0/+245