fune/docs/nspr/reference/pr_convertipv4addrtoipv6.rst

32 lines
596 B
ReStructuredText
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

PR_ConvertIPv4AddrToIPv6
========================
Converts an IPv4 address into an (IPv4-mapped) IPv6 address.
.. _Syntax:
Syntax
~~~~~~
.. code:: eval
#include <prnetdb.h>
void PR_ConvertIPv4AddrToIPv6(
  PRUint32 v4addr,
  PRIPv6Addr *v6addr
);
.. _Parameters:
Parameters
~~~~~~~~~~
The function has the following parameters:
``v4addr``
The IPv4 address to convert into an IPv4-mapped IPv6 address. This
must be specified in network byte order.
``v6addr``
A pointer to a buffer, allocated by the caller, that is filled in
with the IPv6 address on return.