meta données pour cette page
  •  

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
communication_par_wifi_entre_capteurs_et_programmes [2021/10/15 10:51] Alexandre Castonguaycommunication_par_wifi_entre_capteurs_et_programmes [2021/10/16 01:37] (Version actuelle) Alexandre Castonguay
Ligne 1: Ligne 1:
 == Définitions ==   == Définitions ==  
  
-**Wi-Fi** :  Peut-être "Wireless Fidelity " Le Wi-Fi, aussi orthographié wifi, est un ensemble de protocoles de communication sans fil régis par les normes du groupe IEEE 802.11. Un réseau Wi-Fi permet de relier par ondes radio plusieurs appareils informatiques au sein d'un réseau informatique afin de permettre la transmission de données entre eux.+**Wi-Fi** : "Wireless Fidelity " Le Wi-Fi, aussi orthographié wifi, est un ensemble de protocoles de communication sans fil régis par les normes du groupe IEEE 802.11. Un réseau Wi-Fi permet de relier par ondes radio plusieurs appareils informatiques au sein d'un réseau informatique afin de permettre la transmission de données entre eux.
  
 **Internet Protocol** : The network layer communications protocol in the Internet protocol suite for relaying datagrams across network boundaries. Its routing function enables internetworking, and essentially establishes the Internet. **Internet Protocol** : The network layer communications protocol in the Internet protocol suite for relaying datagrams across network boundaries. Its routing function enables internetworking, and essentially establishes the Internet.
Ligne 36: Ligne 36:
  
 An endpoint is a combination of an **IP address** and a **port** number. Every TCP connection can be uniquely identified by its two endpoints. That way you can have multiple connections between your host and the server. An endpoint is a combination of an **IP address** and a **port** number. Every TCP connection can be uniquely identified by its two endpoints. That way you can have multiple connections between your host and the server.
 +
 +**Stream Sockets** − Delivery in a networked environment is guaranteed. If you send through the stream socket three items "A, B, C", they will arrive in the same order − "A, B, C". These sockets use TCP (Transmission Control Protocol) for data transmission. If delivery is impossible, the sender receives an error indicator. Data records do not have any boundaries.
 +
 +**Datagram Sockets** − Delivery in a networked environment is not guaranteed. They're connectionless because you don't need to have an open connection as in Stream Sockets − you build a packet with the destination information and send it out. They use UDP (User Datagram Protocol).
 +
 +**Websockets** : Websocket has it’s own protocol ws:// and wss:// web socket protocol and web socket secure protocol. Since it is given as a proxy over HTTP it also uses port 80 and 443 as used by HTTP.
 +This web socket proxy is applied over the HTTP during the initial handshake between the client and the server.
  
 Sources : http://www.dicodunet.com/definitions/reseaux/port.htm, Wikipedia Sources : http://www.dicodunet.com/definitions/reseaux/port.htm, Wikipedia