web-dev-qa-db-fra.com

Comment convertir une chaîne en adresse IP et vice versa

comment puis-je convertir une chaîne ipAddress (struct in_addr) et vice-versa?

59
Safari

Utilisez inet_ntop() et inet_pton() si vous en avez besoin autrement. N'utilisez pas inet_ntoa(), inet_aton() et similaire car ils sont obsolètes et ne supportent pas ipv6.

Voici un Nice guide avec quelques exemples.

// IPv4 demo of inet_ntop() and inet_pton()

struct sockaddr_in sa;
char str[INET_ADDRSTRLEN];

// store this IP address in sa:
inet_pton(AF_INET, "192.0.2.33", &(sa.sin_addr));

// now get it back and print it
inet_ntop(AF_INET, &(sa.sin_addr), str, INET_ADDRSTRLEN);

printf("%s\n", str); // prints "192.0.2.33"
111
Milan

Je ne suis pas sûr d'avoir bien compris la question.

Quoi qu'il en soit, cherchez-vous ceci:

std::string ip ="192.168.1.54";
std::stringstream s(ip);
int a,b,c,d; //to store the 4 ints
char ch; //to temporarily store the '.'
s >> a >> ch >> b >> ch >> c >> ch >> d;
std::cout << a << "  " << b << "  " << c << "  "<< d;

Sortie:

192  168  1  54
4
Nawaz

J'ai pu convertir une chaîne en DWORD et revenir avec ce code:

char strAddr[] = "127.0.0.1"
DWORD ip = inet_addr(strAddr); // ip contains 16777343 [0x0100007f in hex]

struct in_addr paddr;
paddr.S_un.S_addr = ip;

char *strAdd2 = inet_ntoa(paddr); // strAdd2 contains the same string as strAdd

Je travaille dans un projet de maintenance d'ancien code MFC, la conversion d'appels de fonctions obsolètes n'est donc pas applicable.

4
Zac

inet_ntoa() convertit un in_addr en chaîne:

La fonction inet_ntoa convertit un (Ipv4) Adresse réseau Internet en une chaîne ASCII en standard Internet format décimal en pointillé.

inet_addr() effectue le travail inverse

La fonction inet_addr convertit un chaîne contenant un IPv4 adresse décimale en pointillé dans une bonne adresse pour la structure IN_ADDR

PS c'est le premier résultat googler "in_addr to string"!

3
CharlesB

Pour convertir une chaîne en in-addr:

in_addr maskAddr;
inet_aton(netMaskStr, &maskAddr);

Pour convertir in_addr en chaîne:

char saddr[INET_ADDRSTRLEN];
inet_ntop(AF_INET, &inaddr, saddr, INET_ADDRSTRLEN);
2
Krit

Adresse IP hexadécimale en chaîne IP

#include <iostream>
#include <sstream>
using namespace std;

int main()
{
    uint32_t ip = 0x0AA40001;
    string ip_str="";
    int temp = 0;
    for (int i = 0; i < 8; i++){
        if (i % 2 == 0)
        {
            temp += ip & 15;
            ip = ip >> 4;
        }
        else
        {
            stringstream ss;
            temp += (ip & 15) * 16;
            ip = ip >> 4;
            ss << temp;
            ip_str = ss.str()+"." + ip_str;
            temp = 0;
        }
    }
    ip_str.pop_back();
    cout << ip_str;
}

Sortie: 10.164.0.1

0
Wang Aoyu

voici des fonctions c ++ sûres pour les threads, faciles à utiliser, permettant de convertir uint32_t native-endian en chaîne, et chaîne en natif-endian uint32_t: 

#include <arpa/inet.h> // inet_ntop & inet_pton
#include <string.h> // strerror_r
#include <arpa/inet.h> // ntohl & htonl
using namespace std; // im lazy

string ipv4_int_to_string(uint32_t in, bool *const success = nullptr)
{
    string ret(INET_ADDRSTRLEN, '\0');
    in = htonl(in);
    const bool _success = (NULL != inet_ntop(AF_INET, &in, &ret[0], ret.size()));
    if (success)
    {
        *success = _success;
    }
    if (_success)
    {
        ret.pop_back(); // remove null-terminator required by inet_ntop
    }
    else if (!success)
    {
        char buf[200] = {0};
        strerror_r(errno, buf, sizeof(buf));
        throw std::runtime_error(string("error converting ipv4 int to string ") + to_string(errno) + string(": ") + string(buf));
    }
    return ret;
}
// return is native-endian
// when an error occurs: if success ptr is given, it's set to false, otherwise a std::runtime_error is thrown.
uint32_t ipv4_string_to_int(const string &in, bool *const success = nullptr)
{
    uint32_t ret;
    const bool _success = (1 == inet_pton(AF_INET, in.c_str(), &ret));
    ret = ntohl(ret);
    if (success)
    {
        *success = _success;
    }
    else if (!_success)
    {
        char buf[200] = {0};
        strerror_r(errno, buf, sizeof(buf));
        throw std::runtime_error(string("error converting ipv4 string to int ") + to_string(errno) + string(": ") + string(buf));
    }
    return ret;
}

avertissement juste, au moment de la rédaction, ils ne sont pas testés. mais ces fonctions sont exactement ce que je cherchais quand je suis arrivé à ce fil.

0
hanshenrik

Le troisième paramètre inet_pton est un pointeur sur une structure in_addr. Après un appel réussi à inet_pton, la structure in_addr sera remplie avec les informations d'adresse. Le champ S_addr de la structure contient l'adresse IP dans l'ordre des octets du réseau (ordre inverse).

0
Sourabh Bhardwaj

Cet exemple montre comment convertir une chaîne en ip et vice versa:

struct sockaddr_in sa;
char ip_saver[INET_ADDRSTRLEN];

// store this IP address in sa:
inet_pton(AF_INET, "192.0.1.10", &(sa.sin_addr));

// now get it back 
sprintf(ip_saver, "%s", sa.sin_addr));

// prints "192.0.2.10"
printf("%s\n", ip_saver); 
0
William Cuervo