mirror of
https://github.com/xcat2/xNBA.git
synced 2024-11-22 09:31:51 +00:00
[ipv6] Include network device when transcribing multicast addresses
Destination multicast addresses require a sin6_scope_id, which should therefore be transcribed to a network device name by ipv6_sock_ntoa(). Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
parent
6c7146695d
commit
3a1adea036
@ -900,7 +900,7 @@ static const char * ipv6_sock_ntoa ( struct sockaddr *sa ) {
|
||||
const char *netdev_name;
|
||||
|
||||
/* Identify network device, if applicable */
|
||||
if ( IN6_IS_ADDR_LINKLOCAL ( in ) ) {
|
||||
if ( IN6_IS_ADDR_LINKLOCAL ( in ) || IN6_IS_ADDR_MULTICAST ( in ) ) {
|
||||
netdev = find_netdev_by_index ( sin6->sin6_scope_id );
|
||||
netdev_name = ( netdev ? netdev->name : "UNKNOWN" );
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user