This was a question raised by one of the software engineers in my organisation. I'm interested in the broadest definition.

link|improve this question

41% accept rate
2  
Any reason why this question has no accepted answer? The reason I ask is that a short question with multiple long answers, with a lot of upvotes, usually mean that the question is too broad or not very specific, and thus should be closed as such. On the other hand, accepting an answer usually means "This is the right answer to this question", so are any of the answers here actually answering the question, as posed? – Lasse V. Karlsen Apr 7 at 19:41
feedback

17 Answers

From here

A socket represents a single connection between two network applications. These two applications nominally run on different computers, but sockets can also be used for interprocess communication on a single computer. Applications can create multiple sockets for communicating with each other. Sockets are bidirectional, meaning that either side of the connection is capable of both sending and receiving data. Therefore a socket can be created theoretically at any level of the OSI model from 2 upwards. Programmers often use sockets in network programming, albeit indirectly. Programming libraries like Winsock hide many of the low-level details of socket programming. Sockets have been in widespread use since the early 1980s. A port represents an endpoint or "channel" for network communications. Port numbers allow different applications on the same computer to utilize network resources without interfering with each other. Port numbers most commonly appear in network programming, particularly socket programming. Sometimes, though, port numbers are made visible to the casual user. For example, some Web sites a person visits on the Internet use a URL like the following:

http://www.mairie-metz.fr:8080/ In this example, the number 8080 refers to the port number used by the Web browser to connect to the Web server. Normally, a Web site uses port number 80 and this number need not be included with the URL (although it can be).

In IP networking, port numbers can theoretically range from 0 to 65535. Most popular network applications, though, use port numbers at the low end of the range (such as 80 for HTTP).

Note: The term port also refers to several other aspects of network technology. A port can refer to a physical connection point for peripheral devices such as serial, parallel, and USB ports. The term port also refers to certain Ethernet connection points, such as those on a hub, switch, or router.

ref http://compnetworking.about.com/od/basicnetworkingconcepts/l/bldef_port.htm

ref http://compnetworking.about.com/od/itinformationtechnology/l/bldef_socket.htm

link|improve this answer
1  
Layer 2 on the OSI model is a connection between nodes, it has no mechanism of connecting processes. I don't believe you can consider a socket existing at OSI l2. – Antonio Haley Sep 30 '08 at 12:45
A circuit is a connection - a socket is an endpoint. A connection consists of 2 sockets. – Mark Brackett Sep 30 '08 at 14:33
12  
"The port number is included as a field within the header of each IP packet." WRONG. The port number is not in the IP header, it is not an IP concept and you won't find it in RFC 791. Port numbers are a concept of TRANSPORT protocols and, on the wire, you'll find it in th TCP, SCTP or UDP header. – bortzmeyer Apr 28 '09 at 7:03
@bortzmeyer next time edit the question and remove the wrong sentence (like I just did) – Pablo Fernandez May 24 '11 at 2:57
-1 for identifying sockets as connections. As others pointed out that is not quiet correct (and I would give another -1 for pointing to a source - of that false information - that is not publically available). – mugen kenichi May 1 at 23:12
feedback

This was an interesting question that forced me to re-examine a number of things I thought I knew inside out.

In the broadest possible sense, a port is a point of ingress or egress. The French word porte literally means door. Ports, then, are transportation endpoints whether you ship data or big steel containers.

For the purpose of this discussion I will limit consideration to the context of TCP-IP networks. The OSI model is all very well but has never been completely implemented, much less widely deployed in high-traffic high-stress conditions.

The combination of an IP address and a port is strictly known as an endpoint and is sometimes called a socket. This usage originates with RFC793, the original TCP specification.

A TCP connection is defined by two endpoints aka sockets.

An endpoint (socket) is defined by the combination of a network address and a port identifier.

The purpose of ports is to differentiate multiple endpoints on a given network address. You could say that a port is a virtualised endpoint. This virtualisation makes possible multiple concurrent connections on a single network interface.

It is the socket pair (the 4-tuple consisting of the client IP address, client port number, server IP address, and server port number) that specifies the two endpoints that uniquely identifies each TCP connection in an internet. (TCP-IP Illustrated Volume 1, W. Richard Stevens)

In most C-derived lanaguages, TCP connections are established and manipulated using methods on an instance of a Socket class. Although it is common to operate on a higher level of abstraction, typically an instance of a NetworkStream class, this generally exposes a reference to a socket object. To the coder this socket object appears to represent the connection because the connection is created and manipulated using methods of the socket object.

In C#, to establish a TCP connection (to an existing listener) first you create a TcpClient. If you don't specify an endpoint to the TcpClient constructor it uses defaults - one way or another the local endpoint is defined. Then you invoke the Connect method on the instance you've created. This method requires a parameter describing the other endpoint.

