diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-28 11:18:01 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-28 11:18:01 -0700 |
commit | ef12fb6c3a1f94b620fc71362d42d7e207fe10d6 (patch) | |
tree | 1e2eef2cdd2cb547472ad5b97dab2b09a4456bc2 /src/library.js | |
parent | 4f6ffd478f167cc41f52c2932f4c82e3badea36f (diff) | |
parent | 906e64878935b1bda0dc92852af78bdc271918f5 (diff) |
Merge pull request #1328 from amatus/push-upstream
Fixes for GNUnet compile.
Diffstat (limited to 'src/library.js')
-rw-r--r-- | src/library.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js index 01a67804..822f4319 100644 --- a/src/library.js +++ b/src/library.js @@ -7224,6 +7224,23 @@ LibraryManager.library = { return 1; }, + // netinet/in.h + + _in6addr_any: + 'allocate([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], "i8", ALLOC_STATIC)', + _in6addr_loopback: + 'allocate([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1], "i8", ALLOC_STATIC)', + _in6addr_linklocal_allnodes: + 'allocate([255,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1], "i8", ALLOC_STATIC)', + _in6addr_linklocal_allrouters: + 'allocate([255,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2], "i8", ALLOC_STATIC)', + _in6addr_interfacelocal_allnodes: + 'allocate([255,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1], "i8", ALLOC_STATIC)', + _in6addr_interfacelocal_allrouters: + 'allocate([255,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2], "i8", ALLOC_STATIC)', + _in6addr_sitelocal_allrouters: + 'allocate([255,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2], "i8", ALLOC_STATIC)', + // ========================================================================== // netdb.h // ========================================================================== |