stub for edg_wll_gss_connect_name(), which makes connection to server with a particul...
authorDaniel Kouřil <kouril@ics.muni.cz>
Fri, 17 Feb 2012 09:35:14 +0000 (09:35 +0000)
committerDaniel Kouřil <kouril@ics.muni.cz>
Fri, 17 Feb 2012 09:35:14 +0000 (09:35 +0000)
org.glite.lbjp-common.gss/interface/glite_gss.h
org.glite.lbjp-common.gss/src/glite_gss.c

index 78e0562..caa66cb 100644 (file)
@@ -109,6 +109,16 @@ edg_wll_gss_connect_ext(edg_wll_GssCred cred,
                        edg_wll_GssStatus* gss_code);
 
 int
+edg_wll_gss_connect_name(edg_wll_GssCred cred,
+                        char const *hostname,
+                        int port,
+                        const char *servername,
+                        gss_OID_set mechs,
+                        struct timeval *timeout,
+                        edg_wll_GssConnection *connection,
+                        edg_wll_GssStatus* gss_code);
+
+int
 edg_wll_gss_accept(edg_wll_GssCred cred,
                   int sock,
                   struct timeval *timeout,
index 191b59d..10ecf5b 100644 (file)
@@ -899,6 +899,20 @@ edg_wll_gss_connect_ext(edg_wll_GssCred cred, char const *hostname, int port,
 }
 
 int
+edg_wll_gss_connect_name(edg_wll_GssCred cred,
+                        char const *hostname,
+                        int port,
+                        const char *servername,
+                        gss_OID_set mechs,
+                        struct timeval *timeout,
+                        edg_wll_GssConnection *connection,
+                        edg_wll_GssStatus* gss_code)
+{
+    return ENOSYS;
+}
+
+
+int
 edg_wll_gss_connect(edg_wll_GssCred cred, char const *hostname, int port,
                     struct timeval *timeout, edg_wll_GssConnection *connection,
                     edg_wll_GssStatus* gss_code)