All this is a bit confusing and leads you to believe that a socket is a connection, which is bollocks. I was labouring under this misapprehension until Richard Dorman asked the question.

Having done a lot of reading and thinking, I'm now convinced that it would make a lot more sense to have a class TcpConnection with a constructor that takes two arguments, LocalEndpoint and RemoteEndpoint. You could probably support a single argument RemoteEndpoint when defaults are acceptable for the local endpoint.

link|improve this answer
2  
+1 for an excellent answer – jscharf Jan 19 '10 at 4:54
feedback

There seems to be a lot of answers equating socket with the connection between 2 PC's..which I think is absolutely incorrect. A socket has always been the endpoint on 1 PC, that may or may not be connected - surely we've all used listener or UDP sockets* at some point. The important part is that it's addressable and active. Sending a message to 1.1.1.1:1234 is not likely to work, as there is no socket defined for that endpoint.

Sockets are protocol specific - so the implementation of uniqueness that both TCP/IP and UDP/IP uses* (ipaddress:port), is different than eg., IPX (Network, Node, and...ahem, socket - but a different socket than is meant by the general "socket" term. IPX socket numbers are equivalent to IP ports). But, they all offer a unique addressable endpoint.

Since IP has become the dominant protocol, a port (in networking terms) has become synonomous with either a UDP or TCP port number - which is a portion of the socket address.

  • UDP is connection-less - meaning no virtual circuit between the 2 endpoints is ever created. However, we still refer to UDP sockets as the endpoint. The API functions make it clear that both are just different type of sockets - SOCK_DGRAM is UDP (just sending a message) and SOCK_STREAM is TCP (creating a virtual circuit).

  • Technically, the IP header holds the IP Address, and the protocol on top of IP (UDP or TCP) holds the port number. This makes it possible to have other protocols (eg. ICMP that have no port numbers, but do have IP addressing information).

link|improve this answer
feedback

Relative TCP/IP terminology which is what I assume is implied by the question. In layman's terms:

A PORT is like the telephone number of a particular house in a particular zip code. The ZIP code of the town could be thought of as the IP address of the town and all the houses in that town.

A SOCKET on the other hand is more like an established phone call between telephones of a pair of houses talking to each other. Those calls can be established between houses in the same town or two houses in different towns. It's that temporary established pathway between the pair of phones talking to each other that is the SOCKET.

link|improve this answer
feedback

A socket = IP Address + a port (numeric address)
Together they identify an end-point for a network connection on a machine. (Did I just flunk network 101?)

link|improve this answer
2  
I believe port has broader meaning than your definition. – Richard Dorman Sep 30 '08 at 10:09
And sockets are not only subject to the TCP/IP stack. See UNIX domain sockets or inter process communication sockets in general. – mugen kenichi May 1 at 23:04
feedback

They are terms from two different domains: 'port' is a concept from TCP/IP networking, 'socket' is an API (programming) thing. A 'socket' is made (in code) by taking a port and a hostname or network adapter and combining them into a data structure that you can use to send or receive data.

link|improve this answer
feedback

A socket is basically an endpoint for network communication, consisting of at least an IP-address and a port. In Java/C# a socket is a higher level implementation of one side of a two-way connection.

Also, a definition in the Java documentation.

link|improve this answer
feedback

A socket is a data I/O mechanism. A port is a contractual concept of a communication protocol. A socket can exist without a port. A port can exist witout a specific socket (e.g. if several sockets are active on the same port, which may be allowed for some protocols).

A port is used to determine which socket the receiver should route the packet to, with many protocols, but it is not always required and the receiving socket selection can be done by other means - a port is entirely a tool used by the protocol handler in the network subsystem. e.g. if a protocol does not use a port, packets can go to all listening sockets or any socket.

link|improve this answer
feedback

Just to reiterate, sockets are not limited to network IO. They're available in all sorts of situations for streaming data between various applications.

link|improve this answer
So, to clarify, sockets are limited to I/O, but not strictly network I/O? – strager Dec 31 '08 at 8:12
feedback

