Correct Answer is: Reject
Explanation:
What is TCP socket primitive?
A socket primitive is a socket-related function that is provided by various high-level programming language libraries.
list of some socket primitives for TCP given below ..
SOCKET – create a new endpoint for network communication.
BIND – attach a socket to a specific local address (specified by IP address and port number).
LISTEN – indicate that the socket can accept new connections.For servers to create a socket and listen for clients arrival
ACCEPT – begin a network connection following an incoming connection request.
CONNECT – attempt to establish a connection request.
SEND – transmit data over the connection.
RECEIVE – receive data over the connection.
CLOSE – release the connection.
SEND, RECEIVE, and DISCONNECT: For both client and server