Overview
| Comment: | Fix overlooked OFSocketAddress(Set)Port |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
64fc4f634438cfe268afe0bb9580c092 |
| User & Date: | js on 2022-10-22 18:51:16 |
| Other Links: | manifest | tags |
Context
|
2022-10-22
| ||
| 21:58 | Add support for AppleTalk DDP sockets (check-in: b62cca0487 user: js tags: trunk) | |
| 18:51 | Fix overlooked OFSocketAddress(Set)Port (check-in: 64fc4f6344 user: js tags: trunk) | |
| 18:41 | OFSocket: Don't combine port for IP and IPX (check-in: a54730b88f user: js tags: trunk) | |
Changes
Modified src/OFIPXSocket.h from [9798b4504d] to [8dc615311a].
| ︙ | |||
32 33 34 35 36 37 38 | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | - + | * * @brief A class which provides methods to create and use IPX sockets. * * Addresses are of type @ref OFSocketAddress. You can use * @ref OFSocketAddressMakeIPX to create an address or * @ref OFSocketAddressIPXNetwork to get the IPX network, * @ref OFSocketAddressIPXNode to get the IPX node and |
| ︙ |
Modified src/OFTCPSocket.m from [74ced9f7d1] to [246d2d6fc1].
| ︙ | |||
353 354 355 356 357 358 359 | 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 | - + |
for (;;) {
uint16_t rnd = 0;
int ret;
while (rnd < 1024)
rnd = (uint16_t)rand();
|
| ︙ |
Modified src/OFUDPSocket.h from [c4641067b3] to [9190ffdfc0].
| ︙ | |||
31 32 33 34 35 36 37 | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | - + | * @class OFUDPSocket OFUDPSocket.h ObjFW/OFUDPSocket.h * * @brief A class which provides methods to create and use UDP sockets. * * Addresses are of type @ref OFSocketAddress. You can use the current thread's * @ref OFDNSResolver to create an address for a host / port pair, * @ref OFSocketAddressString to get the IP address string for an address and |
| ︙ |
Modified src/OFUDPSocket.m from [f8c53776df] to [67c55bc52f].
| ︙ | |||
88 89 90 91 92 93 94 | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | - + |
for (;;) {
uint16_t rnd = 0;
int ret;
while (rnd < 1024)
rnd = (uint16_t)rand();
|
| ︙ |