TCP / IP Protocol on Linux and Windows

-3

Can the structure of the TCP / IP protocol vary from Windows to Linux or even from language to language? the knowledge gained on TCP / IP in the C ++ language can also be taken into account in Python?

Hugs

    
asked by anonymous 05.12.2018 / 09:02

1 answer

2

Much of the communication protocols used on the Internet, including the TCP / IP suite, are defined by documents known as Request For Comments, the abbreviated name for RFC Wikipedia . Thus, the definition of protocols does not depend on the operating system or the language used.

The implementation of the protocols may have minor differences between operating systems. These differences, however, do not generally interfere with the interoperability between different operating systems. Proof of this is the internet, where different systems communicate seamlessly using TCP / IP protocols.

    
05.12.2018 / 11:10