ObjFW  History of src/exceptions/OFSetOptionFailedException.m of f2d9ec1868237972

History of the file that is called src/exceptions/OFSetOptionFailedException.m at check-in f2d9ec1868237972

2024-04-03
02:16
[4fb20ff987] part of check-in [7413a728a7] Change license to LGPLv3 only (check-in: [7413a728a7] user: js, branch: trunk, size: 1668) [annotate] [blame] [check-ins using] [diff]
2024-01-02
17:17
[22a35c4efd] part of check-in [26ddd2e4e4] Update copyright (check-in: [26ddd2e4e4] user: js, branch: trunk, size: 1460) [annotate] [blame] [check-ins using] [diff]
2023-04-15
17:30
[7495460b21] part of check-in [ccb53db0d8] OFDDPSocket: Add support for configuring AppleTalk (check-in: [ccb53db0d8] user: js, branch: trunk, size: 1460) [annotate] [blame] [check-ins using] [diff]
2023-01-06
09:04
[e29393f4c6] part of check-in [8939cbdb52] Update copyright (check-in: [8939cbdb52] user: js, branch: trunk, size: 1333) [annotate] [blame] [check-ins using] [diff]
2022-02-12
07:46
[8f19f7dfbc] part of check-in [1a86b8175b] Update copyright (check-in: [1a86b8175b] user: js, branch: trunk, size: 1333) [annotate] [blame] [check-ins using] [diff]
2021-04-18
22:56
[80d83b74a4] part of check-in [e73c65a849] Rename all symbols marked extern (check-in: [e73c65a849] user: js, branch: new-naming-convention, size: 1333) [annotate] [blame] [check-ins using] [diff]
2021-03-07
20:25
[8e6ba356a0] part of check-in [1b82d3bf4f] *.m: Fold methods into one line where it fits (check-in: [1b82d3bf4f] user: js, branch: trunk, size: 1334) [annotate] [blame] [check-ins using] [diff]
2021-01-02
22:04
[463fe4cf45] part of check-in [374e1a1bfa] Update copyright (check-in: [374e1a1bfa] user: js, branch: trunk, size: 1358) [annotate] [blame] [check-ins using] [diff]
2020-01-02
01:51
[1fbb6fdc4f] part of check-in [c7f0229795] Update copyright (check-in: [c7f0229795] user: js, branch: trunk, size: 1447) [annotate] [blame] [check-ins using] [diff]
2019-01-03
19:13
[768da478a5] part of check-in [0509d7a844] Update copyright (check-in: [0509d7a844] user: js, branch: trunk, size: 1444) [annotate] [blame] [check-ins using] [diff]
2018-08-04
16:23
[bc527db97a] part of check-in [7de9d67be9] Support for non-blocking UDP sockets (check-in: [7de9d67be9] user: js, branch: trunk, size: 1438) [annotate] [blame] [check-ins using] [diff]
2018-01-03
19:49
[0968265285] part of check-in [7e5c81e186] Update copyright notice (check-in: [7e5c81e186] user: js, branch: trunk, size: 1474) [annotate] [blame] [check-ins using] [diff]
2017-10-17
00:33
[f6f85887fb] part of check-in [2f4e0df8be] Do not use implicit method return types

Instead, explicitly declare them, as OF_ASSUME_NONNULL_{BEGIN,END} does
not apply to implicit return types. This means that after this commit,
all init methods have a nonnull return type, as they should have. (check-in: [2f4e0df8be] user: js, branch: trunk, size: 1451) [annotate] [blame] [check-ins using] [diff]

2017-05-13
16:56
[d872fab5a7] part of check-in [4df6ab6bca] Fix compilation with GCC (check-in: [4df6ab6bca] user: js, branch: trunk, size: 1423) [annotate] [blame] [check-ins using] [diff]
2017-05-07
20:10
[50bd99831b] part of check-in [4af49a13c3] Small code style change

Casts are now written like types in variable declarations. (check-in: [4af49a13c3] user: js, branch: trunk, size: 1366) [annotate] [blame] [check-ins using] [diff]

2017-01-09
17:36
[454f1fd9ab] part of check-in [44f45c2e35] Update copyright

Forgot to add 2017, even though I already did quite some changes in
2017. (check-in: [44f45c2e35] user: js, branch: trunk, size: 1363) [annotate] [blame] [check-ins using] [diff]