A socket is a communication endpoint. A socket is not bound to TCP/IP, it can be any protocol. You create a socket by either defining a local address (in case of TCP/IP an address is an IP address and usually, in case it's a TCP or UDP socket, a port number, both can be ANY) and then binding the socket to it and just use it a server socket, or you can create a socket by defining a remote address and then connecting the socket to it (additionally you can bind it to a local address in advance, if you want to keep control of the local address and port as well) and use it as a client socket. Once you have a socket, consider it a communication pipe. You send data to it and the other side (to that you connected or that connected to you) receives the data you send there. Both ends of a socket can be on the same host or million of miles away. Once a socket is fully connected, you don't need to care anymore what kind of socket that is. If it is a TCP/IP socket, whether it is IPv4 or IPv6 or any other protocol, you just send traffic through the socket and everything else is handled by the system for you.

This has all nothing to do with ports. A port is a concept used by the TCP/IP protocol family to distinguish multiple communication tunnels between hosts on the Internet. E.g. if there were no ports, I could connect to server1.example.net to fetch a webpage or I could connect there to fetch mail, but never both at the same time. If I do both at the same time and server1.example.net sends me some data, how can I know if this data belongs to the webpage I just requested or is part of the fetch new mail request? I can't use IP addresses for that, in either case the packet would have the same source and dest address. However ports allow it to further distinguish communication pipes between two Internet hosts. That way I know that traffic for my webpage will come from port 80 and arrive here at port 4130 and traffic from my fetch mail call will come from port 143 and arrive locally 5322. If you program with sockets, the only time you ever get in contact with ports is when you bind or connect the socket, once it is bound and/or connected, you don't care for ports at all anymore.

link|improve this answer
This is incorrect. A socket is not an endpoint. A socket is defined by two endpoints. Each endpoint is defined by a network address and a port. The purpose of ports is to differentiate multiple endpoints on the same network address, so that multiple concurrent sockets can be supported. – Peter Wone Sep 30 '08 at 11:18
I notice that RFC793 (original TCP spec) does refer to the combination of a network address and a port as a socket, so I can see where you got this, but it's still incorrect inasmuchas a socket is necessarily defined by two endpoints. – Peter Wone Sep 30 '08 at 11:28
On reflection the literature is contradictory and I apologise. Very strictly speaking communication does not occur until a TCP connection is established between two endpoints (aka sockets) each of which is identified by a network address and a port. I give up. – Peter Wone Sep 30 '08 at 12:29
feedback

A socket is a structure in your software. It's more-or-less a file; it has operations like read and write. It isn't a physical thing; it's a way for your software to refer to physical things.

A port is a device-like thing. Each host has one or more networks (those are physical); a host has an address on each network. Each address can have thousands of ports.

One socket only may be using a port at an address. The socket allocates the port approximately like allocating a device for file system I/O. Once the port is allocated, no other socket can connect to that port. The port will be freed when the socket is closed.

Take a look at TCP/IP Terminology.

link|improve this answer
This description of socket is pretty off base. A socket is about the connection between a pair of tuples where a tuple refers to an IP ADDR & Port pair. Additionally many sockets CAN connect to the same port. How do you think a web server takes multiple connections on port 80? This is a poor answer – Tall Jeff Sep 30 '08 at 12:15
I agree. Downvoted. – Alvaro Rodriguez Sep 30 '08 at 12:24
Sorry. Multiple sockets are not connected to port 80. One socket is connected and spawns additional sockets where the real transfer happens. See opengroup.org/onlinepubs/009695399/functions/listen.html. – S.Lott Sep 30 '08 at 12:39
Actually, the description at opengroup.org/onlinepubs/009695399/functions/connect.html is better. The peer socket returned by a connection is NOT on port 80. – S.Lott Sep 30 '08 at 12:41
This post is incorrect in several particulars and misleading in several respects. – Peter Wone Oct 2 '08 at 2:12
show 2 more comments
feedback

Firsty, I think we should start with a little understanding of what constitutes getting a packet from A to B.

A common definition for a network is the use of the OSI Model which separates a network out into a number of layers according to purpose. There are a few important ones, which we'll cover here:

  • The data link layer. This layer is responsible for getting packets of data from one network device to another and is just above the layer that actually does the transmitting. It talks about MAC addresses and knows how to find hosts based on their MAC (hardware) address, but nothing more.
  • The network layer is the layer that allows you to transport data across machines and over physical boundaries, such as physical devices. The network layer must essentially support an additional address based mechanism which relates somehow to the physical address; enter the Internet Protocol (IPv4). An IP address can get your packet from A to B over the internet, but knows nothing about how to traverse individual hops. This is handled by the layer above in accordance with routing information.
  • The transport layer. This layer is responsible for defining the way information gets from A to B and any restrictions, checks or errors on that behaviour. For example, TCP adds additional information to a packet such that it is possible to deduce if packets have been lost.

TCP contains, amongst other things, the concept of ports. These are effectively different data endpoints on the same IP address to which an Internet Socket (AF_INET) can bind.

As it happens, so too does UDP, and other transport layer protocols. They don't technically need to feature ports, but these ports do provide a way for multiple applications in the layers above to use the same computer to receive (and indeed make) outgoing connections.

Which brings us to the anatomy of a TCP or UDP connection. Each features a source port and address, and a target port and address. This is so that in any given session, the target application can respond, as well as receive, from the source.

So ports are essentially a specification-mandated way of allowing multiple concurrent connections sharing the same address.

Now, we need to take a look at how you communicate from an application point of view to the outside world. To do this, you need to kindly ask your operating system and since most OSes support the Berkeley Sockets way of doing things, we see we can create sockets involving ports from an application like this:

int fd = socket(AF_INET, SOCK_STREAM, 0); // tcp socket
int fd = socket(AF_INET, SOCK_DGRAM, 0); // udp socket
// later we bind...

Great! So in the sockaddr structures, we'll specify our port and bam! Job done! Well, almost, except:

int fd = socket(AF_UNIX, SOCK_STREAM, 0);

is also possible. Urgh, that's thrown a spanner in the works!

Ok, well actually it hasn't. All we need to do is come up with some appropriate definitions:

  • An internet socket is the combination of an IP address, a protocol and its associated port number on which a service may provide data. So tcp port 80, stackoverflow.com is an internet socket.
  • An unix socket is an IPC endpoint represented in the file system, e.g. /var/run/database.sock.
  • A socket API is a method of requesting an application be able to read and write data to a socket.

Voila! That tidies things up. So in our scheme then,

  • A port is a numeric identifier which, as part of a transport layer protocol, identifies the service number which should respond to the given request.

So really a port is a subset of the requirements for forming an internet socket. Unfortunately, it just so happens that the meaning of the word socket has been applied to several different ideas. So I heartily advise you name your next project socket, just to add to the confusion ;)

