Linux (Ubuntu based)

Socket 이란?

Ethan Kang 2014. 11. 6. 11:28
반응형

네트워크의 근간을 이이루는 소켓이란 무엇일까?


이번 기회에 정리를 위해 조사를 해보았다.


A socket is a communication mechanism that allows client/server systems to be developed either locally, on a single machine, or across networks. Linux functions such as printing, connecting to databases, and serving web pages as well as network utilities such as rlogin for remote login and ftp for file transfer usually use sockets to communicate. Sockets are created and used differently from pipes because they make a clear distinction between client and server. The socket mechanism can implement multiple clients attached to a single server.


2.




반응형