X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=lib%2Fopenssl%2Fdoc%2Fcrypto%2FCRYPTO_set_ex_data.pod;fp=lib%2Fopenssl%2Fdoc%2Fcrypto%2FCRYPTO_set_ex_data.pod;h=0000000000000000000000000000000000000000;hb=02ed66432c92de70694700164f986190aad3cbc5;hp=7409c02aac204d4944a9aae6a873d32a9b8c77e4;hpb=89016837dcbf2775cd15dc8cbaba00dc6379f86e;p=cassiopeia.git diff --git a/lib/openssl/doc/crypto/CRYPTO_set_ex_data.pod b/lib/openssl/doc/crypto/CRYPTO_set_ex_data.pod deleted file mode 100644 index 7409c02..0000000 --- a/lib/openssl/doc/crypto/CRYPTO_set_ex_data.pod +++ /dev/null @@ -1,53 +0,0 @@ -=pod - -=head1 NAME - -CRYPTO_set_ex_data, CRYPTO_get_ex_data - internal application specific data functions - -=head1 SYNOPSIS - - #include - - int CRYPTO_set_ex_data(CRYPTO_EX_DATA *r, int idx, void *arg); - - void *CRYPTO_get_ex_data(CRYPTO_EX_DATA *r, int idx); - -=head1 DESCRIPTION - -Several OpenSSL structures can have application specific data attached to them. -These functions are used internally by OpenSSL to manipulate application -specific data attached to a specific structure. - -These functions should only be used by applications to manipulate -B structures passed to the B, B and -B callbacks: as passed to B for example. - -B is used to set application specific data, the data is -supplied in the B parameter and its precise meaning is up to the -application. - -B is used to retrieve application specific data. The data -is returned to the application, this will be the same value as supplied to -a previous B call. - -=head1 RETURN VALUES - -B returns 1 on success or 0 on failure. - -B returns the application data or 0 on failure. 0 may also -be valid application data but currently it can only fail if given an invalid B -parameter. - -On failure an error code can be obtained from L. - -=head1 SEE ALSO - -L, -L, -L - -=head1 HISTORY - -CRYPTO_set_ex_data() and CRYPTO_get_ex_data() have been available since SSLeay 0.9.0. - -=cut