2016-01-03
00:43
[51912e6e97] part of check-in [cec0f072f8] Update copyright

While at it, also update the mail address. (check-in: [cec0f072f8] user: js, branch: 0.8, size: 1395) [annotate] [blame] [check-ins using] [diff]

00:41
[ece9bc6dd8] part of check-in [2a27cf3000] Update copyright

While at it, also update the mail address. (check-in: [2a27cf3000] user: js, branch: trunk, size: 1357) [annotate] [blame] [check-ins using] [diff]

2015-11-29
11:43
[04a49bdbbe] part of check-in [48980f2297] Make properties a requirement and clean up code

This increases the required GCC version from 4.0 to 4.6 (exception:
Apple GCC, which already supports this with >= 4.0 starting with OS X
10.5). Since even GCC 4.6 is really old by now, there is no point in
still supporting something even older and making the code ugly because
of that. While some hardware and OS support was dropped from GCC 4.6
compared to GCC 4.0, there is nothing in there that would be an
interesting target with the exception of BeOS maybe - but a port to BeOS
can also be achieved using the Haiku support. The other dropped OSes are
mostly old versions of OSes while newer ones are still being supported
(and those newer versions of those OSes still support the same
hardware). (check-in: [48980f2297] user: js, branch: trunk, size: 1353) [annotate] [blame] [check-ins using] [diff]

2015-02-16
08:39
[3c40ebe6aa] part of check-in [62e2de30b9] Explicitly pass errno to exceptions

The old behaviour where the exception would access errno directly on
creation of the exception was very fragile. The two main problems with
it were that sometimes it would pick up an errno even though none had
been set and in other cases that when the exception was created errno
had already been overridden.

This also greatly increases errno handling on Win32, especially in
conjunction with sockets. It can still be improved further, though. (check-in: [62e2de30b9] user: js, branch: trunk, size: 1391) [annotate] [blame] [check-ins using] [diff]

2015-01-03
20:57
[760365c630] part of check-in [cfd374b906] Update copyright (check-in: [cfd374b906] user: js, branch: trunk, size: 1263) [annotate] [blame] [check-ins using] [diff]
2014-06-21
21:43
[38ffd1bb32] part of check-in [13ee56edf3] Move all macros from OFObject.h to macros.h

This means that OFObject.h imports macros.h now, making it unnecessary
to manually import macros.h in almost every file. And while at it, also
import autorelease.h in OFObject.h, so that this doesn't need to be
manually imported in almost every file as well. (check-in: [13ee56edf3] user: js, branch: trunk, size: 1257) [annotate] [blame] [check-ins using] [diff]

2014-01-04
00:24
[2cc951a582] part of check-in [3b97fc3cd9] Update copyright. (check-in: [3b97fc3cd9] user: js, branch: trunk, size: 1276) [annotate] [blame] [check-ins using] [diff]
2013-11-23
01:12
[815b466283] part of check-in [35dafd5c57] Add OF_INVALID_INIT_METHOD. (check-in: [35dafd5c57] user: js, branch: trunk, size: 1270) [annotate] [blame] [check-ins using] [diff]
2013-11-20
22:06
[f58b958525] part of check-in [85e8ccc3a5] Make exception properties atomic. (check-in: [85e8ccc3a5] user: js, branch: trunk, size: 1360) [annotate] [blame] [check-ins using] [diff]
2013-06-22
12:12
[57d4b54c8c] part of check-in [3d16a30f41] Rework exceptions.

This mostly removes the argument for the class in which the exception
occurred. As backtraces were recently added for all platforms, the
passed class does not give any extra information on where the exception
occurred anymore.

This also removes a few other arguments which were not too helpful. In
the past, the idea was to pass as many arguments as possible so that it
is easier to find the origin of the exception. However, as backtraces
are a much better way to find the origin, those are not useful anymore
and just make the exception more cumbersome to use. The rule is now to
only pass arguments that might help in recovering from the exception or
provide information that is otherwise not easily accessible. (check-in: [3d16a30f41] user: js, branch: trunk, size: 1361) [annotate] [blame] [check-ins using] [diff]

2013-03-04
17:20
[5401f8aab0] part of check-in [c5ef582958] Replace BOOL with bool.

