Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
1answer
2k views

ntohs() and ntohl() equivalent?

Are there net to host conversion functions in C#? Googling and not finding much. :P
10
votes
3answers
1k views

Is there any “standard” htonl-like function for 64 bits integers in C++?

I'm working on an implementation of the memcache protocol which, at some points, uses 64 bits integer values. These values must be stored in "network byte order". I wish there was some uint64_t ...
4
votes
3answers
319 views

host to network double?

I'd like to send some double precision floating point numbers over the network. (standard C, standard sockets) There is no htond or ntohd to convert the data to and from network byte order. What ...
1
vote
2answers
286 views

How to set sockaddr_in6::sin6_addr byte order to network byte order?

I developing a network application and using socket APIs. I want to set sin6_addr byte order of sockaddr_in6 structure. For 16 bits or 32 bits variables, it is simple: Using htons or htonl: // IPv4 ...
1
vote
3answers
1k views

c++ server htons to java ntohs client conversion

I am creating a small TFTP client server app where server is developed using c++ and client using java. Here i am sending "block count" value using htons conversion. But i am not able to convert ...
1
vote
3answers
1k views

Confusion in htons- little endian/ big endian

When I send a integer variable from one process to other through socket, and then printing the value at received end, the value is still the same without using ntohl/htonl, then where do I need to use ...