00001
00002
00003
00004
00005
00006 #if !defined(SAGA_SHELL_PROXY_DATA_APR_21_2008_0652PM)
00007 #define SAGA_SHELL_PROXY_DATA_APR_21_2008_0652PM
00008
00010
00011
00012 struct proxy_info
00013 {
00014 char const* const key;
00015 char const* const value;
00016 bool doecho;
00017 };
00018
00020
00021 struct proxy_type
00022 {
00023 char const* type;
00024 char const* context_type;
00025 proxy_info const* info;
00026 };
00027
00029
00030 proxy_info const omii_proxy_info[] =
00031 {
00032
00033 { saga::attributes::context_usercert, "${HOME}/.globus/usercert.pem", true },
00034 { saga::attributes::context_userkey, "${HOME}/.globus/userkey.pem", true },
00035 { saga::attributes::context_certrepository, "${HOME}/.globus/certificates/", true },
00036 { saga::attributes::context_userpass, NULL, false },
00037 { NULL, NULL }
00038 };
00039
00041
00042 proxy_type const known_proxies[] =
00043 {
00044 { "omii", "omii_gridsam", omii_proxy_info },
00045 { NULL }
00046 };
00047
00048 #endif