|
SSL_state_string(3) -- get textual description of state of an SSL object
|
SSL_state_string() returns a 6 letter string indicating the current state of the SSL object ssl. SSL_state_string_long() returns a string indicating the current state of the SSL object ssl. |
SSL_want(3) -- obtain state information TLS/SSL I/O operation
|
SSL_want() returns state information for the SSL object ssl. The other SSL_want_*() calls are shortcuts for the possible states returned by SSL_want(). |
SSL_write(3) -- write bytes to a TLS/SSL connection.
|
SSL_write() writes num bytes from the buffer buf into the specified ssl connection. |
stdarg(3) -- variable argument lists
|
A function may be called with a varying number of arguments of varying types. The include file declares a type (va_list) and defines three macros for stepping through a list of arguments wh... |
stdio(3) -- standard input/output library functions
|
The standard I/O library provides a simple and efficient buffered stream I/O interface. Input and output is mapped into logical data streams and the physical I/O characteristics are concealed. The fun... |
strcasecmp(3) -- compare strings, ignoring case
|
The strcasecmp() and strncasecmp() functions compare the null-terminated strings s1 and s2 and return an integer greater than, equal to, or less than 0, according as s1 is lexicographically greater th... |
strcat(3) -- concatenate strings
|
The strcat() and strncat() functions append a copy of the null-terminated string append to the end of the null-terminated string s, then add a terminating `\0'. The string s must have sufficient spa... |
strchr(3) -- locate character in string
|
The strchr() function locates the first occurrence of c in the string pointed to by s. The terminating NUL character is considered part of the string. If c is `\0', strchr() locates the terminating ... |
strcmp(3) -- compare strings
|
The strcmp() and strncmp() functions lexicographically compare the nullterminated strings s1 and s2. |
strcoll(3) -- compare strings according to current collation
|
The strcoll() function lexicographically compares the null-terminated strings s1 and s2 according to the current locale collation and returns an integer greater than, equal to, or less than 0, accordi... |
strcpy(3) -- copy strings
|
The strcpy() and strncpy() functions copy the string src to dst (including the terminating `\0' character). The strncpy() copies not more than len characters into dst, appending `\0' characters if... |
strcspn(3) -- span the complement of a string
|
The strcspn() function spans the initial part of the null-terminated string s as long as the characters from s do not occur in string charset (it spans the complement of charset). |
strdup(3) -- save a copy of a string
|
The strdup() function allocates sufficient memory for a copy of the string str, does the copy, and returns a pointer to it. The pointer may subsequently be used as an argument to the function free(3).... |