diff options
author | Simo Sorce <simo@redhat.com> | 2012-05-17 00:31:14 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2012-08-28 08:25:51 +0200 |
commit | ca0ff11fc945f15860086f6c2f76dfb1556018fa (patch) | |
tree | 3daa8324aeac6ddebac24a3d66dfa89aa54c42b8 /proxy/src/client/gpm_common.c | |
parent | dad1d6295a8d2e04ab283593a18f0a3c5e4f52df (diff) | |
download | gss-proxy-ca0ff11fc945f15860086f6c2f76dfb1556018fa.tar.gz gss-proxy-ca0ff11fc945f15860086f6c2f76dfb1556018fa.tar.xz gss-proxy-ca0ff11fc945f15860086f6c2f76dfb1556018fa.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/gpm_common.c')
-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); } + |