omserv 0.0.0.dev24__py3-none-any.whl → 0.0.0.dev26__py3-none-any.whl
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.
- omserv/__about__.py +13 -0
- omserv/_manifests.json +1 -0
- omserv/nginx/build.py +1 -1
- omserv/nginx/patches/nginx-1.27.1_http_status.patch +109 -0
- omserv/server/LICENSE +14 -0
- omserv/server/protocols/h11.py +25 -21
- omserv/server/protocols/h2.py +16 -1
- omserv/server/resources/favicon.ico +0 -0
- {omserv-0.0.0.dev24.dist-info → omserv-0.0.0.dev26.dist-info}/METADATA +2 -2
- {omserv-0.0.0.dev24.dist-info → omserv-0.0.0.dev26.dist-info}/RECORD +13 -9
- {omserv-0.0.0.dev24.dist-info → omserv-0.0.0.dev26.dist-info}/WHEEL +1 -1
- {omserv-0.0.0.dev24.dist-info → omserv-0.0.0.dev26.dist-info}/LICENSE +0 -0
- {omserv-0.0.0.dev24.dist-info → omserv-0.0.0.dev26.dist-info}/top_level.txt +0 -0
omserv/__about__.py
CHANGED
@@ -26,3 +26,16 @@ class Setuptools(SetuptoolsBase):
|
|
26
26
|
'include': [Project.name, f'{Project.name}.*'],
|
27
27
|
'exclude': [*SetuptoolsBase.find_packages['exclude']],
|
28
28
|
}
|
29
|
+
|
30
|
+
package_data = {
|
31
|
+
**SetuptoolsBase.package_data,
|
32
|
+
|
33
|
+
'*': [
|
34
|
+
*SetuptoolsBase.package_data['*'],
|
35
|
+
|
36
|
+
'*.ico',
|
37
|
+
'*.j2',
|
38
|
+
|
39
|
+
'*.patch',
|
40
|
+
],
|
41
|
+
}
|
omserv/_manifests.json
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
[]
|
omserv/nginx/build.py
CHANGED
@@ -0,0 +1,109 @@
|
|
1
|
+
diff --git a/src/event/ngx_event.c b/src/event/ngx_event.c
|
2
|
+
index ef525d9..46ca5ee 100644
|
3
|
+
--- a/src/event/ngx_event.c
|
4
|
+
+++ b/src/event/ngx_event.c
|
5
|
+
@@ -75,6 +75,13 @@ ngx_atomic_t *ngx_stat_writing = &ngx_stat_writing0;
|
6
|
+
static ngx_atomic_t ngx_stat_waiting0;
|
7
|
+
ngx_atomic_t *ngx_stat_waiting = &ngx_stat_waiting0;
|
8
|
+
|
9
|
+
+static ngx_atomic_t ngx_stat_2xx0;
|
10
|
+
+ngx_atomic_t *ngx_stat_2xx = &ngx_stat_2xx0;
|
11
|
+
+static ngx_atomic_t ngx_stat_4xx0;
|
12
|
+
+ngx_atomic_t *ngx_stat_4xx = &ngx_stat_4xx0;
|
13
|
+
+static ngx_atomic_t ngx_stat_5xx0;
|
14
|
+
+ngx_atomic_t *ngx_stat_5xx = &ngx_stat_5xx0;
|
15
|
+
+
|
16
|
+
#endif
|
17
|
+
|
18
|
+
|
19
|
+
@@ -563,7 +570,10 @@ ngx_event_module_init(ngx_cycle_t *cycle)
|
20
|
+
+ cl /* ngx_stat_active */
|
21
|
+
+ cl /* ngx_stat_reading */
|
22
|
+
+ cl /* ngx_stat_writing */
|
23
|
+
- + cl; /* ngx_stat_waiting */
|
24
|
+
+ + cl /* ngx_stat_waiting */
|
25
|
+
+ + cl /* ngx_stat_2xx */
|
26
|
+
+ + cl /* ngx_stat_4xx */
|
27
|
+
+ + cl; /* ngx_stat_5xx */
|
28
|
+
|
29
|
+
#endif
|
30
|
+
|
31
|
+
@@ -610,6 +620,9 @@ ngx_event_module_init(ngx_cycle_t *cycle)
|
32
|
+
ngx_stat_reading = (ngx_atomic_t *) (shared + 7 * cl);
|
33
|
+
ngx_stat_writing = (ngx_atomic_t *) (shared + 8 * cl);
|
34
|
+
ngx_stat_waiting = (ngx_atomic_t *) (shared + 9 * cl);
|
35
|
+
+ ngx_stat_2xx = (ngx_atomic_t *) (shared + 10 * cl);
|
36
|
+
+ ngx_stat_4xx = (ngx_atomic_t *) (shared + 11 * cl);
|
37
|
+
+ ngx_stat_5xx = (ngx_atomic_t *) (shared + 12 * cl);
|
38
|
+
|
39
|
+
#endif
|
40
|
+
|
41
|
+
diff --git a/src/event/ngx_event.h b/src/event/ngx_event.h
|
42
|
+
index deac04e..48b7622 100644
|
43
|
+
--- a/src/event/ngx_event.h
|
44
|
+
+++ b/src/event/ngx_event.h
|
45
|
+
@@ -475,6 +475,10 @@ extern ngx_atomic_t *ngx_stat_reading;
|
46
|
+
extern ngx_atomic_t *ngx_stat_writing;
|
47
|
+
extern ngx_atomic_t *ngx_stat_waiting;
|
48
|
+
|
49
|
+
+extern ngx_atomic_t *ngx_stat_2xx;
|
50
|
+
+extern ngx_atomic_t *ngx_stat_4xx;
|
51
|
+
+extern ngx_atomic_t *ngx_stat_5xx;
|
52
|
+
+
|
53
|
+
#endif
|
54
|
+
|
55
|
+
|
56
|
+
diff --git a/src/http/modules/ngx_http_stub_status_module.c b/src/http/modules/ngx_http_stub_status_module.c
|
57
|
+
index db68b76..631427d 100644
|
58
|
+
--- a/src/http/modules/ngx_http_stub_status_module.c
|
59
|
+
+++ b/src/http/modules/ngx_http_stub_status_module.c
|
60
|
+
@@ -87,7 +87,7 @@ ngx_http_stub_status_handler(ngx_http_request_t *r)
|
61
|
+
ngx_int_t rc;
|
62
|
+
ngx_buf_t *b;
|
63
|
+
ngx_chain_t out;
|
64
|
+
- ngx_atomic_int_t ap, hn, ac, rq, rd, wr, wa;
|
65
|
+
+ ngx_atomic_int_t ap, hn, ac, rq, rd, wr, wa, st2xx, st4xx, st5xx;
|
66
|
+
|
67
|
+
if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) {
|
68
|
+
return NGX_HTTP_NOT_ALLOWED;
|
69
|
+
@@ -124,12 +124,16 @@ ngx_http_stub_status_handler(ngx_http_request_t *r)
|
70
|
+
wr = *ngx_stat_writing;
|
71
|
+
wa = *ngx_stat_waiting;
|
72
|
+
|
73
|
+
+ st2xx = *ngx_stat_2xx;
|
74
|
+
+ st4xx = *ngx_stat_4xx;
|
75
|
+
+ st5xx = *ngx_stat_5xx;
|
76
|
+
+
|
77
|
+
b->last = ngx_sprintf(b->last, "Active connections: %uA \n", ac);
|
78
|
+
|
79
|
+
- b->last = ngx_cpymem(b->last, "server accepts handled requests\n",
|
80
|
+
- sizeof("server accepts handled requests\n") - 1);
|
81
|
+
+ b->last = ngx_cpymem(b->last, "server accepts handled requests 2xx 4xx 5xx\n",
|
82
|
+
+ sizeof("server accepts handled requests 2xx 4xx 5xx\n") - 1);
|
83
|
+
|
84
|
+
- b->last = ngx_sprintf(b->last, " %uA %uA %uA \n", ap, hn, rq);
|
85
|
+
+ b->last = ngx_sprintf(b->last, " %uA %uA %uA %uA %uA %uA \n", ap, hn, rq, st2xx, st4xx, st5xx);
|
86
|
+
|
87
|
+
b->last = ngx_sprintf(b->last, "Reading: %uA Writing: %uA Waiting: %uA \n",
|
88
|
+
rd, wr, wa);
|
89
|
+
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c
|
90
|
+
index 3cca57c..46ff1fe 100644
|
91
|
+
--- a/src/http/ngx_http_request.c
|
92
|
+
+++ b/src/http/ngx_http_request.c
|
93
|
+
@@ -3797,6 +3797,16 @@ ngx_http_log_request(ngx_http_request_t *r)
|
94
|
+
ngx_http_handler_pt *log_handler;
|
95
|
+
ngx_http_core_main_conf_t *cmcf;
|
96
|
+
|
97
|
+
+#if (NGX_STAT_STUB)
|
98
|
+
+ if (r->headers_out.status >= 200 && r->headers_out.status < 300) {
|
99
|
+
+ (void) ngx_atomic_fetch_add(ngx_stat_2xx, 1);
|
100
|
+
+ } else if (r->headers_out.status >= 400 && r->headers_out.status < 500) {
|
101
|
+
+ (void) ngx_atomic_fetch_add(ngx_stat_4xx, 1);
|
102
|
+
+ } else if (r->headers_out.status >= 500 && r->headers_out.status < 600) {
|
103
|
+
+ (void) ngx_atomic_fetch_add(ngx_stat_5xx, 1);
|
104
|
+
+ }
|
105
|
+
+#endif
|
106
|
+
+
|
107
|
+
cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);
|
108
|
+
|
109
|
+
log_handler = cmcf->phases[NGX_HTTP_LOG_PHASE].handlers.elts;
|
omserv/server/LICENSE
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
Copyright P G Jones 2018.
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
4
|
+
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
|
5
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
|
6
|
+
persons to whom the Software is furnished to do so, subject to the following conditions:
|
7
|
+
|
8
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
|
9
|
+
Software.
|
10
|
+
|
11
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
12
|
+
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
13
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
14
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
omserv/server/protocols/h11.py
CHANGED
@@ -107,7 +107,8 @@ class H11Protocol(Protocol):
|
|
107
107
|
self.client = client
|
108
108
|
self.config = config
|
109
109
|
self.connection: h11.Connection | H11WsConnection = h11.Connection(
|
110
|
-
h11.SERVER,
|
110
|
+
h11.SERVER,
|
111
|
+
max_incomplete_event_size=self.config.h11_max_incomplete_size,
|
111
112
|
)
|
112
113
|
self.context = context
|
113
114
|
self.keep_alive_requests = 0
|
@@ -176,31 +177,30 @@ class H11Protocol(Protocol):
|
|
176
177
|
await self.send(Closed())
|
177
178
|
break
|
178
179
|
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
await self._create_stream(event)
|
180
|
+
if isinstance(event, h11.Request):
|
181
|
+
await self.send(Updated(idle=False))
|
182
|
+
await self._check_protocol(event)
|
183
|
+
await self._create_stream(event)
|
184
184
|
|
185
|
-
|
186
|
-
|
187
|
-
|
185
|
+
elif event is h11.PAUSED:
|
186
|
+
await self.can_read.clear()
|
187
|
+
await self.can_read.wait()
|
188
188
|
|
189
|
-
|
190
|
-
|
189
|
+
elif isinstance(event, h11.ConnectionClosed) or event is h11.NEED_DATA:
|
190
|
+
break
|
191
191
|
|
192
|
-
|
193
|
-
|
192
|
+
elif self.stream is None:
|
193
|
+
break
|
194
194
|
|
195
|
-
|
196
|
-
|
195
|
+
elif isinstance(event, h11.Data):
|
196
|
+
await self.stream.handle(Body(stream_id=STREAM_ID, data=event.data))
|
197
197
|
|
198
|
-
|
199
|
-
|
198
|
+
elif isinstance(event, h11.EndOfMessage):
|
199
|
+
await self.stream.handle(EndBody(stream_id=STREAM_ID))
|
200
200
|
|
201
|
-
|
202
|
-
|
203
|
-
|
201
|
+
elif isinstance(event, Data):
|
202
|
+
# WebSocket pass through
|
203
|
+
await self.stream.handle(event)
|
204
204
|
|
205
205
|
async def _create_stream(self, request: h11.Request) -> None:
|
206
206
|
upgrade_value = ''
|
@@ -229,6 +229,7 @@ class H11Protocol(Protocol):
|
|
229
229
|
STREAM_ID,
|
230
230
|
)
|
231
231
|
self.connection = H11WsConnection(ta.cast(h11.Connection, self.connection))
|
232
|
+
|
232
233
|
else:
|
233
234
|
self.stream = HttpStream(
|
234
235
|
self.app,
|
@@ -255,6 +256,7 @@ class H11Protocol(Protocol):
|
|
255
256
|
raw_path=request.target,
|
256
257
|
),
|
257
258
|
)
|
259
|
+
|
258
260
|
self.keep_alive_requests += 1
|
259
261
|
await self.context.mark_request()
|
260
262
|
|
@@ -283,6 +285,7 @@ class H11Protocol(Protocol):
|
|
283
285
|
|
284
286
|
async def _maybe_recycle(self) -> None:
|
285
287
|
await self._close_stream()
|
288
|
+
|
286
289
|
if (
|
287
290
|
not self.context.terminated.is_set()
|
288
291
|
and self.connection.our_state is h11.DONE
|
@@ -297,6 +300,7 @@ class H11Protocol(Protocol):
|
|
297
300
|
self.scope = None
|
298
301
|
await self.can_read.set()
|
299
302
|
await self.send(Updated(idle=True))
|
303
|
+
|
300
304
|
else:
|
301
305
|
await self.can_read.set()
|
302
306
|
await self.send(Closed())
|
@@ -316,7 +320,7 @@ class H11Protocol(Protocol):
|
|
316
320
|
elif sanitised_name in {'content-length', 'transfer-encoding'}:
|
317
321
|
has_body = True
|
318
322
|
|
319
|
-
# h2c Upgrade requests with a body are a pain as the body must be fully
|
323
|
+
# h2c Upgrade requests with a body are a pain as the body must be fully received in HTTP/1.1 before the upgrade
|
320
324
|
# response and HTTP/2 takes over, so Hypercorn ignores the upgrade and responds in HTTP/1.1. Use a preflight
|
321
325
|
# OPTIONS request to initiate the upgrade if really required (or just use h2).
|
322
326
|
if upgrade_value.lower() == 'h2c' and not has_body:
|
omserv/server/protocols/h2.py
CHANGED
@@ -138,13 +138,16 @@ class H2Protocol(Protocol):
|
|
138
138
|
self.connection.initiate_upgrade_connection(settings)
|
139
139
|
else:
|
140
140
|
self.connection.initiate_connection()
|
141
|
+
|
141
142
|
await self._flush()
|
143
|
+
|
142
144
|
if headers is not None:
|
143
145
|
event = h2.events.RequestReceived()
|
144
146
|
event.stream_id = 1
|
145
147
|
event.headers = headers
|
146
148
|
await self._create_stream(event)
|
147
149
|
await self.streams[event.stream_id].handle(EndBody(stream_id=event.stream_id))
|
150
|
+
|
148
151
|
self.task_spawner.spawn(self.send_task)
|
149
152
|
|
150
153
|
async def send_task(self) -> None:
|
@@ -178,6 +181,7 @@ class H2Protocol(Protocol):
|
|
178
181
|
await self._flush()
|
179
182
|
del self.stream_buffers[stream_id]
|
180
183
|
self.priority.remove_stream(stream_id)
|
184
|
+
|
181
185
|
except (h2.exceptions.StreamClosedError, KeyError, h2.exceptions.ProtocolError):
|
182
186
|
# Stream or connection has closed whilst waiting to send data, not a problem - just force close it.
|
183
187
|
await self.stream_buffers[stream_id].close()
|
@@ -316,6 +320,7 @@ class H2Protocol(Protocol):
|
|
316
320
|
weight=event.weight,
|
317
321
|
exclusive=event.exclusive,
|
318
322
|
)
|
323
|
+
|
319
324
|
except priority.MissingStreamError:
|
320
325
|
# Received PRIORITY frame before HEADERS frame
|
321
326
|
self.priority.insert_stream(
|
@@ -345,6 +350,7 @@ class H2Protocol(Protocol):
|
|
345
350
|
self.stream_send,
|
346
351
|
request.stream_id,
|
347
352
|
)
|
353
|
+
|
348
354
|
else:
|
349
355
|
self.streams[request.stream_id] = HttpStream(
|
350
356
|
self.app,
|
@@ -356,7 +362,9 @@ class H2Protocol(Protocol):
|
|
356
362
|
self.stream_send,
|
357
363
|
request.stream_id,
|
358
364
|
)
|
365
|
+
|
359
366
|
self.stream_buffers[request.stream_id] = StreamBuffer(self.context.event_class)
|
367
|
+
|
360
368
|
try:
|
361
369
|
self.priority.insert_stream(request.stream_id)
|
362
370
|
except priority.DuplicateStreamError:
|
@@ -372,16 +380,21 @@ class H2Protocol(Protocol):
|
|
372
380
|
method=method,
|
373
381
|
raw_path=raw_path,
|
374
382
|
))
|
383
|
+
|
375
384
|
self.keep_alive_requests += 1
|
376
385
|
await self.context.mark_request()
|
377
386
|
|
378
387
|
async def _create_server_push(
|
379
|
-
self,
|
388
|
+
self,
|
389
|
+
stream_id: int,
|
390
|
+
path: bytes,
|
391
|
+
headers: list[tuple[bytes, bytes]],
|
380
392
|
) -> None:
|
381
393
|
push_stream_id = self.connection.get_next_available_stream_id()
|
382
394
|
request_headers = [(b':method', b'GET'), (b':path', path)]
|
383
395
|
request_headers.extend(headers)
|
384
396
|
request_headers.extend(response_headers(self.config, 'h2'))
|
397
|
+
|
385
398
|
try:
|
386
399
|
self.connection.push_stream(
|
387
400
|
stream_id=stream_id,
|
@@ -389,9 +402,11 @@ class H2Protocol(Protocol):
|
|
389
402
|
request_headers=request_headers,
|
390
403
|
)
|
391
404
|
await self._flush()
|
405
|
+
|
392
406
|
except h2.exceptions.ProtocolError:
|
393
407
|
# Client does not accept push promises or we are trying to push on a push promises request.
|
394
408
|
pass
|
409
|
+
|
395
410
|
else:
|
396
411
|
event = h2.events.RequestReceived()
|
397
412
|
event.stream_id = push_stream_id
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: omserv
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.dev26
|
4
4
|
Summary: omserv
|
5
5
|
Author: wrmsr
|
6
6
|
License: BSD-3-Clause
|
@@ -12,7 +12,7 @@ Classifier: Operating System :: OS Independent
|
|
12
12
|
Classifier: Operating System :: POSIX
|
13
13
|
Requires-Python: ~=3.12
|
14
14
|
License-File: LICENSE
|
15
|
-
Requires-Dist: omlish ==0.0.0.
|
15
|
+
Requires-Dist: omlish ==0.0.0.dev26
|
16
16
|
Provides-Extra: all
|
17
17
|
Requires-Dist: h11 ~=0.14 ; extra == 'all'
|
18
18
|
Requires-Dist: h2 ~=4.1 ; extra == 'all'
|
@@ -1,5 +1,6 @@
|
|
1
|
-
omserv/__about__.py,sha256=
|
1
|
+
omserv/__about__.py,sha256=l9yTdHqbdd7L6tobi6BTiEO9huwg_6ndnmVNnQxL8f8,838
|
2
2
|
omserv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
+
omserv/_manifests.json,sha256=N1F-Xz3GaBn2H1p7uKzhkhKCQV8QVR0t76XD6wmFtXA,3
|
3
4
|
omserv/dbs.py,sha256=RLXwNmENmM9MLsjFqDho_R8ibMjOKAxWUn4zhzTlP9Y,756
|
4
5
|
omserv/secrets.py,sha256=ja0VsCB01MHxYwn5OHjFeXV9cRah9AQl-0uJzZELpic,256
|
5
6
|
omserv/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -10,14 +11,16 @@ omserv/apps/routes.py,sha256=shcN8qCSF2YoKal7nk-lemCAK3RX8MuHgNHhq_CTnh0,3762
|
|
10
11
|
omserv/apps/sessions.py,sha256=glruQSbOSbCYLPp6nDRNSHCyp5hj4oiOPhh3R0F9BTM,1537
|
11
12
|
omserv/apps/templates.py,sha256=PBRZHIF9UbnFnq-4EC6RmPeRkeH8lCBbpJkSdseHs6A,2125
|
12
13
|
omserv/nginx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
-
omserv/nginx/build.py,sha256=
|
14
|
+
omserv/nginx/build.py,sha256=EqxlDdL_-GyBj1BtqlmobTwvvSTIAmzT_Bt7pWlaqDI,3141
|
14
15
|
omserv/nginx/configs.py,sha256=4oQDcKJKIatRG621qiZCYTayJI3-vv63TtRCiUxEVWI,2008
|
15
16
|
omserv/nginx/stubstatus.py,sha256=_VnXZdXxSA7jIelYSwJLf9mOnt_UOvpWghAPWtlWSLw,1857
|
16
17
|
omserv/nginx/patches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
+
omserv/nginx/patches/nginx-1.27.1_http_status.patch,sha256=bEDSczpBLcdjcBp_X1m73oxvt8KPeons7v_sUxqBSXM,4335
|
17
19
|
omserv/node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
20
|
omserv/node/models.py,sha256=XsfAI-LjlRkRfK0_ofh-gai5IUq_g357UfThK9dZ0UM,1258
|
19
21
|
omserv/node/registry.py,sha256=0hodmyQn3POOZJBG8zTr9ojR80-ZNmIwJpQbchJg8EM,3459
|
20
22
|
omserv/node/sql.py,sha256=vy7RP50JiH3jQHMVa7Hxk0pFJK3QcbGeTvyNppB1W4I,2826
|
23
|
+
omserv/server/LICENSE,sha256=VKPNmbyrS9wcwcx20hBlVtLP01brb2dByHrWHeNLPag,1050
|
21
24
|
omserv/server/__init__.py,sha256=K8l4nfv9c_5o8dph-SyadW_19CdTC2FGlikyHMU5lAU,375
|
22
25
|
omserv/server/config.py,sha256=oGWL1kuk45bJ6sVr8n3ow5Q-1nz9EqByjoykU2iOHIY,1189
|
23
26
|
omserv/server/debug.py,sha256=N7RI0Jj-ttmys3DJD0RREmGG5XZpTCp6y9Yu0x98Agg,299
|
@@ -33,17 +36,18 @@ omserv/server/types.py,sha256=XXY5py8RYlEeD4FZrWNqSyX7DD-ffSlcG-T2s9BY9eI,2017
|
|
33
36
|
omserv/server/workercontext.py,sha256=4rcLuGsyiU7URO7T_eHylOBPPNUS9C23QfEUVyJUtIY,1200
|
34
37
|
omserv/server/workers.py,sha256=rdV8qEzWKMZ6HnN9nUoGS58U9LRsrsqOcAd_7yl73Y0,6586
|
35
38
|
omserv/server/protocols/__init__.py,sha256=Ryu2PDZ1TUI6F2l-HBEYgyzZ7wHqE6VmjqnS0tIvmQI,47
|
36
|
-
omserv/server/protocols/h11.py,sha256=
|
37
|
-
omserv/server/protocols/h2.py,sha256=
|
39
|
+
omserv/server/protocols/h11.py,sha256=_q_paD-ff0AWJEPaNK-6MUsQVtYRiALnWGwFyM3D0KU,11976
|
40
|
+
omserv/server/protocols/h2.py,sha256=bC-qmRQqgLASL1DtF3UX1ozximHH4xtae1d_vN2PffY,15345
|
38
41
|
omserv/server/protocols/protocols.py,sha256=1ky8PGYIIR8wco6fcw-41RmHW-Kz_cNcZZoOqi7btNk,2790
|
39
42
|
omserv/server/protocols/types.py,sha256=OXt5U3LsBToDxT7ipfFGiIHJU0WVvlfT6QQacF-_Plc,440
|
40
43
|
omserv/server/resources/__init__.py,sha256=KppZbvZBKX1TdyaQZYY92oEKpdB3nuUXxharAgrbAIA,193
|
44
|
+
omserv/server/resources/favicon.ico,sha256=48hwhc03Fp6Rbj0fEQEB95woJMhCDsM2nMZJfeKAU0g,38078
|
41
45
|
omserv/server/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
46
|
omserv/server/streams/httpstream.py,sha256=0DeiAPLGbEGNa0fHTs8lUpi_CFZs4M5_QB-TiS8mobQ,8015
|
43
47
|
omserv/server/streams/utils.py,sha256=aMOrqWIg_Hht5W4kLg3y7oR5AEkVvMrZhyjzo6U5owE,1527
|
44
48
|
omserv/server/streams/wsstream.py,sha256=3Vyzox7dCE1tDSXjb6xBubWo41ZF9d38Hrsrlj6h1J8,15482
|
45
|
-
omserv-0.0.0.
|
46
|
-
omserv-0.0.0.
|
47
|
-
omserv-0.0.0.
|
48
|
-
omserv-0.0.0.
|
49
|
-
omserv-0.0.0.
|
49
|
+
omserv-0.0.0.dev26.dist-info/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
50
|
+
omserv-0.0.0.dev26.dist-info/METADATA,sha256=uPso6n4Vhuuf8A55kGst-irKK2LFtN9orHnO3FpEabc,881
|
51
|
+
omserv-0.0.0.dev26.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
52
|
+
omserv-0.0.0.dev26.dist-info/top_level.txt,sha256=HXehpnxeKscKNULzKNzZ27oNawBrsh1PaNAirbX-XNA,7
|
53
|
+
omserv-0.0.0.dev26.dist-info/RECORD,,
|
File without changes
|
File without changes
|