![leitner](/assets/img/avatar_default.png)
also add compat formatting routines that will output v4-mapped addresses as ipv4 addresses
16 lines
306 B
C
16 lines
306 B
C
#include "ip6.h"
|
|
#include "str.h"
|
|
#include "fmt.h"
|
|
#include "socket.h"
|
|
|
|
unsigned int fmt_ip6if(char* dest,const char* ip,uint32 scope_id) {
|
|
int i=fmt_ip6(dest,ip);
|
|
if (scope_id) {
|
|
if (dest) {
|
|
dest[i]='%'; ++i; dest+=i;
|
|
}
|
|
i+=fmt_str(dest,socket_getifname(scope_id));
|
|
}
|
|
return i;
|
|
}
|