web-dev-qa-db-ja.com

文字列をIPアドレスに、またはその逆に変換する方法

文字列ipAddress(struct in_addr)をどのように変換できますか?そして、どのように署名されていない長いipAddressを入れるのですか?ありがとう

67
Safari

他の方法で必要な場合は、inet_ntop()inet_pton()を使用します。 inet_ntoa(), inet_aton()などは使用しないでください。これらは非推奨であり、ipv6をサポートしていません。

ここにニースがあります ガイド かなりの例があります。

// 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"
119
Milan

文字列をDWORDに変換し、このコードで戻すことができました。

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

私は古いMFCコードのメンテナンスプロジェクトで作業しているため、非推奨の関数呼び出しの変換は適用されません。

5
Zac

inet_ntoa()in_addrを文字列に変換します:

Inet_ntoa関数は、(Ipv4)インターネットネットワークアドレスを、インターネット標準のドット付き10進形式のASCII文字列に変換します。

inet_addr() は逆の仕事をします

Inet_addr関数は、IPv4のドット付き10進アドレスを含む文字列をIN_ADDR構造の適切なアドレスに変換します

PSこれは「in_addr to string」をグーグルで検索した最初の結果です!

3
CharlesB

質問を適切に理解したかどうかはわかりません。

とにかく、これを探していますか:

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;

出力:

192  168  1  54
3
Nawaz

文字列をin-addrに変換するには:

in_addr maskAddr;
inet_aton(netMaskStr, &maskAddr);

In_addrを文字列に変換するには:

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

次の例は、文字列からIPへ、またはその逆への変換方法を示しています。

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); 
1
William Cuervo

16進IPアドレスから文字列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;
}

出力:10.164.0.1

0
Wang Aoyu

uint32_tネイティブエンディアンを文字列に、ストリングをネイティブエンディアンuint32_tに変換する、使いやすいスレッドセーフなC++関数を次に示します。

#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;
}

執筆時点での公正な警告はテストされていません。しかし、これらの関数は、このスレッドに来たときに探していたものです。

0
hanshenrik

3番目のinet_ptonパラメーターは、in_addr構造体へのポインターです。 inet_pton呼び出しが成功すると、in_addr構造体にアドレス情報が入力されます。構造体のS_addrフィールドには、ネットワークバイト順(逆順)のIPアドレスが含まれています。

0