mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
2e92b718d5
Co-authored-by: Hugh Nimmo-Smith <hughns@element.io> Co-authored-by: Hugh Nimmo-Smith <hughns@users.noreply.github.com> Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
#
|
|
# Copyright (C) 2024 New Vector, Ltd
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# See the GNU Affero General Public License for more details:
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
from twisted.web.iweb import IRequest
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
class RendezvousHandler:
|
|
def __init__(
|
|
self,
|
|
homeserver: HomeServer,
|
|
/,
|
|
capacity: int = 100,
|
|
max_content_length: int = 4 * 1024, # MSC4108 specifies 4KB
|
|
eviction_interval: int = 60 * 1000,
|
|
ttl: int = 60 * 1000,
|
|
) -> None: ...
|
|
def handle_post(self, request: IRequest) -> None: ...
|
|
def handle_get(self, request: IRequest, session_id: str) -> None: ...
|
|
def handle_put(self, request: IRequest, session_id: str) -> None: ...
|
|
def handle_delete(self, request: IRequest, session_id: str) -> None: ...
|