summaryrefslogtreecommitdiff
path: root/src/lib/ecore_con/efl_net_ssl_context.eo
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2016-11-11 15:35:48 +0100
committerStefan Schmidt <stefan@osg.samsung.com>2016-11-11 15:35:48 +0100
commitb8dfc68ee257ca0a853f4233a1e96de4febbc904 (patch)
treed8af4bd16523ef9a9a8b574ecaf207cb0999f796 /src/lib/ecore_con/efl_net_ssl_context.eo
parentf3d12112668af2648728a983518622dabb609ac2 (diff)
downloadefl-b8dfc68ee257ca0a853f4233a1e96de4febbc904.tar.gz
docs: ecore_con: add all missing docs for ecore_con
This should fill all gaps we still had in ecore_con. Please make sure all new additions comes with docs as well.
Diffstat (limited to 'src/lib/ecore_con/efl_net_ssl_context.eo')
-rw-r--r--src/lib/ecore_con/efl_net_ssl_context.eo18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/ecore_con/efl_net_ssl_context.eo b/src/lib/ecore_con/efl_net_ssl_context.eo
index 3c8caec57f..8549cdd09d 100644
--- a/src/lib/ecore_con/efl_net_ssl_context.eo
+++ b/src/lib/ecore_con/efl_net_ssl_context.eo
@@ -30,7 +30,7 @@ class Efl.Net.Ssl.Context (Efl.Object) {
]]
get { }
values {
- default_client_context: Efl.Net.Ssl.Context;
+ default_client_context: Efl.Net.Ssl.Context; [[Default SSL context]]
}
}
@@ -45,42 +45,42 @@ class Efl.Net.Ssl.Context (Efl.Object) {
@property certificates {
[[The list of paths to certificates to use.]]
values {
- paths: free(own(iterator<string>), eina_iterator_free);
+ paths: free(own(iterator<string>), eina_iterator_free); [[Path list for certificates]]
}
}
@property private_keys {
[[The list of paths to private keys to use.]]
values {
- paths: free(own(iterator<string>), eina_iterator_free);
+ paths: free(own(iterator<string>), eina_iterator_free); [[Path list for private keys]]
}
}
@property certificate_revogation_lists {
[[The list of paths to CRL (certificate revogation list) to use.]]
values {
- paths: free(own(iterator<string>), eina_iterator_free);
+ paths: free(own(iterator<string>), eina_iterator_free); [[Path list for CRL's]]
}
}
@property certificate_authorities {
[[The list of paths to CA (certificate authoritie) to use.]]
values {
- paths: free(own(iterator<string>), eina_iterator_free);
+ paths: free(own(iterator<string>), eina_iterator_free); [[Path list for CA's]]
}
}
@property default_paths_load {
[[If $true, will use system's default certificate storage]]
values {
- default_paths_load: bool;
+ default_paths_load: bool; [[$if true use system default paths for loading, $false otherwise]]
}
}
@property verify_mode {
[[How to verify the remote peer.]]
values {
- verify_mode: Efl.Net.Ssl.Verify_Mode;
+ verify_mode: Efl.Net.Ssl.Verify_Mode; [[Remote verification mode]]
}
}
@@ -92,7 +92,7 @@ class Efl.Net.Ssl.Context (Efl.Object) {
@.hostname.
]]
values {
- hostname_verify: bool;
+ hostname_verify: bool; [[$true if the hostname will be verified, $false otherwise]]
}
}
@@ -109,7 +109,7 @@ class Efl.Net.Ssl.Context (Efl.Object) {
It's only used if @.hostname_verify is $true.
]]
values {
- hostname: string @nullable;
+ hostname: string @nullable; [[Hostname for this socket]]
}
}
}