Module Name: othersrc
Committed By: wiz
Date: Thu Sep 8 11:03:40 UTC 2011
Modified Files:
othersrc/external/bsd/axtls/dist/docsrc: libaxtls.3
Log Message:
Whitespace fixes.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 othersrc/external/bsd/axtls/dist/docsrc/libaxtls.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: othersrc/external/bsd/axtls/dist/docsrc/libaxtls.3
diff -u othersrc/external/bsd/axtls/dist/docsrc/libaxtls.3:1.1 othersrc/external/bsd/axtls/dist/docsrc/libaxtls.3:1.2
--- othersrc/external/bsd/axtls/dist/docsrc/libaxtls.3:1.1 Thu Sep 8 04:37:47 2011
+++ othersrc/external/bsd/axtls/dist/docsrc/libaxtls.3 Thu Sep 8 11:03:39 2011
@@ -1,4 +1,4 @@
-.\" $NetBSD: libaxtls.3,v 1.1 2011/09/08 04:37:47 agc Exp $
+.\" $NetBSD: libaxtls.3,v 1.2 2011/09/08 11:03:39 wiz Exp $
.\"
.\" Copyright (c) 2011 Alistair Crooks <[email protected]>
.\" All rights reserved.
@@ -131,49 +131,51 @@
The following functions are defined:
.Bl -tag -width XCXssl_get_session_id_sizeXX
.It Ar ssl_ctx_new
-Establish a new client/server context.
+Establish a new client/server context.
.It Ar ssl_ctx_free
-Remove a client/server context.
+Remove a client/server context.
.It Ar ssl_server_new
-(server only) Establish a new SSL connection to an SSL client.
+(server only) Establish a new SSL connection to an SSL client.
.It Ar ssl_client_new
-(client only) Establish a new SSL connection to an SSL server.
+(client only) Establish a new SSL connection to an SSL server.
.It Ar ssl_free
-Free any used resources on this connection.
+Free any used resources on this connection.
.It Ar ssl_read
-Read the SSL data stream. If the socket is non-blocking and data is blocked then SSO_OK will be returned.
+Read the SSL data stream.
+If the socket is non-blocking and data is blocked then SSO_OK will be returned.
.It Ar ssl_write
-Write to the SSL data stream. if the socket is non-blocking and data is blocked then a check is made to ensure that all data is sent (i.e. blocked mode is forced).
+Write to the SSL data stream.
+If the socket is non-blocking and data is blocked then a check is made to ensure that all data is sent (i.e. blocked mode is forced).
.It Ar ssl_find
-Find an ssl object based on a file descriptor.
+Find an ssl object based on a file descriptor.
.It Ar ssl_get_session_id
-Get the session id for a handshake.
+Get the session id for a handshake.
.It Ar ssl_get_session_id_size
-Get the session id size for a handshake.
+Get the session id size for a handshake.
.It Ar ssl_get_cipher_id
-Return the cipher id (in the SSL form).
+Return the cipher id (in the SSL form).
.It Ar ssl_handshake_status
-Return the status of the handshake.
+Return the status of the handshake.
.It Ar ssl_get_config
-Retrieve various parameters about the axTLS engine.
+Retrieve various parameters about the axTLS engine.
.It Ar ssl_display_error
-Display why the handshake failed.
+Display why the handshake failed.
.It Ar ssl_verify_cert
-Authenticate a received certificate.
+Authenticate a received certificate.
.It Ar ssl_get_cert_dn
-Retrieve an X.509 distinguished name component.
+Retrieve an X.509 distinguished name component.
.It Ar ssl_get_cert_subject_alt_dnsname
-Retrieve a Subject Alternative DNSName.
+Retrieve a Subject Alternative DNSName.
.It Ar ssl_renegotiate
-Force the client to perform its handshake again.
+Force the client to perform its handshake again.
.It Ar ssl_obj_load
-Process a file that is in binary DER or ASCII PEM format.
+Process a file that is in binary DER or ASCII PEM format.
.It Ar ssl_obj_memory_load
-Process binary data.
+Process binary data.
.It Ar ssl_x509_create
-Create an X.509 certificate.
+Create an X.509 certificate.
.It Ar ssl_version
-Return the axTLS library version as a string.
+Return the axTLS library version as a string.
.El
.Sh HISTORY
The