blob: 95a667f8ffe3e31cf4a9b5ae97289d6dcf648824 [file] [log] [blame]
Todd Wang712eeef2015-04-03 17:13:50 -07001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// Package mgmt defines constants used by the management tools and daemons.
6package mgmt
7
8const (
Ryan Brown7f950a82015-04-20 18:08:39 -07009 ParentNameConfigKey = "MGMT_PARENT_PROCESS_NAME"
10 ChildNameConfigKey = "MGMT_CHILD_PROCESS_NAME"
11 AppCycleManagerConfigKey = "MGMT_APP_CYCLE_MANAGER_NAME"
12 AddressConfigKey = "MGMT_CHILD_PROCESS_ADDRESS"
13 ProtocolConfigKey = "MGMT_CHILD_PROCESS_PROTOCOL"
14 ParentBlessingConfigKey = "MGMT_PARENT_BLESSING_PEER_PATTERN"
15 SecurityAgentEndpointConfigKey = "MGMT_SECURITY_AGENT_EP"
Ryan Brown0a3e28a2015-08-12 14:59:14 -070016 SecurityAgentPathConfigKey = "MGMT_SECURITY_AGENT_PATH"
Ryan Brown7f950a82015-04-20 18:08:39 -070017 AppOriginConfigKey = "MGMT_APP_ORIGIN"
Arup Mukherjee9d52e0d2015-06-27 00:47:30 -070018 PublisherBlessingPrefixesKey = "MGMT_PUBLISHER_BLESSING_PREFIXES"
19 InstanceNameKey = "MGMT_INSTANCE_NAME"
Todd Wang712eeef2015-04-03 17:13:50 -070020)