Skip to content

Commit eb53c0f

Browse files
committed
2023-02-21, Version 19.7.0 (Current)
Notable changes: deps: * upgrade npm to 9.5.0 (npm team) #46673 * add ada as a dependency (Yagiz Nizipli) #46410 doc: * add debadree25 to collaborators (Debadree Chatterjee) #46716 * add deokjinkim to collaborators (Deokjin Kim) #46444 doc,lib,src,test: * rename --test-coverage (Colin Ihrig) #46017 lib: * (SEMVER-MINOR) add aborted() utility function (Debadree Chatterjee) #46494 src: * (SEMVER-MINOR) add initial support for single executable applications (Darshan Sen) #45038 * (SEMVER-MINOR) allow optional Isolate termination in node::Stop() (Shelley Vohr) #46583 * (SEMVER-MINOR) allow blobs in addition to `FILE*`s in embedder snapshot API (Anna Henningsen) #46491 * (SEMVER-MINOR) allow snapshotting from the embedder API (Anna Henningsen) #45888 * (SEMVER-MINOR) make build_snapshot a per-Isolate option, rather than a global one (Anna Henningsen) #45888 * (SEMVER-MINOR) add snapshot support for embedder API (Anna Henningsen) #45888 * (SEMVER-MINOR) allow embedder control of code generation policy (Shelley Vohr) #46368 stream: * (SEMVER-MINOR) add abort signal for ReadableStream and WritableStream (Debadree Chatterjee) #46273 test_runner: * add initial code coverage support (Colin Ihrig) #46017 url: * replace url-parser with ada (Yagiz Nizipli) #46410 PR-URL: TODO
1 parent 86cbb61 commit eb53c0f

File tree

199 files changed

+159561
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+159561
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.6.1">19.6.1</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.7.0">19.7.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V19.md#19.6.1">19.6.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V19.md#19.6.0">19.6.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V19.md#19.5.0">19.5.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V19.md#19.4.0">19.4.0</a><br/>
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#ifndef HEADER_CARES_LIBRARY_INIT_H
2+
#define HEADER_CARES_LIBRARY_INIT_H
3+
4+
5+
/* Copyright 1998 by the Massachusetts Institute of Technology.
6+
* Copyright (C) 2004-2011 by Daniel Stenberg
7+
*
8+
* Permission to use, copy, modify, and distribute this
9+
* software and its documentation for any purpose and without
10+
* fee is hereby granted, provided that the above copyright
11+
* notice appear in all copies and that both that copyright
12+
* notice and this permission notice appear in supporting
13+
* documentation, and that the name of M.I.T. not be used in
14+
* advertising or publicity pertaining to distribution of the
15+
* software without specific, written prior permission.
16+
* M.I.T. makes no representations about the suitability of
17+
* this software for any purpose. It is provided "as is"
18+
* without express or implied warranty.
19+
*/
20+
21+
#include "ares_setup.h"
22+
23+
#ifdef USE_WINSOCK
24+
25+
#include <iphlpapi.h>
26+
#include "ares_iphlpapi.h"
27+
28+
typedef DWORD (WINAPI *fpGetNetworkParams_t) (FIXED_INFO*, DWORD*);
29+
typedef BOOLEAN (APIENTRY *fpSystemFunction036_t) (void*, ULONG);
30+
typedef ULONG (WINAPI *fpGetAdaptersAddresses_t) ( ULONG, ULONG, void*, IP_ADAPTER_ADDRESSES*, ULONG* );
31+
typedef NETIO_STATUS (WINAPI *fpGetBestRoute2_t) ( NET_LUID *, NET_IFINDEX, const SOCKADDR_INET *, const SOCKADDR_INET *, ULONG, PMIB_IPFORWARD_ROW2, SOCKADDR_INET * );
32+
/* Forward-declaration of variables defined in ares_library_init.c */
33+
/* that are global and unique instances for whole c-ares library. */
34+
35+
extern fpGetNetworkParams_t ares_fpGetNetworkParams;
36+
extern fpSystemFunction036_t ares_fpSystemFunction036;
37+
extern fpGetAdaptersAddresses_t ares_fpGetAdaptersAddresses;
38+
extern fpGetBestRoute2_t ares_fpGetBestRoute2;
39+
40+
#endif /* USE_WINSOCK */
41+
42+
#endif /* HEADER_CARES_LIBRARY_INIT_H */
43+

0 commit comments

Comments
 (0)