Reputation: 350
I was learning about simple socket programs and had come across these, I wanted to know what is the difference between htons and htonl, even ntohs and ntohl.
Upvotes: 4
Views: 6902
Reputation: 2706
htons host to network short
ntohs network to host short
htonl host to network long
ntohl network to host long
long is 32 bits. short is 16 bits.
Upvotes: 11