GNU/Linux >> Linux Esercitazione >  >> Linux

'inet_pton':identificatore non trovato

In Windows XP (e versioni successive) puoi utilizzare queste funzioni:

#include <stdlib.h>
#include <string.h>
#include <stdio.h>    

#include <winsock2.h>
#include <ws2tcpip.h>


int inet_pton(int af, const char *src, void *dst)
{
  struct sockaddr_storage ss;
  int size = sizeof(ss);
  char src_copy[INET6_ADDRSTRLEN+1];

  ZeroMemory(&ss, sizeof(ss));
  /* stupid non-const API */
  strncpy (src_copy, src, INET6_ADDRSTRLEN+1);
  src_copy[INET6_ADDRSTRLEN] = 0;

  if (WSAStringToAddress(src_copy, af, NULL, (struct sockaddr *)&ss, &size) == 0) {
    switch(af) {
      case AF_INET:
    *(struct in_addr *)dst = ((struct sockaddr_in *)&ss)->sin_addr;
    return 1;
      case AF_INET6:
    *(struct in6_addr *)dst = ((struct sockaddr_in6 *)&ss)->sin6_addr;
    return 1;
    }
  }
  return 0;
}

const char *inet_ntop(int af, const void *src, char *dst, socklen_t size)
{
  struct sockaddr_storage ss;
  unsigned long s = size;

  ZeroMemory(&ss, sizeof(ss));
  ss.ss_family = af;

  switch(af) {
    case AF_INET:
      ((struct sockaddr_in *)&ss)->sin_addr = *(struct in_addr *)src;
      break;
    case AF_INET6:
      ((struct sockaddr_in6 *)&ss)->sin6_addr = *(struct in6_addr *)src;
      break;
    default:
      return NULL;
  }
  /* cannot direclty use &size because of strict aliasing rules */
  return (WSAAddressToString((struct sockaddr *)&ss, sizeof(ss), NULL, dst, &s) == 0)?
          dst : NULL;
}

Collegamento con la libreria ws2_32.


la funzione

int inet_pton(int af, const char *src, void *dst);

è dichiarato nel file di intestazione:

#include <arpa/inet.h>

se questo è Windows (Vista o successivo) c'è Winsock analogo a questa versione ANSI:

INT WSAAPI InetPton(
  _In_   INT  Family,
  _In_   PCTSTR pszAddrString,
  _Out_  PVOID pAddrBuf
);

prova #include <Ws2tcpip.h> aggiungi Ws2_32.lib


Gli utenti Windows possono anche trovare la risposta qui:

https://docs.microsoft.com/en-us/windows/desktop/api/ws2tcpip/nf-ws2tcpip-inetptonw

Il InetPton La funzione converte un indirizzo di rete Internet IPv4 o IPv6 nella sua forma di presentazione testuale standard nella sua forma binaria numerica. La versione ANSI di questa funzione è inet_pton .

Il InetPton la funzione è supportata su Windows Vista e versioni successive.

Quando UNICODE o _UNICODE non è definito, InetPton è definito a InetPtonA , la versione ANSI di questa funzione. La versione ANSI di questa funzione è sempre definita come inet_pton .

Header      ws2tcpip.h
Library     Ws2_32.lib
DLL         Ws2_32.dll

Devi usare il ws2tcpip.h header e aggiungi Ws2_32.lib al tuo linker.


Nel mio caso la funzione non è stata trovata, perché c'era un "#define WINVER 0x0502" da qualche parte in un file di intestazione.

Sui sistemi Windows la versione 0x600 (=Vista) è la minima richiesta per questa funzione.


Linux
  1. Non trovato

  2. ifrename:comando non trovato

  3. netstat:comando non trovato

  4. kubectl:comando non trovato

  5. tvservice:comando non trovato

aws-shell:comando non trovato

w:comando non trovato

df:comando non trovato

du:comando non trovato

rm:comando non trovato

mv:comando non trovato