diff options
author | Simo Sorce <simo@redhat.com> | 2012-05-17 00:31:14 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2012-10-25 15:52:37 -0400 |
commit | 6349fcfdbf2668af203b9ca60efece64b7feba85 (patch) | |
tree | 73529e429e8837d4f64d711684b9e5889ef42f4f /proxy/src/client | |
parent | deab6159a27b10818532ac2a8386352ad167bf52 (diff) | |
download | gss-proxy-6349fcfdbf2668af203b9ca60efece64b7feba85.tar.gz gss-proxy-6349fcfdbf2668af203b9ca60efece64b7feba85.tar.xz gss-proxy-6349fcfdbf2668af203b9ca60efece64b7feba85.zip |
Add function to return a special mech
When the interposer wants to call the mechglue and have it call a real
mechanism it does so by providing a speecial mechanism oid.
This is an oid composed of the procy plugin oid and the real mechanism oid
that the mechglue transforms back into a real OID before selecting the
appropriate mechanism.
Diffstat (limited to 'proxy/src/client')
-rw-r--r-- | proxy/src/client/gpm_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proxy/src/client/gpm_common.c b/proxy/src/client/gpm_common.c index 16ea7d6..8bd04d1 100644 --- a/proxy/src/client/gpm_common.c +++ b/proxy/src/client/gpm_common.c @@ -518,3 +518,4 @@ void gpm_free_xdrs(int proc, union gp_rpc_arg *arg, union gp_rpc_res *res) xdr_free(gpm_xdr_set[proc].arg_fn, (char *)arg); xdr_free(gpm_xdr_set[proc].res_fn, (char *)res); } + |