blob: 2388af418d39c3a029b7dfda866c1592dd54e3b6 [file] [log] [blame]
Yusuf Mohsinallyf4664222013-08-14 12:59:16 -07001# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5
6class Config(object):
7 """Client side services config. Accessible by server side code as well."""
8
9 # RPC server that runs on the DUT.
10 rpc_port = 9990
11 rpc_command = '/usr/local/autotest/cros/faft/rpc_server.py'
12 rpc_command_short = 'rpc_server'
Greg Edelston0d3057f2020-01-02 16:59:34 -070013 rpc_ready_call = 'system.is_available'
Tom Wai-Hong Tam2b1ef4f2013-07-20 00:54:48 +080014 rpc_timeout = 20
Yusuf Mohsinallyfff89d62013-11-18 16:34:07 -080015 rpc_logfile = '/var/log/faft_xmlrpc_server.log'