From 659c5bcc3fdb27c4cde9ac14a1468834f6caf08b Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 20 Oct 2016 12:55:36 +0200 Subject: [PATCH] docs: ecore_con: add docs for HTTP authentication method enum --- src/lib/ecore_con/efl_net_http_types.eot | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/lib/ecore_con/efl_net_http_types.eot b/src/lib/ecore_con/efl_net_http_types.eot index 75b7071..8cf5898 100644 --- a/src/lib/ecore_con/efl_net_http_types.eot +++ b/src/lib/ecore_con/efl_net_http_types.eot @@ -9,14 +9,16 @@ enum Efl.Net.Http.Version { } enum Efl.Net.Http.Authentication_Method { - none = 0, - basic = (1 << 0), - digest = (1 << 1), - negotiate = (1 << 2), - ntlm = (1 << 3), - ntlm_winbind = (1 << 4), - any_safe = Efl.Net.Http.Authentication_Method.digest | Efl.Net.Http.Authentication_Method.negotiate | Efl.Net.Http.Authentication_Method.ntlm | Efl.Net.Http.Authentication_Method.ntlm_winbind, - any = Efl.Net.Http.Authentication_Method.any_safe | Efl.Net.Http.Authentication_Method.basic, + [[HTTP authentication methods]] + + none = 0, [[HTTP authentication method none]] + basic = (1 << 0), [[HTTP authentication method basic]] + digest = (1 << 1), [[HTTP authentication method digest]] + negotiate = (1 << 2), [[HTTP authentication method negotiate]] + ntlm = (1 << 3), [[HTTP authentication method ntlm]] + ntlm_winbind = (1 << 4), [[HTTP authentication method ntlm winbind]] + any_safe = Efl.Net.Http.Authentication_Method.digest | Efl.Net.Http.Authentication_Method.negotiate | Efl.Net.Http.Authentication_Method.ntlm | Efl.Net.Http.Authentication_Method.ntlm_winbind, [[HTTP authentication method any safe]] + any = Efl.Net.Http.Authentication_Method.any_safe | Efl.Net.Http.Authentication_Method.basic, [[HTTP authentication method any]] } enum Efl.Net.Http.Status { -- 2.7.4