Differences From Artifact [f684cec31b]:
- File
src/socket.h
— part of check-in
[2ff4218405]
at
2020-04-26 10:56:11
on branch trunk
— Replace of_socket_address_ipx_get()
Instead, provide getters and setters for the various address parts. (user: js, size: 8156) [annotate] [blame] [check-ins using]
To Artifact [ada6e256da]:
- File src/socket.h — part of check-in [6a6f7fb146] at 2020-05-02 15:25:54 on branch trunk — OFSPXSocket: Make async connect work (user: js, size: 8161) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
187 188 189 190 191 192 193 |
*/
extern of_socket_address_t of_socket_address_parse_ipv6(
OFString *IP, uint16_t port);
/*!
* @brief Creates an IPX address for the specified network, node and port.
*
| < > | | > | 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
*/
extern of_socket_address_t of_socket_address_parse_ipv6(
OFString *IP, uint16_t port);
/*!
* @brief Creates an IPX address for the specified network, node and port.
*
* @param node The node in the IPX network
* @param network The IPX network
* @param port The IPX port (sometimes called socket number) on the node
*/
extern of_socket_address_t of_socket_address_ipx(
const unsigned char node[_Nonnull IPX_NODE_LEN], uint32_t network,
uint16_t port);
/*!
* @brief Compares two of_socket_address_t for equality.
*
* @param address1 The address to compare with the second address
* @param address2 The second address
* @return Whether the two addresses are equal
|
| ︙ | ︙ |