I am programming an SSL socket and many times I have seen something (variable name, function...) with FD or SD in its name. For example, OpenSSL provides the function:
int fd = SSL_get_fd(...);
In many tutorials (here, here and here), this is used:
int sd = socket(...);
Can anyone explain, what does FD and SD stand for?
Thanks