Linux Socket Programming Question:

What is the difference between socket & port?

Tweet Share WhatsApp

Answer:

port : a particular port number on a host
socket: a host and a port

like
-> http port = 80
-> when you fire up google.com
the socket on the server side is google.com:80 this is the server side socket

on your local system where you are browsing the socket is
yourip:port above 1024

Download Linux Socket Programming PDF Read All 6 Linux Socket Programming Questions
Previous QuestionNext Question
How to get client port number in server socket programming?Why bind system call is required in socket programming?