xref: /aosp_15_r20/external/autotest/client/cros/faft/config.py (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1*9c5db199SXin Li# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2*9c5db199SXin Li# Use of this source code is governed by a BSD-style license that can be
3*9c5db199SXin Li# found in the LICENSE file.
4*9c5db199SXin Li
5*9c5db199SXin Li
6*9c5db199SXin Liclass Config(object):
7*9c5db199SXin Li    """Client side services config. Accessible by server side code as well."""
8*9c5db199SXin Li
9*9c5db199SXin Li    # RPC server that runs on the DUT.
10*9c5db199SXin Li    rpc_port = 9990
11*9c5db199SXin Li    rpc_command = '/usr/local/autotest/cros/faft/rpc_server.py'
12*9c5db199SXin Li    rpc_command_short = 'rpc_server.py'
13*9c5db199SXin Li    rpc_ready_call = 'ready'
14*9c5db199SXin Li    rpc_quit_call = 'quit'
15*9c5db199SXin Li    rpc_timeout = 120
16*9c5db199SXin Li    rpc_logfile = '/var/log/faft_xmlrpc_server.log'
17*9c5db199SXin Li    rpc_request_timeout = 180
18