Code Monkey home page Code Monkey logo

network's Introduction

network

A network is a group of IP addresses.
Network configuration for each host (device) depends on the ip and subnet mask => network ip.

socket

Sockets and the socket API are used to send messages across a network. A socket is the software component to enable the communication between processes working on two physically separate machines. From an application point of view, it is a particular object on which to read and write the data to be transmitted or received.

a socket is the 'standard interface' to connect common 
electronic devices to the home electric network

    SOCKET         PLUG
     _____        _______
____|     |>>>>  | _ | _ |
____|     |      ||_|||_||
    |_____|>>>>  |___|___|

Berkeley sockets API (standard socket functions):

* set up the listening socket: listens for connections from clients

socket()
bind()
listen()
accept() // server accepts client connection
connect() // client establishes connection \

* exchanging data

send()
recv()

* close respective sockets

close()

tcp-socket-flow

The three-way handshake is important since it ensures that each side of the connection is reachable in the network, in other words that the client can reach the server and vice-versa. It may be that only one host, client or server, can reach the other.

network's People

Contributors

rpalloni avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.