@fails-components/webtransport-transport-http3-quiche 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CMakeLists.txt
CHANGED
|
@@ -88,7 +88,6 @@ platform/quiche_platform_impl/quiche_stream_buffer_allocator_impl.h
|
|
|
88
88
|
platform/quiche_platform_impl/quiche_time_utils_impl.h
|
|
89
89
|
platform/quiche_platform_impl/quiche_udp_socket_platform_impl.h
|
|
90
90
|
platform/quiche_platform_impl/quiche_server_stats_impl.h
|
|
91
|
-
platform/quiche_platform_impl/quiche_mem_slice_impl.h
|
|
92
91
|
platform/quiche_platform_impl/quiche_flag_utils_impl.h
|
|
93
92
|
#protofiles
|
|
94
93
|
#${PROTO_SRCS}
|
|
@@ -157,7 +156,6 @@ third_party/quiche/quiche/common/platform/api/quiche_hostname_utils.cc
|
|
|
157
156
|
third_party/quiche/quiche/common/platform/api/quiche_hostname_utils.h
|
|
158
157
|
third_party/quiche/quiche/common/platform/api/quiche_iovec.h
|
|
159
158
|
third_party/quiche/quiche/common/platform/api/quiche_logging.h
|
|
160
|
-
third_party/quiche/quiche/common/platform/api/quiche_mem_slice.h
|
|
161
159
|
third_party/quiche/quiche/common/platform/api/quiche_reference_counted.h
|
|
162
160
|
third_party/quiche/quiche/common/platform/api/quiche_time_utils.h
|
|
163
161
|
third_party/quiche/quiche/common/platform/api/quiche_url_utils.h
|
|
@@ -168,7 +166,6 @@ third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_fl
|
|
|
168
166
|
third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_flags_impl.cc
|
|
169
167
|
third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_logging_impl.cc
|
|
170
168
|
third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_logging_impl.h
|
|
171
|
-
third_party/quiche/quiche/common/platform/api/quiche_mem_slice.cc
|
|
172
169
|
third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_stack_trace_impl.cc
|
|
173
170
|
third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_stack_trace_impl.h
|
|
174
171
|
third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_iovec_impl.h
|
|
@@ -189,6 +186,8 @@ third_party/quiche/quiche/common/quiche_ip_address.h
|
|
|
189
186
|
third_party/quiche/quiche/common/quiche_ip_address_family.cc
|
|
190
187
|
third_party/quiche/quiche/common/quiche_ip_address_family.h
|
|
191
188
|
third_party/quiche/quiche/common/quiche_linked_hash_map.h
|
|
189
|
+
third_party/quiche/quiche/common/quiche_mem_slice.cc
|
|
190
|
+
third_party/quiche/quiche/common/quiche_mem_slice.h
|
|
192
191
|
third_party/quiche/quiche/common/quiche_mem_slice_storage.h
|
|
193
192
|
third_party/quiche/quiche/common/quiche_mem_slice_storage.cc
|
|
194
193
|
third_party/quiche/quiche/common/quiche_random.cc
|
package/eslint.config.js
CHANGED
|
@@ -1,21 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
1
|
+
import js from '@eslint/js'
|
|
2
|
+
import promise from 'eslint-plugin-promise'
|
|
3
|
+
import babelParser from '@babel/eslint-parser'
|
|
4
|
+
import importplug from 'eslint-plugin-import'
|
|
5
|
+
// eslint-disable-next-line import/extensions
|
|
5
6
|
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'
|
|
6
|
-
import globals from
|
|
7
|
+
import globals from 'globals'
|
|
7
8
|
|
|
8
9
|
export default [
|
|
9
10
|
js.configs.recommended,
|
|
10
11
|
eslintPluginPrettierRecommended,
|
|
11
12
|
{
|
|
12
13
|
plugins: {
|
|
13
|
-
promise
|
|
14
|
+
promise,
|
|
15
|
+
import: importplug
|
|
14
16
|
},
|
|
15
17
|
languageOptions: {
|
|
16
18
|
globals: {
|
|
17
19
|
...globals.node
|
|
18
|
-
|
|
19
20
|
},
|
|
20
21
|
parser: babelParser,
|
|
21
22
|
ecmaVersion: 2020,
|
|
@@ -24,28 +25,36 @@ export default [
|
|
|
24
25
|
legacyDecorators: true,
|
|
25
26
|
jsx: true
|
|
26
27
|
},
|
|
27
|
-
requireConfigFile: false
|
|
28
|
+
requireConfigFile: false
|
|
28
29
|
}
|
|
29
30
|
},
|
|
30
31
|
ignores: [
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
'build/*',
|
|
33
|
+
'dist/*',
|
|
34
|
+
'node_modules/*',
|
|
35
|
+
'.snapshots/*',
|
|
36
|
+
'*.min.js'
|
|
36
37
|
],
|
|
37
38
|
rules: {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
'space-before-function-paren': 0,
|
|
40
|
+
'import/export': 0,
|
|
41
|
+
'promise/catch-or-return': 'error',
|
|
42
|
+
'no-useless-return': 1,
|
|
43
|
+
camelcase: 1,
|
|
44
|
+
'import/extensions': [
|
|
45
|
+
'error',
|
|
46
|
+
'always',
|
|
47
|
+
{
|
|
48
|
+
js: 'always',
|
|
49
|
+
jsx: 'always'
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
}
|
|
44
53
|
},
|
|
45
54
|
{
|
|
46
|
-
files: [
|
|
55
|
+
files: ['test/*.spec.js'],
|
|
47
56
|
rules: {
|
|
48
|
-
|
|
57
|
+
'no-undef': 0
|
|
49
58
|
}
|
|
50
|
-
}
|
|
51
|
-
]
|
|
59
|
+
}
|
|
60
|
+
]
|
package/package.json
CHANGED