summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-09-22 13:24:06 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-09-22 13:24:06 +0000
commit0f5068dbf3aadcabcb6c1abd49d305332b4ecf01 (patch)
tree78f647994d5c6438bc6e545ac0a21fe78026f980
parente40e269b1c8f96a1ad8e3b0e5542596b476b8766 (diff)
downloadlasso-0f5068dbf3aadcabcb6c1abd49d305332b4ecf01.tar.gz
lasso-0f5068dbf3aadcabcb6c1abd49d305332b4ecf01.tar.xz
lasso-0f5068dbf3aadcabcb6c1abd49d305332b4ecf01.zip
Renamed lasso_lecp_init_from_authn_request_msg() into lasso_lecp_process_authn_request_msg()
BEWARE : this change breaks the API
-rw-r--r--lasso/id-ff/lecp.c8
-rw-r--r--lasso/id-ff/lecp.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/lasso/id-ff/lecp.c b/lasso/id-ff/lecp.c
index 415c121e..1efee217 100644
--- a/lasso/id-ff/lecp.c
+++ b/lasso/id-ff/lecp.c
@@ -208,9 +208,9 @@ lasso_lecp_init_authn_request(LassoLecp *lecp)
}
gint
-lasso_lecp_init_from_authn_request_msg(LassoLecp *lecp,
- gchar *authn_request_msg,
- lassoHttpMethod authn_request_method)
+lasso_lecp_process_authn_request_msg(LassoLecp *lecp,
+ gchar *authn_request_msg,
+ lassoHttpMethod authn_request_method)
{
gint res;
@@ -221,7 +221,7 @@ lasso_lecp_init_from_authn_request_msg(LassoLecp *lecp,
message(G_LOG_LEVEL_CRITICAL, "Invalid authentication request method\n");
return -1;
}
- res = lasso_login_init_from_authn_request_msg(LASSO_LOGIN(lecp), authn_request_msg, authn_request_method);
+ res = lasso_login_process_authn_request_msg(LASSO_LOGIN(lecp), authn_request_msg, authn_request_method);
return res;
}
diff --git a/lasso/id-ff/lecp.h b/lasso/id-ff/lecp.h
index 98524009..cedee2aa 100644
--- a/lasso/id-ff/lecp.h
+++ b/lasso/id-ff/lecp.h
@@ -83,7 +83,7 @@ LASSO_EXPORT void lasso_lecp_destroy (LassoLec
LASSO_EXPORT gint lasso_lecp_init_authn_request (LassoLecp *lecp);
-LASSO_EXPORT gint lasso_lecp_init_from_authn_request_msg (LassoLecp *lecp,
+LASSO_EXPORT gint lasso_lecp_process_authn_request_msg (LassoLecp *lecp,
gchar *authn_request_msg,
lassoHttpMethod authn_request_method);