Hello,

I used str2ipxbuf() instead of stripx().

Tested

ip_addr_t* str2ip6(str* st)
{
	static ip_addr_t ip;

	if(str2ip6buf(st, &ip)<0) {
		return NULL;
	}

	return &ip;
}


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.