Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
1k views

convert string to ipaddress

how can I convert a string ipAddress (struct in_addr) and vice versa? and how do I turn in unsigned long ipAddress? thanks
1
vote
1answer
234 views

what are addresses of type in_addr_t inet_ntoa etc

Ok before posting this question I have checked threads here in_addr_t to string my question is different. I understand that inet_ntoa function is of following type char * inet_ntoa (struct in_addr ...
0
votes
1answer
102 views

how do i get the Port from an in_addr value?

I am trying to extract the port from a given in_addr value in windows. So far I am able to get the IP address using inet_ntoa but not the port. Thanks.
0
votes
2answers
559 views

Using in_addr in C#

I'm trying to interact with a native DLL using P/Invoke, but it requires an in_addr struct parameter. I keep seeing many different kinds of definitions for it, but which is the best to use? Also, how ...