1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# 22# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25#ident "%Z%%M% %I% %E% SMI" 26# 27# fmd configuration file for the event-transport.so plugin module. 28# 29# The following configuration options are valid: 30# 31# setprop reconnect_timeout <time> 32# 33# Sets the total time spent attempting to connect with a peer 34# after a connection has been lost. Time is in nanoseconds. 35# 36# setprop reconnect_interval <time> 37# 38# Sets the timeout value in between individual reconnection 39# attempts. Time is in nanoseconds. 40# 41# setprop rw_timeout <time> 42# 43# Sets the timeout value for a read or write I/O operation. 44# Time is in nanoseconds. 45# 46# setprop filter_path <path> 47# 48# Specifies the location of a platform-specific filter plugin 49# for incoming and outgoing events. No assumptions are made 50# regarding the relative path or the name of the filter plugin. 51# Therefore, the absolute path and the name of the binary must 52# be used. 53# 54# setprop client_list <FMRI string> 55# 56# Specifies a list of peers this module will accept a 57# connection from. 58# 59# This list may take the following forms: 60# 61# (1) A space-separated list. 62# 63# setprop client_list "dev:///dom0 dev:///dom1 dev:///dom2" 64# 65# (2) An array syntax for a range of endpoints. The following 66# example is equivalent to the previous example. 67# 68# setprop client_list "dev:///dom[0:2]" 69# 70# (3) A combination of both. The following example is 71# equivalent to the previous examples. 72# 73# setprop client_list "dev:///dom0 dev:///dom[1:2]" 74# 75# setprop server_list <FMRI string> 76# 77# Specifies a list of peers this module will initiate a 78# connection to. 79# 80# The syntax of this property is the same as the "client_list" 81# property above. 82# 83# If a peer is found in both client_list and server_list, 84# a connection will not be initiated to the peer, but a 85# connection will be accepted from the peer. 86# 87 88setprop server_list "dev:///sp0" 89