summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Security/mixed_security_test/constants.h
blob: ada6b6fab70fca73498c86cb84780aa78355bac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// -*- C++ -*-

//=============================================================================
/**
 * @file constants.h
 *
 * Set of constants shared between client and server
 *
 * @author Chris Cleeland <cleeland@ociweb.com>
 */
//=============================================================================

#ifndef SECURE_INVOCATION_CONSTANTS_H
#define SECURE_INVOCATION_CONSTANTS_H

namespace TAO_Mixed_Security_Test
{
  const char *cert_file = "cacert.pem";

  const ACE_TCHAR *permitted_ior_file = ACE_TEXT("permitted.ior");
  const ACE_TCHAR *permitted_ior = ACE_TEXT("file://permitted.ior");

  const ACE_TCHAR *restricted_ior_file = ACE_TEXT("restricted.ior");
  const ACE_TCHAR *restricted_ior = ACE_TEXT("file://restricted.ior");
}

#endif