1# 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.py' 13 rpc_ready_call = 'ready' 14 rpc_quit_call = 'quit' 15 rpc_timeout = 120 16 rpc_logfile = '/var/log/faft_xmlrpc_server.log' 17