summaryrefslogtreecommitdiff
path: root/lib/if2ip.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-08-13 17:51:52 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-08-13 17:52:15 +0200
commitb748d7af7ea4bb9baf5517cc53756f8d4d7be1ca (patch)
treeaaed19bec8e85542f9056415b51fc599fc70e551 /lib/if2ip.h
parent10b3df10596adb68f9014331a6bf5f3c660f383d (diff)
downloadcurl-b748d7af7ea4bb9baf5517cc53756f8d4d7be1ca.tar.gz
ipv6_scope: support unique local addresses
Fixes #1764 Closes #1773 Reported-by: James Slaughter
Diffstat (limited to 'lib/if2ip.h')
-rw-r--r--lib/if2ip.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/if2ip.h b/lib/if2ip.h
index f3a7ff0b2..a90e66216 100644
--- a/lib/if2ip.h
+++ b/lib/if2ip.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -27,7 +27,8 @@
#define IPV6_SCOPE_GLOBAL 0 /* Global scope. */
#define IPV6_SCOPE_LINKLOCAL 1 /* Link-local scope. */
#define IPV6_SCOPE_SITELOCAL 2 /* Site-local scope (deprecated). */
-#define IPV6_SCOPE_NODELOCAL 3 /* Loopback. */
+#define IPV6_SCOPE_UNIQUELOCAL 3 /* Unique local */
+#define IPV6_SCOPE_NODELOCAL 4 /* Loopback. */
unsigned int Curl_ipv6_scope(const struct sockaddr *sa);