: Using read() or recv() to capture the quote sent by the server into a local buffer.

: Using the socket() system call to create an endpoint for communication (usually AF_INET for IPv4 and SOCK_STREAM for TCP).

: Calling connect() to link the local client socket to the remote server.