Change IPv6 address scope delimeter from '@' to '%' as recent KAME change.

'@' conflicts with existing notations such as user@host, so '%' is better.

Approved by: jkh

Obtained from: KAME project
This commit is contained in:
Yoshinobu Inoue 2000-02-08 05:12:45 +00:00
parent e870738008
commit 12cefbcc20
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=57033

View File

@ -190,7 +190,7 @@ struct addrinfo {
/*
* Scope delimit character
*/
#define SCOPE_DELIMITER '@'
#define SCOPE_DELIMITER '%'
__BEGIN_DECLS
void endhostent __P((void));