(self, socket, port)
| 59 | return cmd |
| 60 | |
| 61 | def _socket_args(self, socket, port): |
| 62 | support_socket_activation = self.kind == 'server' and sys.platform != "win32" |
| 63 | return { |
| 64 | 'ip-ssl': ['--ssl'], |
| 65 | 'domain': ['--domain-socket=%s' % domain_socket_path(port)], |
| 66 | 'domain-socketactivated': (['--emulate-socketactivation'] if support_socket_activation else []) + ['--domain-socket=%s' % domain_socket_path(port)], |
| 67 | 'abstract': ['--abstract-namespace', '--domain-socket=%s' % domain_socket_path(port)], |
| 68 | }.get(socket, None) |
| 69 | |
| 70 | def _transport_args(self, transport): |
| 71 | return { |
no test coverage detected