libowfat/socket/scan_ip6if.c

28 lines
533 B
C
Raw Normal View History

#include "ip6.h"
#include "byte.h"
#include <ctype.h>
#include "socket.h"
2004-01-06 23:35:06 +00:00
#include "havealloca.h"
2014-03-14 19:42:54 +00:00
size_t scan_ip6if(const char* src,char* ip,uint32* scope_id) {
size_t i=scan_ip6(src,ip);
*scope_id=0;
if (src[i]=='%') {
2014-03-14 19:42:54 +00:00
size_t j;
char* tmp;
for (j=i+1; isalnum(src[j]); ++j) ;
if (!src[j])
tmp=(char*)src+i+1;
else {
tmp=alloca(j-i);
byte_copy(tmp,j-(i+1),src+i+1);
tmp[j-(i+1)]=0;
}
if (*tmp) {
*scope_id=socket_getifidx(tmp);
return j;
}
}
return i;
}