xref: /illumos-gate/usr/src/cmd/dcs/sparc/sun4u/dcs.xcl (revision 2a8bcb4efb45d99ac41c94a75c396b362c414f7f)
1*7c478bd9Sstevel@tonic-gate#
2*7c478bd9Sstevel@tonic-gate# CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate#
4*7c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate# (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate# with the License.
8*7c478bd9Sstevel@tonic-gate#
9*7c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate# and limitations under the License.
13*7c478bd9Sstevel@tonic-gate#
14*7c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate#
20*7c478bd9Sstevel@tonic-gate# CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate#
22*7c478bd9Sstevel@tonic-gate# Copyright (c) 2000 by Sun Microsystems, Inc.
23*7c478bd9Sstevel@tonic-gate# All rights reserved.
24*7c478bd9Sstevel@tonic-gate#
25*7c478bd9Sstevel@tonic-gate
26*7c478bd9Sstevel@tonic-gate#
27*7c478bd9Sstevel@tonic-gate# The list of error strings below are the ones that are
28*7c478bd9Sstevel@tonic-gate# _only_ logged to syslog, and thus, should not be
29*7c478bd9Sstevel@tonic-gate# localized. In the future, if a particular error string
30*7c478bd9Sstevel@tonic-gate# is returned to the client, it should be removed from
31*7c478bd9Sstevel@tonic-gate# this file.
32*7c478bd9Sstevel@tonic-gate#
33*7c478bd9Sstevel@tonic-gate
34*7c478bd9Sstevel@tonic-gatemsgid  "%s operation issued before session established"
35*7c478bd9Sstevel@tonic-gatemsgid  "%s service not found, using reserved port 665"
36*7c478bd9Sstevel@tonic-gatemsgid  "abort attempt of session, %d, unsuccessful"
37*7c478bd9Sstevel@tonic-gatemsgid  "client disconnected"
38*7c478bd9Sstevel@tonic-gatemsgid  "confirm callback failed, aborting operation"
39*7c478bd9Sstevel@tonic-gatemsgid  "connection attempt failed"
40*7c478bd9Sstevel@tonic-gatemsgid  "failed to acquire reserved port"
41*7c478bd9Sstevel@tonic-gatemsgid  "failed to start a new session handler"
42*7c478bd9Sstevel@tonic-gatemsgid  "illegal argument to -%c flag (%s), exiting"
43*7c478bd9Sstevel@tonic-gatemsgid  "illegal option (-%c), exiting"
44*7c478bd9Sstevel@tonic-gatemsgid  "internal error: %s: %s"
45*7c478bd9Sstevel@tonic-gatemsgid  "invalid session establishment sequence"
46*7c478bd9Sstevel@tonic-gatemsgid  "message callback failed, continuing"
47*7c478bd9Sstevel@tonic-gatemsgid  "network initialization failed"
48*7c478bd9Sstevel@tonic-gatemsgid  "operation failed"
49*7c478bd9Sstevel@tonic-gatemsgid  "permission denied"
50*7c478bd9Sstevel@tonic-gatemsgid  "received an invalid message"
51*7c478bd9Sstevel@tonic-gatemsgid  "retry value invalid (%d)"
52*7c478bd9Sstevel@tonic-gatemsgid  "retrying operation, attempt %d"
53*7c478bd9Sstevel@tonic-gatemsgid  "session aborted"
54*7c478bd9Sstevel@tonic-gatemsgid  "timeout value invalid (%d)"
55*7c478bd9Sstevel@tonic-gatemsgid  "unable to receive message"
56*7c478bd9Sstevel@tonic-gatemsgid  "unable to send message for %s operation"
57*7c478bd9Sstevel@tonic-gatemsgid  "unknown operation requested"
58*7c478bd9Sstevel@tonic-gatemsgid  "unrecognized error reported"
59*7c478bd9Sstevel@tonic-gatemsgid  "unsupported message protocol version %d.%d"
60*7c478bd9Sstevel@tonic-gate
61*7c478bd9Sstevel@tonic-gate
62*7c478bd9Sstevel@tonic-gate#
63*7c478bd9Sstevel@tonic-gate# Miscellaneous strings
64*7c478bd9Sstevel@tonic-gate#
65*7c478bd9Sstevel@tonic-gate
66*7c478bd9Sstevel@tonic-gatemsgid  ""
67*7c478bd9Sstevel@tonic-gatemsgid  "%s\n"
68*7c478bd9Sstevel@tonic-gatemsgid  "%s: %s"
69*7c478bd9Sstevel@tonic-gatemsgid  "%s: %s\n"
70*7c478bd9Sstevel@tonic-gatemsgid  ", RDR_FAILED"
71*7c478bd9Sstevel@tonic-gatemsgid  ", RDR_SUCCESS"
72*7c478bd9Sstevel@tonic-gatemsgid  "<%d> %s"
73*7c478bd9Sstevel@tonic-gatemsgid  "INVALID TYPE"
74*7c478bd9Sstevel@tonic-gatemsgid  "RDR_CONF_ABORT_CMD"
75*7c478bd9Sstevel@tonic-gatemsgid  "RDR_CONF_AP_ID_CMP"
76*7c478bd9Sstevel@tonic-gatemsgid  "RDR_CONF_CHANGE_STATE"
77*7c478bd9Sstevel@tonic-gatemsgid  "RDR_CONF_CONFIRM_CALLBACK"
78*7c478bd9Sstevel@tonic-gatemsgid  "RDR_CONF_HELP"
79*7c478bd9Sstevel@tonic-gatemsgid  "RDR_CONF_LIST_EXT"
80*7c478bd9Sstevel@tonic-gatemsgid  "RDR_CONF_MSG_CALLBACK"
81*7c478bd9Sstevel@tonic-gatemsgid  "RDR_CONF_PRIVATE_FUNC"
82*7c478bd9Sstevel@tonic-gatemsgid  "RDR_CONF_TEST"
83*7c478bd9Sstevel@tonic-gatemsgid  "RDR_INVALID_OP"
84*7c478bd9Sstevel@tonic-gatemsgid  "RDR_REPLY"
85*7c478bd9Sstevel@tonic-gatemsgid  "RDR_REQUEST"
86*7c478bd9Sstevel@tonic-gatemsgid  "RDR_RSRC_INFO"
87*7c478bd9Sstevel@tonic-gatemsgid  "RDR_SES_CHALLENGE"
88*7c478bd9Sstevel@tonic-gatemsgid  "RDR_SES_END"
89*7c478bd9Sstevel@tonic-gatemsgid  "RDR_SES_ESTBL"
90*7c478bd9Sstevel@tonic-gatemsgid  "RDR_SES_REQ"
91*7c478bd9Sstevel@tonic-gatemsgid  "dcs_msg.c"
92*7c478bd9Sstevel@tonic-gatemsgid  "hdr"
93*7c478bd9Sstevel@tonic-gatemsgid  "malloc"
94*7c478bd9Sstevel@tonic-gatemsgid  "message %s: <%s, %s%s>\n"
95*7c478bd9Sstevel@tonic-gatemsgid  "received"
96*7c478bd9Sstevel@tonic-gatemsgid  "sent"
97