link|improve this answer
feedback

Port:

A port can refer to a physical connection point for peripheral devices such as serial, parallel, and USB ports. The term port also refers to certain Ethernet connection points, s uch as those on a hub, switch, or router.

Socket:

A socket represents a single connection between two network applications. These two applications nominally run on different computers, but sockets can also be used for interprocess communication on a single computer. Applications can create multiple sockets for communicating with each other. Sockets are bidirectional, meaning that either side of the connection is capable of both sending and receiving data.

link|improve this answer
feedback

A port denotes a communication endpoint in the TCP and UDP transports for the IP network protocol. A socket is a software abstraction for a communication endpoint commonly used in implementations of these protocols (socket API). An alternative implementation is the XTI/TLI API.

See also:

Stevens, W. R. 1998, UNIX Network Programming: Networking APIs: Sockets and XTI; Volume 1, Prentice Hall.
Stevens, W. R., 1994, TCP/IP Illustrated, Volume 1: The Protocols, Addison-Wesley.

link|improve this answer
feedback

In a broad sense, Socket - is just that, a socket, just like your electrical, cable or telephone socket. A point where "requisite stuff" (power, signal, information) can go out and come in from. It hides a lot of detailed stuff, which is not required for the use of the "requisite stuff". In software parlance, it provides a generic way of defining a mechanism of communication between two entities (those entities could be anything - two applications, two physically separate devices, User & Kernel space within an OS, etc)

A Port is an endpoint discriminator. It differentiates one endpoint from another. At networking level, it differentiates one application from another, so that the networking stack can pass on information to the appropriate application.

link|improve this answer
feedback

A connection socket(fd) is presented for local addr + local port + peer addr + peer port. Process recv/send data via socket abstract. A listening socket(fd) is presented for local addr + local listening port. Process can accept new connection via socket.

link|improve this answer
feedback

Quoted from this very explanatory tutorial:

When an ap­pli­ca­tion wants to connect to a port to start waiting for in­com­ing con­nec­tions, it first asks Winsock to create a socket handle. Winsock creates the socket and hands control of it to the ap­pli­ca­tion. From this point the ap­pli­ca­tion is said to 'own' the socket. Then, the ap­pli­ca­tion binds the socket on to a spec­i­fied port. The socket is then free to begin lis­ten­ing for in­com­ing con­nec­tions (back to the factory analogy, it's as if the em­ploy­ee tells the mail sorter that he wants his mail de­liv­ered to say, pi­geon-​hole no.​15 — in essence he binds himself to the pigeon hole.)

A port is not a socket (a common con­fu­sion), though there is a close re­la­tion­ship between the two. A socket is as­so­ci­at­ed with a port, though this is po­ten­tial­ly a many-​to-​one re­la­tion­ship. Each port can have a single passive socket binded to it, await­ing in­com­ing con­nec­tions, and mul­ti­ple active sockets, each cor­re­spond­ing to an open con­nec­tion on the port. It's as if the factory worker is waiting for new mes­sages to arrive (he rep­re­sents the passive socket), and when one message arrives from a new sender, he ini­ti­ates a cor­re­spon­dence (a con­nec­tion) with them by del­e­gat­ing someone else (an active socket) to ac­tu­al­ly read the packet and respond back to the sender if nec­es­sary. This permits the factory worker to be free to receive new packets.

link|improve this answer
Winsuck. It doesn't need to be Winsock. – WTP'-- Jan 16 '11 at 19:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.