Differences From Artifact [f28f7b74d9]:
- File
src/exceptions/OFBindDDPSocketFailedException.m
— part of check-in
[9c2f20e736]
at
2022-11-03 00:14:27
on branch trunk
— OFDDPSocket: Don't include the type with the data
This seems to be an oddity limited to OSes that have implemented DDP
exclusively for netatalk, while macOS and Windows don't include it with
the data.While on macOS it's possible to achieve the previous behavior via some
hacks, this is impossible on Windows, so the proper approach is to
handle it like everybody else: Specify the protocol type when binding
and only handle packets of the correct protocol type. (user: js, size: 2063) [annotate] [blame] [check-ins using] [more...]
To Artifact [10cafd22cd]:
- File src/exceptions/OFBindDDPSocketFailedException.m — part of check-in [15e5bfc523] at 2022-11-06 21:32:53 on branch trunk — OFBindDDPSocketFailedException: Fix typo (user: js, size: 2064) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
70 71 72 73 74 75 76 | return self; } - (OFString *)description { return [OFString stringWithFormat: @"Binding to port %" @PRIx8 @" of node %" @PRIx8 @" on network " | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 | return self; } - (OFString *)description { return [OFString stringWithFormat: @"Binding to port %" @PRIx8 @" of node %" @PRIx8 @" on network " @"%" PRIx16 @" with protocol type %" @PRIx8 @" failed in socket of " @"type %@: %@", _port, _node, _network, _protocolType, [_socket class], OFStrError(_errNo)]; } @end |