The only places where BOOL is left are those where they are required by
the ABI. (check-in: [c5ef582958] user: js, branch: trunk, size: 1448) [annotate] [blame] [check-ins using] [diff]

2013-02-13
23:10
[ba006ade87] part of check-in [d9ddc4d06e] Don't cache the description of exceptions.

This was pretty pointless, as it's usually only used once. (check-in: [d9ddc4d06e] user: js, branch: trunk, size: 1445) [annotate] [blame] [check-ins using] [diff]

2013-02-12
18:22
[440af04fa4] part of check-in [e40729d406] Prefix all ivars with an underscore. (check-in: [e40729d406] user: js, branch: trunk, size: 1532) [annotate] [blame] [check-ins using] [diff]
2013-02-05
22:24
[e3ec9f7433] part of check-in [737a82e1a4] Move abort() to make old GCCs happy. (check-in: [737a82e1a4] user: js, branch: trunk, size: 1531) [annotate] [blame] [check-ins using] [diff]
2013-01-09
22:24
[274bfcf724] part of check-in [813c00ccf0] Update copyright. (check-in: [813c00ccf0] user: js, branch: trunk, size: 1531) [annotate] [blame] [check-ins using] [diff]
2012-12-22
15:37
[58cd1e1798] part of check-in [917ce5754c] Add -[doesNotRecognizeSelector:]. (check-in: [917ce5754c] user: js, branch: trunk, size: 1525) [annotate] [blame] [check-ins using] [diff]
2012-10-09
15:07
[df261401f3] part of check-in [fb515e8e24] Make use of instancetype. (check-in: [fb515e8e24] user: js, branch: trunk, size: 1557) [annotate] [blame] [check-ins using] [diff]
2012-10-03
15:41
[c014ab807a] part of check-in [7239333455] Move definition of restricted to OFObject.h. (check-in: [7239333455] user: js, branch: trunk, size: 1543) [annotate] [blame] [check-ins using] [diff]
2012-10-02
11:00
[f34ccd222c] part of check-in [c7adbcf399] Clean up properties in exceptions. (check-in: [c7adbcf399] user: js, branch: trunk, size: 1523) [annotate] [blame] [check-ins using] [diff]
2012-07-12
01:28
[aa24331688] part of check-in [8892ae9fcc] Don't access isa directly. (check-in: [8892ae9fcc] user: js, branch: trunk, size: 1516) [annotate] [blame] [check-ins using] [diff]
2012-01-05
00:56
[7a4edc2cf1] part of check-in [ce70e17b38] Update copyright. (check-in: [ce70e17b38] user: js, branch: trunk, size: 1507) [annotate] [blame] [check-ins using] [diff]
2011-09-22
23:25
[e9c6ba1290] part of check-in [e1e7ffa903] Exceptions are now autoreleased.

This is safe as an "exception loop" can't happen, since if allocating
an exception fails, it throws an OFAllocFailedException which is
preallocated and can always be thrown.

So, the worst case would be that an autorelease of an exception fails,
triggering an OFOutOfMemoryException for which there is no memory,
resulting in an OFAllocFailedException to be thrown. (check-in: [e1e7ffa903] user: js, branch: trunk, size: 1501) [annotate] [blame] [check-ins using] [diff]

2011-09-11
00:03
[8350b08e96] part of check-in [74eeea199c] Make use of the fact that -[retain] and -[release] must not throw. (check-in: [74eeea199c] user: js, branch: trunk, size: 1469) [annotate] [blame] [check-ins using] [diff]
2011-06-06
15:53
[34a2e0a98f] part of check-in [df329a38cd] Add missing imports to make gcc from trunk happy. (check-in: [df329a38cd] user: js, branch: trunk, size: 1530) [annotate] [blame] [check-ins using] [diff]
2011-03-24
21:17
[dcdd902585] part of check-in [7ced2e7b6a] Pass the stream for stream exceptions. (check-in: [7ced2e7b6a] user: js, branch: trunk, size: 1509) [annotate] [blame] [check-ins using] [diff]
16:09
Added: [7f4c316959] part of check-in [e1eea29286] Split OFExceptions.{h,m} into one file per exception. (check-in: [e1eea29286] user: js, branch: trunk, size: 882) [annotate] [blame] [check-ins using]