Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch 1.2 Excluding Merge-Ins
This is equivalent to a diff from c5f91347e7 to 6f7cdf414a
|
2025-03-11
| ||
| 01:10 | OFString: Fix parsing LLONG_MIN Leaf check-in: 6f7cdf414a user: js tags: 1.2 | |
| 00:05 | Document exceptions for -[OFString longLongValue] check-in: 337d1e54d0 user: js tags: 1.2 | |
|
2024-11-07
| ||
| 21:17 | Add support for MPTCP check-in: 49f5cd5ec5 user: js tags: trunk | |
| 21:07 | Merge trunk into 1.2 branch check-in: 10cce4f6ef user: js tags: 1.2 | |
|
2024-11-06
| ||
| 21:28 | objfw-compile: Remove handling of .bundle check-in: c5f91347e7 user: js tags: trunk | |
|
2024-11-05
| ||
| 23:48 | GitHub Actions: Add ObjC++ test on 32 bit Ubuntu check-in: 77b155c1da user: js tags: trunk | |
Deleted .github/workflows/macos-12.yml.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Changes to .github/workflows/msys2.yml.
1 2 3 4 5 6 7 8 |
name: msys2
on: [push, pull_request]
jobs:
tests:
runs-on: windows-latest
strategy:
matrix:
sys:
| < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
name: msys2
on: [push, pull_request]
jobs:
tests:
runs-on: windows-latest
strategy:
matrix:
sys:
- mingw64
- ucrt64
- clang64
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
update: true
msystem: ${{matrix.sys}}
|
| ︙ | ︙ | |||
32 33 34 35 36 37 38 |
run: make -j4
- name: make check
shell: msys2 {0}
run: make check
- name: make install
shell: msys2 {0}
run: make install
| > > > > > | 28 29 30 31 32 33 34 35 36 37 38 39 |
run: make -j4
- name: make check
shell: msys2 {0}
run: make check
- name: make install
shell: msys2 {0}
run: make install
- name: C++ test
shell: msys2 {0}
run: |
objfw-compile -o cxxtest .github/workflows/CXXTest.mm
./cxxtest.exe
|
Changes to .github/workflows/nintendo-ds.yml.
| ︙ | ︙ | |||
9 10 11 12 13 14 15 |
- uses: actions/checkout@v4
- name: autogen.sh
run: ./autogen.sh
- name: configure
run: |
docker run \
-e DEVKITPRO=/opt/devkitpro \
| | | > > > > > > > > | | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
- uses: actions/checkout@v4
- name: autogen.sh
run: ./autogen.sh
- name: configure
run: |
docker run \
-e DEVKITPRO=/opt/devkitpro \
-e PATH="/opt/devkitpro/devkitARM/bin:/opt/devkitpro/tools/bin:$PATH" \
-v "$PWD:/objfw" \
devkitpro/devkitarm \
sh -c 'cd /objfw && ./configure --host=arm-none-eabi --with-nds'
- name: make
run: |
docker run \
-e DEVKITPRO=/opt/devkitpro \
-e PATH="/opt/devkitpro/devkitARM/bin:/opt/devkitpro/tools/bin:$PATH" \
-v "$PWD:/objfw" \
devkitpro/devkitarm \
sh -c "cd /objfw && make -j$(nproc)"
- name: make tests.nds
run: |
docker run \
-e DEVKITPRO=/opt/devkitpro \
-e PATH="/opt/devkitpro/devkitARM/bin:/opt/devkitpro/tools/bin:$PATH" \
-v "$PWD:/objfw" \
devkitpro/devkitarm \
sh -c "cd /objfw/tests && make tests.nds"
- name: make install
run: |
docker run \
-e DEVKITPRO=/opt/devkitpro \
-e PATH="/opt/devkitpro/devkitARM/bin:/opt/devkitpro/tools/bin:$PATH" \
-v "$PWD:/objfw" \
devkitpro/devkitarm \
sh -c "cd /objfw && make install"
|
Changes to ChangeLog.
1 2 3 4 5 6 7 8 9 10 11 12 13 | Legend: * Changes of existing features or bugfixes + New features This file only contains the most significant changes. ObjFW 1.1.7 -> ObjFW 1.2, 2024-11-02 + Adds a new framework for game controllers called ObjFWHID. + Adds support for tagged pointer strings. + Strings are now allowed to contain `\0`, while preventing such strings from being passed to anything that expects a C string. * `\u0000` and `\x??` are now allowed in JSON. + Adds a new option `OFJSONRepresentationOptionSorted` to create sorted, | > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
Legend:
* Changes of existing features or bugfixes
+ New features
This file only contains the most significant changes.
ObjFW 1.2.3 -> ObjFW 1.2.4, 2025-02-20
* Fixes OFPlainConditionTimedWait(), which as a result fixes OFRunLoop
spinning in some situations.
* Fixes OFMutableUTF8Strings containing `\0`.
* Fixes OFHTTPServer using an IPv6 address as host.
ObjFW 1.2.2 -> ObjFW 1.2.3, 2024-12-15
* Fixes OFRunLoop not draining the autorelease pool after firing a timer.
* Adds -fno-constant-ns{number,array,dictionary}-literals to OBJCFLAGS, which
is required to have literals work with ObjFW with recent Xcode versions.
ObjFW 1.2.1 -> ObjFW 1.2.2, 2024-12-07
* Fixes OFTLSSocket not sending shutdown when using OpenSSL.
* Fixes OFTLSSocket initialization when using MbedTLS.
* Fixes imports in ObjFWTLS.h.
* OFINIFile now properly quotes ; and #.
* Ensures ofarc and ofhash link ObjFWTLS.
* Makes OFEmbeddedIRIHandler public, as it's required for objfw-embed.
* Fixes compiling on Haiku r1beta5.
* Adds compatibility with latest devkitARM.
ObjFW 1.2 -> ObjFW 1.2.1, 2024-11-09
* Fixes exceptions in ObjC++.
* Fixes compiling ObjC++ on Windows.
* Fixes compiling tests on Haiku.
* Properly hides private methods in ObjFWHID.
ObjFW 1.1.7 -> ObjFW 1.2, 2024-11-02
+ Adds a new framework for game controllers called ObjFWHID.
+ Adds support for tagged pointer strings.
+ Strings are now allowed to contain `\0`, while preventing such strings from
being passed to anything that expects a C string.
* `\u0000` and `\x??` are now allowed in JSON.
+ Adds a new option `OFJSONRepresentationOptionSorted` to create sorted,
|
| ︙ | ︙ |
Changes to configure.ac.
|
| | | < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | AC_INIT(ObjFW, 1.2.4, js@nil.im, objfw, https://objfw.nil.im/) AC_CONFIG_SRCDIR(src) AC_CONFIG_AUX_DIR(build-aux) AC_CONFIG_MACRO_DIR(build-aux/m4) AC_DEFINE(OBJFW_VERSION_MAJOR, 1, [The major version of ObjFW]) AC_DEFINE(OBJFW_VERSION_MINOR, 2, [The minor version of ObjFW]) AC_SUBST(BUNDLE_VERSION, 1.2.4) AC_SUBST(BUNDLE_SHORT_VERSION, 1.2) for i in configure.ac build-aux/m4/*; do AS_IF([test $i -nt configure], [ AC_MSG_ERROR([$i is newer than configure! Run ./autogen.sh!]) ]) done |
| ︙ | ︙ | |||
234 235 236 237 238 239 240 | AS_IF([test x"$DEVKITPRO" = x""], [ AC_MSG_ERROR([DEVKITPRO is not set! Please set DEVKITPRO.]) ]) flags="-march=armv5te -mtune=arm946e-s -mthumb -mthumb-interwork" OBJCFLAGS="$OBJCFLAGS $flags" OBJFW_OBJCFLAGS="$OBJFW_OBJCFLAGS $flags" | | > | > > | | | | | > > | 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
AS_IF([test x"$DEVKITPRO" = x""], [
AC_MSG_ERROR([DEVKITPRO is not set! Please set DEVKITPRO.])
])
flags="-march=armv5te -mtune=arm946e-s -mthumb -mthumb-interwork"
OBJCFLAGS="$OBJCFLAGS $flags"
OBJFW_OBJCFLAGS="$OBJFW_OBJCFLAGS $flags"
CPPFLAGS="$CPPFLAGS -DARM9 -D__NDS__ -I$DEVKITPRO/libnds/include"
CPPFLAGS="$CPPFLAGS -I$DEVKITPRO/calico/include"
OBJFW_CPPFLAGS="$OBJFW_CPPFLAGS -DARM9 -D__NDS__"
OBJFW_CPPFLAGS="$OBJFW_CPPFLAGS -I\$DEVKITPRO/libnds/include"
OBJFW_CPPFLAGS="$OBJFW_CPPFLAGS -I\$DEVKITPRO/calico/include"
ASFLAGS="$ASFLAGS -march=armv5te"
LDFLAGS="$LDFLAGS -specs=$DEVKITPRO/calico/share/ds9.specs"
OBJFW_LDFLAGS="$OBJFW_LDFLAGS -specs=\$DEVKITPRO/calico/share/ds9.specs"
LIBS="$LIBS -L$DEVKITPRO/libnds/lib -L$DEVKITPRO/calico/lib"
LIBS="$LIBS -lfilesystem -lfat -lnds9 -lcalico_ds9"
OBJFW_LIBS="$OBJFW_LIBS -L\$DEVKITPRO/libnds/lib"
OBJFW_LIBS="$OBJFW_LIBS -L\$DEVKITPRO/calico/lib"
OBJFW_LIBS="$OBJFW_LIBS -lfilesystem -lfat -lnds9 -lcalico_ds9"
enable_shared="no"
enable_threads="no" # TODO
enable_sockets="no" # TODO
check_pedantic="no"
AC_DEFINE(OF_NINTENDO_DS, 1, [Whether we are compiling for Nintendo DS])
AC_SUBST(USE_SRCS_NINTENDO_DS, '${SRCS_NINTENDO_DS}')
|
| ︙ | ︙ | |||
367 368 369 370 371 372 373 374 375 376 377 378 379 380 | AX_CHECK_COMPILER_FLAGS(-pipe, [OBJCFLAGS="$OBJCFLAGS -pipe"]) AX_CHECK_COMPILER_FLAGS(-fno-common, [OBJCFLAGS="$OBJCFLAGS -fno-common"]) AX_CHECK_COMPILER_FLAGS(-Xclang -fno-constant-cfstrings, [ flag="-Xclang -fno-constant-cfstrings" OBJCFLAGS="$OBJCFLAGS $flag" OBJFW_OBJCFLAGS="$OBJFW_OBJCFLAGS $flag" ]) AX_CHECK_COMPILER_FLAGS([-Wsign-compare -Werror], [OBJCFLAGS="$OBJCFLAGS -Wsign-compare"]) AS_IF([test x"$with_nds" != x"yes"], [ AX_CHECK_COMPILER_FLAGS([-Wshadow -Werror], [OBJCFLAGS="$OBJCFLAGS -Wshadow"]) | > > > > > > > > > > > > > > > | 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | AX_CHECK_COMPILER_FLAGS(-pipe, [OBJCFLAGS="$OBJCFLAGS -pipe"]) AX_CHECK_COMPILER_FLAGS(-fno-common, [OBJCFLAGS="$OBJCFLAGS -fno-common"]) AX_CHECK_COMPILER_FLAGS(-Xclang -fno-constant-cfstrings, [ flag="-Xclang -fno-constant-cfstrings" OBJCFLAGS="$OBJCFLAGS $flag" OBJFW_OBJCFLAGS="$OBJFW_OBJCFLAGS $flag" ]) AX_CHECK_COMPILER_FLAGS(-Xclang -fno-constant-nsnumber-literals, [ flag="-Xclang -fno-constant-nsnumber-literals" OBJCFLAGS="$OBJCFLAGS $flag" OBJFW_OBJCFLAGS="$OBJFW_OBJCFLAGS $flag" ]) AX_CHECK_COMPILER_FLAGS(-Xclang -fno-constant-nsarray-literals, [ flag="-Xclang -fno-constant-nsarray-literals" OBJCFLAGS="$OBJCFLAGS $flag" OBJFW_OBJCFLAGS="$OBJFW_OBJCFLAGS $flag" ]) AX_CHECK_COMPILER_FLAGS(-Xclang -fno-constant-nsdictionary-literals, [ flag="-Xclang -fno-constant-nsdictionary-literals" OBJCFLAGS="$OBJCFLAGS $flag" OBJFW_OBJCFLAGS="$OBJFW_OBJCFLAGS $flag" ]) AX_CHECK_COMPILER_FLAGS([-Wsign-compare -Werror], [OBJCFLAGS="$OBJCFLAGS -Wsign-compare"]) AS_IF([test x"$with_nds" != x"yes"], [ AX_CHECK_COMPILER_FLAGS([-Wshadow -Werror], [OBJCFLAGS="$OBJCFLAGS -Wshadow"]) |
| ︙ | ︙ | |||
623 624 625 626 627 628 629 630 631 632 633 634 635 636 | AS_IF([test x"$build_framework" = x"yes"], [ AC_SUBST(OBJFWRT_FRAMEWORK, "ObjFWRT.framework") AC_SUBST(RUNTIME_FRAMEWORK_LIBS, "-framework ObjFWRT") ]) AC_SUBST(RUNTIME_LIBS, "-lobjfwrt") AS_IF([test x"$enable_shared" = x"no"], [ AC_SUBST(LIBOBJFWRT_DEP, "../src/runtime/libobjfwrt.a") AC_SUBST(LIBOBJFWRT_DEP_LVL2, "../../src/runtime/libobjfwrt.a") ]) AS_IF([test x"$enable_seluid24" = x"yes"], [ | > | 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 |
AS_IF([test x"$build_framework" = x"yes"], [
AC_SUBST(OBJFWRT_FRAMEWORK, "ObjFWRT.framework")
AC_SUBST(RUNTIME_FRAMEWORK_LIBS, "-framework ObjFWRT")
])
AC_SUBST(RUNTIME_LIBS, "-lobjfwrt")
AC_SUBST(RUNTIME_STATIC_LIBS, '${libdir}/libobjfwrt.a')
AS_IF([test x"$enable_shared" = x"no"], [
AC_SUBST(LIBOBJFWRT_DEP, "../src/runtime/libobjfwrt.a")
AC_SUBST(LIBOBJFWRT_DEP_LVL2, "../../src/runtime/libobjfwrt.a")
])
AS_IF([test x"$enable_seluid24" = x"yes"], [
|
| ︙ | ︙ | |||
676 677 678 679 680 681 682 683 684 685 686 687 688 689 | ;; "Apple runtime") AC_DEFINE(OF_APPLE_RUNTIME, 1, [Whether we use the Apple ObjC runtime]) AC_CHECK_LIB(objc, objc_msgSend, [ AC_SUBST(RUNTIME_LIBS, "-lobjc") AC_SUBST(RUNTIME_FRAMEWORK_LIBS, "-lobjc") ], [ AC_MSG_ERROR([libobjc not found!]) ]) old_OBJCFLAGS="$OBJCFLAGS" OBJCFLAGS="$OBJCFLAGS -lobjc" | > | 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 | ;; "Apple runtime") AC_DEFINE(OF_APPLE_RUNTIME, 1, [Whether we use the Apple ObjC runtime]) AC_CHECK_LIB(objc, objc_msgSend, [ AC_SUBST(RUNTIME_LIBS, "-lobjc") AC_SUBST(RUNTIME_FRAMEWORK_LIBS, "-lobjc") AC_SUBST(RUNTIME_STATIC_LIBS, "-lobjc") ], [ AC_MSG_ERROR([libobjc not found!]) ]) old_OBJCFLAGS="$OBJCFLAGS" OBJCFLAGS="$OBJCFLAGS -lobjc" |
| ︙ | ︙ | |||
2117 2118 2119 2120 2121 2122 2123 | ]) AS_IF([test x"$GOBJC" = x"yes"], [ OBJCFLAGS="$OBJCFLAGS -Wwrite-strings -Wpointer-arith" AC_ARG_ENABLE(werror, AS_HELP_STRING([--disable-werror], [do not build with -Werror])) | | | 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 | ]) AS_IF([test x"$GOBJC" = x"yes"], [ OBJCFLAGS="$OBJCFLAGS -Wwrite-strings -Wpointer-arith" AC_ARG_ENABLE(werror, AS_HELP_STRING([--disable-werror], [do not build with -Werror])) AS_IF([test x"$enable_werror" = x"yes"], [ OBJCFLAGS="$OBJCFLAGS -Werror" ]) old_OBJCFLAGS="$OBJCFLAGS" OBJCFLAGS="$OBJCFLAGS -Werror" AC_MSG_CHECKING(whether we need -Wno-strict-aliasing due to GCC bugs) AC_COMPILE_IFELSE([ |
| ︙ | ︙ |
Changes to extra.mk.in.
1 2 3 4 5 | OBJFW_SHARED_LIB = @OBJFW_SHARED_LIB@ OBJFW_STATIC_LIB = @OBJFW_STATIC_LIB@ OBJFW_FRAMEWORK = @OBJFW_FRAMEWORK@ OBJFW_LIB_MAJOR = 1 OBJFW_LIB_MINOR = 2 | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
OBJFW_SHARED_LIB = @OBJFW_SHARED_LIB@
OBJFW_STATIC_LIB = @OBJFW_STATIC_LIB@
OBJFW_FRAMEWORK = @OBJFW_FRAMEWORK@
OBJFW_LIB_MAJOR = 1
OBJFW_LIB_MINOR = 2
OBJFW_LIB_PATCH = 4
OBJFW_LIB_MAJOR_MINOR = ${OBJFW_LIB_MAJOR}.${OBJFW_LIB_MINOR}
OBJFWRT_SHARED_LIB = @OBJFWRT_SHARED_LIB@
OBJFWRT_STATIC_LIB = @OBJFWRT_STATIC_LIB@
OBJFWRT_FRAMEWORK = @OBJFWRT_FRAMEWORK@
OBJFWRT_LIB_MAJOR = 1
OBJFWRT_LIB_MINOR = 2
OBJFWRT_LIB_PATCH = 1
OBJFWRT_LIB_MAJOR_MINOR = ${OBJFWRT_LIB_MAJOR}.${OBJFWRT_LIB_MINOR}
OBJFWBRIDGE_SHARED_LIB = @OBJFWBRIDGE_SHARED_LIB@
OBJFWBRIDGE_STATIC_LIB = @OBJFWBRIDGE_STATIC_LIB@
OBJFWBRIDGE_FRAMEWORK = @OBJFWBRIDGE_FRAMEWORK@
OBJFWBRIDGE_LIB_MAJOR = 1
OBJFWBRIDGE_LIB_MINOR = 0
OBJFWBRIDGE_LIB_PATCH = 0
OBJFWTLS_SHARED_LIB = @OBJFWTLS_SHARED_LIB@
OBJFWTLS_STATIC_LIB = @OBJFWTLS_STATIC_LIB@
OBJFWTLS_FRAMEWORK = @OBJFWTLS_FRAMEWORK@
OBJFWTLS_LIB_MAJOR = 1
OBJFWTLS_LIB_MINOR = 0
OBJFWTLS_LIB_PATCH = 3
OBJFWHID_SHARED_LIB = @OBJFWHID_SHARED_LIB@
OBJFWHID_STATIC_LIB = @OBJFWHID_STATIC_LIB@
OBJFWHID_FRAMEWORK = @OBJFWHID_FRAMEWORK@
OBJFWHID_LIB_MAJOR = 1
OBJFWHID_LIB_MINOR = 0
OBJFWHID_LIB_PATCH = 1
OBJFWHID_LIB_MAJOR_MINOR = ${OBJFWHID_LIB_MAJOR}.${OBJFWHID_LIB_MINOR}
BIN_PREFIX = @BIN_PREFIX@
BRIDGE = @BRIDGE@
CVINCLUDE_INLINE_H = @CVINCLUDE_INLINE_H@
ENCODINGS_A = @ENCODINGS_A@
ENCODINGS_LIB_A = @ENCODINGS_LIB_A@
|
| ︙ | ︙ | |||
82 83 84 85 86 87 88 89 90 91 92 93 94 95 | RUNTIME = @RUNTIME@ RUNTIME_ARC_TESTS_M = @RUNTIME_ARC_TESTS_M@ RUNTIME_ASSOCIATION_M = @RUNTIME_ASSOCIATION_M@ RUNTIME_AUTORELEASE_M = @RUNTIME_AUTORELEASE_M@ RUNTIME_FRAMEWORK_LIBS = @RUNTIME_FRAMEWORK_LIBS@ RUNTIME_INSTANCE_M = @RUNTIME_INSTANCE_M@ RUNTIME_LIBS = @RUNTIME_LIBS@ SUBPROCESS = @SUBPROCESS@ TESTPLUGIN = @TESTPLUGIN@ TESTPLUGIN_BUNDLE = @TESTPLUGIN_BUNDLE@ TESTPLUGIN_LIBS = @TESTPLUGIN_LIBS@ TESTS_LIBS = @TESTS_LIBS@ TESTS_STATIC_LIB = @TESTS_STATIC_LIB@ TLS = @TLS@ | > | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | RUNTIME = @RUNTIME@ RUNTIME_ARC_TESTS_M = @RUNTIME_ARC_TESTS_M@ RUNTIME_ASSOCIATION_M = @RUNTIME_ASSOCIATION_M@ RUNTIME_AUTORELEASE_M = @RUNTIME_AUTORELEASE_M@ RUNTIME_FRAMEWORK_LIBS = @RUNTIME_FRAMEWORK_LIBS@ RUNTIME_INSTANCE_M = @RUNTIME_INSTANCE_M@ RUNTIME_LIBS = @RUNTIME_LIBS@ RUNTIME_STATIC_LIBS = @RUNTIME_STATIC_LIBS@ SUBPROCESS = @SUBPROCESS@ TESTPLUGIN = @TESTPLUGIN@ TESTPLUGIN_BUNDLE = @TESTPLUGIN_BUNDLE@ TESTPLUGIN_LIBS = @TESTPLUGIN_LIBS@ TESTS_LIBS = @TESTS_LIBS@ TESTS_STATIC_LIB = @TESTS_STATIC_LIB@ TLS = @TLS@ |
| ︙ | ︙ |
Changes to generators/unicode/TableGenerator.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to generators/unicode/TableGenerator.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to generators/unicode/copyright.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
17 18 19 20 21 22 23 |
* <https://www.gnu.org/licenses/>.
*/
#import "OFString.h"
#define COPYRIGHT \
@"/*\n" \
| | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
* <https://www.gnu.org/licenses/>.
*/
#import "OFString.h"
#define COPYRIGHT \
@"/*\n" \
@" * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im>\n" \
@" *\n" \
@" * All rights reserved.\n" \
@" *\n" \
@" * This program is free software: you can redistribute it " \
@"and/or modify it\n" \
@" * under the terms of the GNU Lesser General Public License " \
@"version 3.0 only,\n" \
|
| ︙ | ︙ |
Changes to src/Makefile.
| ︙ | ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
OFConstantString.m \
OFCountedSet.m \
OFData.m \
OFData+CryptographicHashing.m \
OFData+MessagePackParsing.m \
OFDate.m \
OFDictionary.m \
OFEnumerator.m \
OFFileManager.m \
OFGZIPStream.m \
OFHMAC.m \
OFINICategory.m \
OFINIFile.m \
OFINISection.m \
| > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
OFConstantString.m \
OFCountedSet.m \
OFData.m \
OFData+CryptographicHashing.m \
OFData+MessagePackParsing.m \
OFDate.m \
OFDictionary.m \
OFEmbeddedIRIHandler.m \
OFEnumerator.m \
OFFileManager.m \
OFGZIPStream.m \
OFHMAC.m \
OFINICategory.m \
OFINIFile.m \
OFINISection.m \
|
| ︙ | ︙ | |||
212 213 214 215 216 217 218 | OFConcreteMutableData.m \ OFConcreteMutableDictionary.m \ OFConcreteMutableSet.m \ OFConcreteNumber.m \ OFConcreteSet.m \ OFConcreteSubarray.m \ OFConcreteValue.m \ | < | 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | OFConcreteMutableData.m \ OFConcreteMutableDictionary.m \ OFConcreteMutableSet.m \ OFConcreteNumber.m \ OFConcreteSet.m \ OFConcreteSubarray.m \ OFConcreteValue.m \ OFHuffmanTree.m \ OFINIFileSettings.m \ OFInvertedCharacterSet.m \ OFLHADecompressingStream.m \ OFMutableUTF8String.m \ OFRangeCharacterSet.m \ OFSandbox.m \ |
| ︙ | ︙ |
Changes to src/OFAAAADNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFAAAADNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFADNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFADNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFASPrintF.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFASPrintF.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFApplication.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | @class OFArray OF_GENERIC(ObjectType); @class OFDictionary OF_GENERIC(KeyType, ObjectType); @class OFMutableArray OF_GENERIC(ObjectType); @class OFMutableDictionary OF_GENERIC(KeyType, ObjectType); @class OFSandbox; @class OFString; /** * @brief A notification that will be sent when the application did finish * launching. */ extern const OFNotificationName OFApplicationDidFinishLaunchingNotification; /** * @brief A notification that will be sent when the application will terminate. */ extern const OFNotificationName OFApplicationWillTerminateNotification; /** * @brief Specify the class to be used as the application delegate. * * An instance of this class will be created and act as the application * delegate. * | > > > > > > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
@class OFArray OF_GENERIC(ObjectType);
@class OFDictionary OF_GENERIC(KeyType, ObjectType);
@class OFMutableArray OF_GENERIC(ObjectType);
@class OFMutableDictionary OF_GENERIC(KeyType, ObjectType);
@class OFSandbox;
@class OFString;
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief A notification that will be sent when the application did finish
* launching.
*/
extern const OFNotificationName OFApplicationDidFinishLaunchingNotification;
/**
* @brief A notification that will be sent when the application will terminate.
*/
extern const OFNotificationName OFApplicationWillTerminateNotification;
#ifdef __cplusplus
}
#endif
/**
* @brief Specify the class to be used as the application delegate.
*
* An instance of this class will be created and act as the application
* delegate.
*
|
| ︙ | ︙ |
Changes to src/OFApplication.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
497 498 499 500 501 502 503 |
_argv = argv;
encoding = [OFLocale encoding];
#ifndef OF_NINTENDO_DS
if (*argc > 0) {
#else
| > | | 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 |
_argv = argv;
encoding = [OFLocale encoding];
#ifndef OF_NINTENDO_DS
if (*argc > 0) {
#else
if (g_envNdsArgvHeader->magic == ENV_NDS_ARGV_MAGIC &&
g_envNdsArgvHeader->argc > 0) {
#endif
_programName = [[OFString alloc] initWithCString: (*argv)[0]
encoding: encoding];
arguments = [[OFMutableArray alloc] init];
_arguments = arguments;
for (int i = 1; i < *argc; i++)
|
| ︙ | ︙ |
Changes to src/OFArchiveEntry.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFArchiveIRIHandler.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFArchiveIRIHandler.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFArray+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFArray.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFArray.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFAsyncIPSocketConnector.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFAsyncIPSocketConnector.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFAtomic.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFBase64.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFBase64.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFBitSetCharacterSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFBitSetCharacterSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFBlock.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFBlock.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCNAMEDNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCNAMEDNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCRC16.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCRC16.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCRC32.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCRC32.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCharacterSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCharacterSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCollection.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFColor.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
28 29 30 31 32 33 34 | */ @interface OFColor: OFObject #ifdef OF_HAVE_CLASS_PROPERTIES @property (class, readonly, nonatomic) OFColor *black; @property (class, readonly, nonatomic) OFColor *silver; @property (class, readonly, nonatomic) OFColor *gray; @property (class, readonly, nonatomic) OFColor *grey | | | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
*/
@interface OFColor: OFObject
#ifdef OF_HAVE_CLASS_PROPERTIES
@property (class, readonly, nonatomic) OFColor *black;
@property (class, readonly, nonatomic) OFColor *silver;
@property (class, readonly, nonatomic) OFColor *gray;
@property (class, readonly, nonatomic) OFColor *grey
OF_DEPRECATED(ObjFW, 1, 1, "Use +[gray] instead");
@property (class, readonly, nonatomic) OFColor *white;
@property (class, readonly, nonatomic) OFColor *maroon;
@property (class, readonly, nonatomic) OFColor *red;
@property (class, readonly, nonatomic) OFColor *purple;
@property (class, readonly, nonatomic) OFColor *fuchsia;
@property (class, readonly, nonatomic) OFColor *green;
@property (class, readonly, nonatomic) OFColor *lime;
|
| ︙ | ︙ | |||
95 96 97 98 99 100 101 | * * @deprecated Use @ref gray instead. * * The RGBA value is (0.5, 0.5, 0.5, 1). * * @return The HTML color `gray` */ | | | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | * * @deprecated Use @ref gray instead. * * The RGBA value is (0.5, 0.5, 0.5, 1). * * @return The HTML color `gray` */ + (OFColor *)grey OF_DEPRECATED(ObjFW, 1, 1, "Use +[gray] instead"); /** * @brief Returns the HTML color `white`. * * The RGBA value is (1, 1, 1, 1). * * @return The HTML color `white` |
| ︙ | ︙ |
Changes to src/OFColor.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteArray.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteArray.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteColor.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteColor.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteCountedSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteCountedSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteData.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteData.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteDate.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteDate.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteDictionary.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteDictionary.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteMutableArray.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteMutableArray.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteMutableData.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteMutableData.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteMutableDictionary.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteMutableDictionary.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteMutableSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteMutableSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteNumber.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteNumber.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteSubarray.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteSubarray.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteValue.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConcreteValue.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCondition.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCondition.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConstantString.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFConstantString.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCountedSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCountedSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFCryptographicHash.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDDPSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDDPSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDNSQuery.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDNSQuery.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDNSResolver.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDNSResolver.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDNSResolverSettings.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDNSResolverSettings.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDNSResponse.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDNSResponse.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFData+CryptographicHashing.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFData+CryptographicHashing.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFData+MessagePackParsing.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFData+MessagePackParsing.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFData.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFData.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDatagramSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDatagramSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDate.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDate.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDictionary.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFDictionary.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFEmbeddedIRIHandler.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFEmbeddedIRIHandler.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFEnumerator.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFEnumerator.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFEpollKernelEventObserver.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFEpollKernelEventObserver.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFFile.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFFile.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFFileIRIHandler.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFFileIRIHandler.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
39 40 41 42 43 44 45 46 47 48 49 50 51 52 | #if defined(OF_LINUX) || defined(OF_MACOS) # include <sys/xattr.h> #endif #if defined(OF_FREEBSD) || defined(OF_NETBSD) # include <sys/extattr.h> #endif #ifdef OF_HAIKU # include <kernel/fs_attr.h> #endif #ifdef OF_DJGPP # include <syslimits.h> #endif #ifdef HAVE_FCNTL_H | > | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | #if defined(OF_LINUX) || defined(OF_MACOS) # include <sys/xattr.h> #endif #if defined(OF_FREEBSD) || defined(OF_NETBSD) # include <sys/extattr.h> #endif #ifdef OF_HAIKU # include <TypeConstants.h> # include <kernel/fs_attr.h> #endif #ifdef OF_DJGPP # include <syslimits.h> #endif #ifdef HAVE_FCNTL_H |
| ︙ | ︙ |
Changes to src/OFFileManager.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
21 22 23 24 25 26 27 | #import "OFDictionary.h" OF_ASSUME_NONNULL_BEGIN /** @file */ #ifdef OF_HAVE_FILES | | > | | | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
#import "OFDictionary.h"
OF_ASSUME_NONNULL_BEGIN
/** @file */
#ifdef OF_HAVE_FILES
# if (defined(OF_HAVE_CHMOD) && !defined(OF_AMIGAOS) && \
!defined(OF_NINTENDO_DS)) || defined(DOXYGEN)
# define OF_FILE_MANAGER_SUPPORTS_PERMISSIONS
# endif
# if (defined(OF_HAVE_CHOWN) && !defined(OF_AMIGAOS)) || defined(DOXYGEN)
# define OF_FILE_MANAGER_SUPPORTS_OWNER
# endif
# if (defined(OF_HAVE_LINK) && !defined(OF_AMIGAOS) && !defined(OF_HAIKU) && \
!defined(OF_NINTENDO_DS)) || defined(OF_WINDOWS) || defined(DOXYGEN)
# define OF_FILE_MANAGER_SUPPORTS_LINKS
# endif
# if (defined(OF_HAVE_SYMLINK) && !defined(OF_AMIGAOS) && \
!defined(OF_NINTENDO_DS)) || defined(OF_WINDOWS) || defined(DOXYGEN)
# define OF_FILE_MANAGER_SUPPORTS_SYMLINKS
# endif
# if defined(OF_LINUX) || defined(OF_MACOS) || defined(OF_FREEBSD) || \
defined(OF_NETBSD) || defined(OF_HAIKU) || defined(OF_SOLARIS) || \
defined(DOXYGEN)
# define OF_FILE_MANAGER_SUPPORTS_EXTENDED_ATTRIBUTES
# endif
|
| ︙ | ︙ |
Changes to src/OFFileManager.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFFileManagerConstants.inc.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFGZIPStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFGZIPStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHINFODNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHINFODNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHMAC.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHMAC.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPClient.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPClient.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPCookie.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPCookie.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPCookieManager.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPCookieManager.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPIRIHandler.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPIRIHandler.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPRequest.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPRequest.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPResponse.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPResponse.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPServer.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHTTPServer.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
29 30 31 32 33 34 35 36 37 38 39 40 41 42 | #import "OFArray.h" #import "OFData.h" #import "OFDate.h" #import "OFDictionary.h" #import "OFHTTPRequest.h" #import "OFHTTPResponse.h" #import "OFIRI.h" #import "OFNumber.h" #import "OFSocket.h" #import "OFSocket+Private.h" #import "OFString.h" #import "OFString+Private.h" #import "OFTCPSocket.h" #import "OFThread.h" | > | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | #import "OFArray.h" #import "OFData.h" #import "OFDate.h" #import "OFDictionary.h" #import "OFHTTPRequest.h" #import "OFHTTPResponse.h" #import "OFIRI.h" #import "OFIRI+Private.h" #import "OFNumber.h" #import "OFSocket.h" #import "OFSocket+Private.h" #import "OFString.h" #import "OFString+Private.h" #import "OFTCPSocket.h" #import "OFThread.h" |
| ︙ | ︙ | |||
476 477 478 479 480 481 482 483 |
[_headers setObject: value forKey: key];
if ([key isEqual: @"Host"]) {
pos = [value rangeOfString: @":"
options: OFStringSearchBackwards].location;
if (pos != OFNotFound) {
[_host release];
| > > > > > > > > > > > | | 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 |
[_headers setObject: value forKey: key];
if ([key isEqual: @"Host"]) {
pos = [value rangeOfString: @":"
options: OFStringSearchBackwards].location;
if (pos != OFNotFound) {
OFString *host = [value substringToIndex: pos];
if ([host hasPrefix: @"["] && [host hasSuffix: @"]"]) {
OFString *IPv6 = [host substringWithRange:
OFMakeRange(1, host.length - 2)];
if (_OFIRIIsIPv6Host(IPv6))
host = IPv6;
}
[_host release];
_host = [host retain];
@try {
unsigned long long portTmp =
[value substringFromIndex: pos + 1]
.unsignedLongLongValue;
if (portTmp < 1 || portTmp > UINT16_MAX)
|
| ︙ | ︙ |
Changes to src/OFHostAddressResolver.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHostAddressResolver.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHuffmanTree.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFHuffmanTree.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFINICategory.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFINICategory.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFINIFile.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFINIFile.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFINIFileSettings.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFINIFileSettings.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFINISection+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFINISection.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFINISection.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
106 107 108 109 110 111 112 |
+ (void)initialize
{
if (self != [OFINISection class])
return;
needsEscapeCharacterSet = [[OFCharacterSet alloc]
| | | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
+ (void)initialize
{
if (self != [OFINISection class])
return;
needsEscapeCharacterSet = [[OFCharacterSet alloc]
initWithCharactersInString: @"\r\n\f\"\\=;#"];
}
- (instancetype)of_initWithName: (OFString *)name OF_DIRECT
{
self = [super init];
@try {
|
| ︙ | ︙ |
Changes to src/OFIPXSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFIPXSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFIRI+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFIRI.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFIRI.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFIRIHandler.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFIRIHandler.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFInflate64Stream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFInflate64Stream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFInflateStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFInflateStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFInvertedCharacterSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFInvertedCharacterSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFInvocation.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFInvocation.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFJSONRepresentation.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFKernelEventObserver.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFKernelEventObserver.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFKeyValueCoding.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFKqueueKernelEventObserver.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFKqueueKernelEventObserver.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLHAArchive.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLHAArchive.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLHAArchiveEntry+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLHAArchiveEntry.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLHAArchiveEntry.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLHADecompressingStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLHADecompressingStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLOCDNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLOCDNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFList.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFList.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLocale.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLocale.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFLocking.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMD5Hash.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMD5Hash.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMXDNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMXDNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMapTable+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMapTable.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMapTable.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMatrix4x4.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMatrix4x4.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMemoryStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMemoryStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMessagePackExtension.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMessagePackExtension.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMessagePackRepresentation.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMethodSignature.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMethodSignature.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableArchiveEntry.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableArray.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableArray.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableData.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableData.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableDictionary.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableDictionary.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableIRI.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableIRI.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableLHAArchiveEntry.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableLHAArchiveEntry.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutablePair.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutablePair.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableString.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableString.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableTarArchiveEntry.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableTarArchiveEntry.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableTriple.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableTriple.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableUTF8String.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableUTF8String.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
}
}
- (void)appendUTF8String: (const char *)UTF8String
{
size_t UTF8StringLength = strlen(UTF8String);
size_t length;
if (UTF8StringLength >= 3 &&
memcmp(UTF8String, "\xEF\xBB\xBF", 3) == 0) {
UTF8String += 3;
UTF8StringLength -= 3;
}
switch (_OFUTF8StringCheck(UTF8String, UTF8StringLength, &length,
| > | > > > > | > > > | 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 |
}
}
- (void)appendUTF8String: (const char *)UTF8String
{
size_t UTF8StringLength = strlen(UTF8String);
size_t length;
bool containsNull;
if (UTF8StringLength >= 3 &&
memcmp(UTF8String, "\xEF\xBB\xBF", 3) == 0) {
UTF8String += 3;
UTF8StringLength -= 3;
}
switch (_OFUTF8StringCheck(UTF8String, UTF8StringLength, &length,
&containsNull)) {
case 1:
_s->isUTF8 = true;
break;
case -1:
@throw [OFInvalidEncodingException exception];
}
_s->hasHash = false;
_s->cString = OFResizeMemory(_s->cString,
_s->cStringLength + UTF8StringLength + 1, 1);
memcpy(_s->cString + _s->cStringLength, UTF8String,
UTF8StringLength + 1);
_s->cStringLength += UTF8StringLength;
_s->length += length;
if (containsNull)
_s->containsNull = containsNull;
}
- (void)appendUTF8String: (const char *)UTF8String
length: (size_t)UTF8StringLength
{
size_t length;
bool containsNull;
if (UTF8StringLength >= 3 &&
memcmp(UTF8String, "\xEF\xBB\xBF", 3) == 0) {
UTF8String += 3;
UTF8StringLength -= 3;
}
switch (_OFUTF8StringCheck(UTF8String, UTF8StringLength, &length,
&containsNull)) {
case 1:
_s->isUTF8 = true;
break;
case -1:
@throw [OFInvalidEncodingException exception];
}
_s->hasHash = false;
_s->cString = OFResizeMemory(_s->cString,
_s->cStringLength + UTF8StringLength + 1, 1);
memcpy(_s->cString + _s->cStringLength, UTF8String, UTF8StringLength);
_s->cStringLength += UTF8StringLength;
_s->length += length;
_s->cString[_s->cStringLength] = 0;
if (containsNull)
_s->containsNull = true;
}
- (void)appendCString: (const char *)cString
encoding: (OFStringEncoding)encoding
{
[self appendCString: cString
encoding: encoding
|
| ︙ | ︙ | |||
376 377 378 379 380 381 382 383 |
[string isKindOfClass: [OFMutableUTF8String class]]) {
if (((OFMutableUTF8String *)string)->_s->isUTF8)
_s->isUTF8 = true;
if (((OFMutableUTF8String *)string)->_s->containsNull)
_s->containsNull = true;
} else {
switch (_OFUTF8StringCheck(UTF8String, UTF8StringLength,
| > > | > > > | 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 |
[string isKindOfClass: [OFMutableUTF8String class]]) {
if (((OFMutableUTF8String *)string)->_s->isUTF8)
_s->isUTF8 = true;
if (((OFMutableUTF8String *)string)->_s->containsNull)
_s->containsNull = true;
} else {
bool containsNull;
switch (_OFUTF8StringCheck(UTF8String, UTF8StringLength,
NULL, &containsNull)) {
case 1:
_s->isUTF8 = true;
break;
case -1:
@throw [OFInvalidEncodingException exception];
}
if (containsNull)
_s->containsNull = true;
}
}
- (void)appendCharacters: (const OFUnichar *)characters length: (size_t)length
{
char *tmp = OFAllocMemory((length * 4) + 1, 1);
|
| ︙ | ︙ | |||
485 486 487 488 489 490 491 492 |
[string isKindOfClass: [OFMutableUTF8String class]]) {
if (((OFMutableUTF8String *)string)->_s->isUTF8)
_s->isUTF8 = true;
if (((OFMutableUTF8String *)string)->_s->containsNull)
_s->containsNull = true;
} else {
switch (_OFUTF8StringCheck(UTF8String, UTF8StringLength,
| > > | > > > | 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 |
[string isKindOfClass: [OFMutableUTF8String class]]) {
if (((OFMutableUTF8String *)string)->_s->isUTF8)
_s->isUTF8 = true;
if (((OFMutableUTF8String *)string)->_s->containsNull)
_s->containsNull = true;
} else {
bool containsNull;
switch (_OFUTF8StringCheck(UTF8String, UTF8StringLength,
NULL, &containsNull)) {
case 1:
_s->isUTF8 = true;
break;
case -1:
@throw [OFInvalidEncodingException exception];
}
if (containsNull)
_s->containsNull = true;
}
}
- (void)deleteCharactersInRange: (OFRange)range
{
size_t start = range.location;
size_t end = range.location + range.length;
|
| ︙ | ︙ | |||
602 603 604 605 606 607 608 609 |
[replacement isKindOfClass: [OFMutableUTF8String class]]) {
if (((OFMutableUTF8String *)replacement)->_s->isUTF8)
_s->isUTF8 = true;
if (((OFMutableUTF8String *)replacement)->_s->containsNull)
_s->containsNull = true;
} else {
switch (_OFUTF8StringCheck(replacementString, replacementLength,
| > > | > > > | 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 |
[replacement isKindOfClass: [OFMutableUTF8String class]]) {
if (((OFMutableUTF8String *)replacement)->_s->isUTF8)
_s->isUTF8 = true;
if (((OFMutableUTF8String *)replacement)->_s->containsNull)
_s->containsNull = true;
} else {
bool containsNull;
switch (_OFUTF8StringCheck(replacementString, replacementLength,
NULL, &containsNull)) {
case 1:
_s->isUTF8 = true;
break;
case -1:
@throw [OFInvalidEncodingException exception];
}
if (containsNull)
_s->containsNull = containsNull;
}
if (_s->containsNull) {
_s->containsNull = false;
for (size_t i = 0; i < _s->cStringLength; i++)
if (_s->cString[i] == '\0')
|
| ︙ | ︙ | |||
708 709 710 711 712 713 714 715 |
[replacement isKindOfClass: [OFMutableUTF8String class]]) {
if (((OFMutableUTF8String *)replacement)->_s->isUTF8)
_s->isUTF8 = true;
if (((OFMutableUTF8String *)replacement)->_s->containsNull)
_s->containsNull = true;
} else {
switch (_OFUTF8StringCheck(replacementString, replacementLength,
| > > | > > > | 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 |
[replacement isKindOfClass: [OFMutableUTF8String class]]) {
if (((OFMutableUTF8String *)replacement)->_s->isUTF8)
_s->isUTF8 = true;
if (((OFMutableUTF8String *)replacement)->_s->containsNull)
_s->containsNull = true;
} else {
bool containsNull;
switch (_OFUTF8StringCheck(replacementString, replacementLength,
NULL, &containsNull)) {
case 1:
_s->isUTF8 = true;
break;
case -1:
@throw [OFInvalidEncodingException exception];
}
if (containsNull)
_s->containsNull = true;
}
if (_s->containsNull) {
_s->containsNull = false;
for (size_t i = 0; i < _s->cStringLength; i++)
if (_s->cString[i] == '\0')
|
| ︙ | ︙ |
Changes to src/OFMutableZIPArchiveEntry.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableZIPArchiveEntry.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableZooArchiveEntry.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutableZooArchiveEntry.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutex.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFMutex.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFNSDNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFNSDNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFNotification.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFNotification.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFNotificationCenter.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
101 102 103 104 105 106 107 | */ - (id)addObserverForName: (OFNotificationName)name object: (nullable id)object usingBlock: (OFNotificationCenterBlock)block; /** * @brief Removes an observer. The specified observer must be one returned by | | | 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | */ - (id)addObserverForName: (OFNotificationName)name object: (nullable id)object usingBlock: (OFNotificationCenterBlock)block; /** * @brief Removes an observer. The specified observer must be one returned by * @ref addObserverForName:object:usingBlock:. * * @param observer The object that was returned when adding the observer */ - (void)removeObserver: (id)observer; #endif /** |
| ︙ | ︙ |
Changes to src/OFNotificationCenter.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFNull.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFNull.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFNumber.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFNumber.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFObject+KeyValueCoding.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFObject+KeyValueCoding.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
734 735 736 737 738 739 740 741 742 743 744 745 746 747 | /** * @brief A method which is called once when the class is loaded into the * runtime. * * Derived classes can override this to execute their own code when the class * is loaded. */ + (void)load; /** * @brief A method which is called when the class is unloaded from the runtime. * * Derived classes can override this to execute their own code when the class | > > > > | 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 | /** * @brief A method which is called once when the class is loaded into the * runtime. * * Derived classes can override this to execute their own code when the class * is loaded. * * @warning You cannot make use of other classes from inside this method! Only * the class itself, its superclasses and instances of the class or * its superclassses can be messaged! */ + (void)load; /** * @brief A method which is called when the class is unloaded from the runtime. * * Derived classes can override this to execute their own code when the class |
| ︙ | ︙ |
Changes to src/OFObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFOnce.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFOnce.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFOptionsParser.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFOptionsParser.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPBKDF2.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPBKDF2.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPTRDNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPTRDNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPair.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPair.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPlainCondition.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPlainCondition.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPlainMutex.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPlainMutex.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPlainThread.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPlainThread.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPlugin.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPlugin.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPollKernelEventObserver.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFPollKernelEventObserver.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFRIPEMD160Hash.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFRIPEMD160Hash.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFRPDNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFRPDNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFRangeCharacterSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFRangeCharacterSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFRecursiveMutex.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFRecursiveMutex.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFRunLoop+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFRunLoop.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFRunLoop.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
1841 1842 1843 1844 1845 1846 1847 |
- (void)runMode: (OFRunLoopMode)mode beforeDate: (OFDate *)deadline
{
void *pool = objc_autoreleasePoolPush();
OFRunLoopMode previousMode = _currentMode;
OFRunLoopState *state = stateForMode(self, mode, false, false);
| | > > | 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 |
- (void)runMode: (OFRunLoopMode)mode beforeDate: (OFDate *)deadline
{
void *pool = objc_autoreleasePoolPush();
OFRunLoopMode previousMode = _currentMode;
OFRunLoopState *state = stateForMode(self, mode, false, false);
if (state == nil) {
objc_autoreleasePoolPop(pool);
return;
}
_currentMode = mode;
@try {
OFDate *nextTimer;
#if defined(OF_AMIGAOS) && defined(OF_HAVE_THREADS)
ULONG signalMask;
#endif
|
| ︙ | ︙ | |||
1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 |
[state->_timersQueueMutex unlock];
}
#endif
if (timer.valid) {
[timer of_reschedule];
[timer fire];
return;
}
}
#ifdef OF_HAVE_THREADS
[state->_timersQueueMutex lock];
@try {
| > | 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 |
[state->_timersQueueMutex unlock];
}
#endif
if (timer.valid) {
[timer of_reschedule];
[timer fire];
objc_autoreleasePoolPop(pool);
return;
}
}
#ifdef OF_HAVE_THREADS
[state->_timersQueueMutex lock];
@try {
|
| ︙ | ︙ |
Changes to src/OFRunLoopConstants.inc.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSCTPSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSCTPSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA1Hash.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA1Hash.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA224Hash.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA224Hash.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA224Or256Hash.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA224Or256Hash.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA256Hash.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA256Hash.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA384Hash.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA384Hash.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA384Or512Hash.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA384Or512Hash.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA512Hash.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSHA512Hash.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSOADNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSOADNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSPXSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSPXSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSPXStreamSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSPXStreamSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSRVDNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSRVDNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSandbox.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSandbox.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFScrypt.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFScrypt.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSecureData.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSecureData.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSeekableStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSeekableStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSelectKernelEventObserver.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSelectKernelEventObserver.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSequencedPacketSocket+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSequencedPacketSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSequencedPacketSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSettings.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSettings.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSocket+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSortedList.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSortedList.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFStdIOStream+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFStdIOStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
34 35 36 37 38 39 40 | * @class OFStdIOStream OFStdIOStream.h ObjFW/ObjFW.h * * @brief A class for providing standard input, output and error as OFStream. * * The global variables @ref OFStdIn, @ref OFStdOut and @ref OFStdErr are * instances of this class and need no initialization. */ | < < < > | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
* @class OFStdIOStream OFStdIOStream.h ObjFW/ObjFW.h
*
* @brief A class for providing standard input, output and error as OFStream.
*
* The global variables @ref OFStdIn, @ref OFStdOut and @ref OFStdErr are
* instances of this class and need no initialization.
*/
@interface OFStdIOStream: OFStream
#if !defined(OF_WINDOWS) && !defined(OF_AMIGAOS) && !defined(OF_WII_U)
<OFReadyForReadingObserving, OFReadyForWritingObserving>
#endif
{
#if defined(OF_AMIGAOS)
BPTR _handle;
bool _closable;
#elif !defined(OF_WII_U)
int _fd;
#endif
bool _atEndOfStream;
OF_RESERVE_IVARS(OFStdIOStream, 4)
}
/**
* @brief Whether there is an underlying terminal.
*/
@property (readonly, nonatomic) bool hasTerminal;
|
| ︙ | ︙ |
Changes to src/OFStdIOStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
28 29 30 31 32 33 34 | #endif #ifdef HAVE_SYS_TTYCOM_H # include <sys/ttycom.h> #endif #import "OFStdIOStream.h" #import "OFStdIOStream+Private.h" | | | | | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | #endif #ifdef HAVE_SYS_TTYCOM_H # include <sys/ttycom.h> #endif #import "OFStdIOStream.h" #import "OFStdIOStream+Private.h" #import "OFApplication.h" #import "OFColor.h" #import "OFDate.h" #ifdef OF_WINDOWS # import "OFWin32ConsoleStdIOStream.h" #endif #import "OFInitializationFailedException.h" #import "OFInvalidArgumentException.h" #import "OFNotOpenException.h" |
| ︙ | ︙ |
Changes to src/OFStrFTime.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFStrFTime.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFStrPTime.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFStrPTime.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFStream+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFStreamSocket+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFStreamSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFStreamSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+CryptographicHashing.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+CryptographicHashing.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+JSONParsing.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+JSONParsing.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+PathAdditions.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+PathAdditions.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+PercentEncoding.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+PercentEncoding.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+PropertyListParsing.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+PropertyListParsing.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+XMLEscaping.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+XMLEscaping.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+XMLUnescaping.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString+XMLUnescaping.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFString.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
180 181 182 183 184 185 186 | @property (readonly, nonatomic) OFString *capitalizedString; /** * @brief The decimal value of the string as a `long long`. * * Leading and trailing whitespaces are ignored. * | < | < < | > | | < | < | 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 | @property (readonly, nonatomic) OFString *capitalizedString; /** * @brief The decimal value of the string as a `long long`. * * Leading and trailing whitespaces are ignored. * * @throw OFInvalidFormatException The string contains non-number characters * @throw OFOutOfRangeException The value is too big or too small to fit into * a `long long` */ @property (readonly, nonatomic) long long longLongValue; /** * @brief The decimal value of the string as an `unsigned long long`. * * Leading and trailing whitespaces are ignored. * * @throw OFInvalidFormatException The string contains non-number characters * @throw OFOutOfRangeException The value is too big to fit into an * `unsigned long long` */ @property (readonly, nonatomic) unsigned long long unsignedLongLongValue; /** * @brief The float value of the string as a float. * * @throw OFInvalidFormatException The string cannot be parsed as a `float` |
| ︙ | ︙ | |||
1079 1080 1081 1082 1083 1084 1085 | - (OFString *)substringWithRange: (OFRange)range; /** * @brief The value of the string in the specified base as a `long long`. * * Leading and trailing whitespaces are ignored. * | < < < < < < | | > < < < < < < | < | | 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 | - (OFString *)substringWithRange: (OFRange)range; /** * @brief The value of the string in the specified base as a `long long`. * * Leading and trailing whitespaces are ignored. * * @param base The base to use. If the base is 0, base 16 is assumed if the * string starts with 0x (after stripping white spaces). If the * string starts with 0, base 8 is assumed. Otherwise, base 10 is * assumed. * @return The value of the string in the specified base * @throw OFInvalidFormatException The string contains non-number characters * @throw OFOutOfRangeException The value is too big or too small to fit into * a `long long` */ - (long long)longLongValueWithBase: (unsigned char)base; /** * @brief The value of the string in the specified base as an * `unsigned long long`. * * Leading and trailing whitespaces are ignored. * * @param base The base to use. If the base is 0, base 16 is assumed if the * string starts with 0x (after stripping white spaces). If the * string starts with 0, base 8 is assumed. Otherwise, base 10 is * assumed. * @return The value of the string in the specified base * @throw OFInvalidFormatException The string contains non-number characters * @throw OFOutOfRangeException The value is too big to fit into an * `unsigned long long` */ - (unsigned long long)unsignedLongLongValueWithBase: (unsigned char)base; /** * @brief Creates a new string by appending another string. * |
| ︙ | ︙ |
Changes to src/OFString.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
2381 2382 2383 2384 2385 2386 2387 |
}
- (long long)longLongValueWithBase: (unsigned char)base
{
void *pool = objc_autoreleasePoolPush();
const char *UTF8String = self.UTF8String;
bool negative = false;
| | | 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 |
}
- (long long)longLongValueWithBase: (unsigned char)base
{
void *pool = objc_autoreleasePoolPush();
const char *UTF8String = self.UTF8String;
bool negative = false;
unsigned long long value = 0;
while (OFASCIIIsSpace(*UTF8String))
UTF8String++;
switch (*UTF8String) {
case '-':
negative = true;
|
| ︙ | ︙ | |||
2433 2434 2435 2436 2437 2438 2439 | break; } else @throw [OFInvalidFormatException exception]; if (c >= base) @throw [OFInvalidFormatException exception]; | > | > > | | > > | > > | > | 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 |
break;
} else
@throw [OFInvalidFormatException exception];
if (c >= base)
@throw [OFInvalidFormatException exception];
if (ULLONG_MAX / base < value ||
ULLONG_MAX - (value * base) < c)
@throw [OFOutOfRangeException exception];
value = (value * base) + c;
}
objc_autoreleasePoolPop(pool);
if (negative) {
if (value > -(unsigned long long)LLONG_MIN)
@throw [OFOutOfRangeException exception];
return (long long)-value;
} else {
if (value > (unsigned long long)LLONG_MAX)
@throw [OFOutOfRangeException exception];
return (long long)value;
}
}
- (unsigned long long)unsignedLongLongValue
{
return [self unsignedLongLongValueWithBase: 10];
}
|
| ︙ | ︙ |
Changes to src/OFSubarray.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSubarray.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSubdata.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSubdata.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSubprocess.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSubprocess.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSystemInfo+NetworkInterfaces.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
17 18 19 20 21 22 23 | * <https://www.gnu.org/licenses/>. */ #import "OFSystemInfo.h" OF_ASSUME_NONNULL_BEGIN | < < < < < < < < > > > > > > > > > > > | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
* <https://www.gnu.org/licenses/>.
*/
#import "OFSystemInfo.h"
OF_ASSUME_NONNULL_BEGIN
/**
* @brief A key of an @ref OFNetworkInterface.
*
* Possible values are:
*
* * @ref OFNetworkInterfaceIndex
*/
typedef OFConstantString *OFNetworkInterfaceKey;
/**
* @brief A dictionary describing a network interface, as returned by
* @ref networkInterfaces.
*
* Keys are of type @ref OFNetworkInterfaceKey.
*/
typedef OFDictionary OF_GENERIC(OFNetworkInterfaceKey, id) *OFNetworkInterface;
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief The index of a network interface.
*
* This maps to an @ref OFNumber.
*/
extern OFNetworkInterfaceKey OFNetworkInterfaceIndex;
|
| ︙ | ︙ | |||
80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
#ifdef OF_HAVE_APPLETALK
/**
* @brief The AppleTalk addresses of a network interface.
*
* This maps to an @ref OFData of @ref OFSocketAddress.
*/
extern OFNetworkInterfaceKey OFNetworkInterfaceAppleTalkAddresses;
#endif
@interface OFSystemInfo (NetworkInterfaces)
#ifdef OF_HAVE_CLASS_PROPERTIES
@property (class, readonly, nullable, nonatomic)
OFDictionary OF_GENERIC(OFString *, OFNetworkInterface) *networkInterfaces;
| > > > | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
#ifdef OF_HAVE_APPLETALK
/**
* @brief The AppleTalk addresses of a network interface.
*
* This maps to an @ref OFData of @ref OFSocketAddress.
*/
extern OFNetworkInterfaceKey OFNetworkInterfaceAppleTalkAddresses;
#endif
#ifdef __cplusplus
}
#endif
@interface OFSystemInfo (NetworkInterfaces)
#ifdef OF_HAVE_CLASS_PROPERTIES
@property (class, readonly, nullable, nonatomic)
OFDictionary OF_GENERIC(OFString *, OFNetworkInterface) *networkInterfaces;
|
| ︙ | ︙ |
Changes to src/OFSystemInfo+NetworkInterfaces.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSystemInfo.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFSystemInfo.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
556 557 558 559 560 561 562 | pathC, PATH_MAX) != B_OK) return nil; return [OFIRI fileIRIWithPath: [OFString stringWithUTF8String: pathC] isDirectory: true]; # elif defined(OF_AMIGAOS) return [OFIRI fileIRIWithPath: @"PROGDIR:" isDirectory: true]; | | | 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 | pathC, PATH_MAX) != B_OK) return nil; return [OFIRI fileIRIWithPath: [OFString stringWithUTF8String: pathC] isDirectory: true]; # elif defined(OF_AMIGAOS) return [OFIRI fileIRIWithPath: @"PROGDIR:" isDirectory: true]; # elif defined(OF_WII) || defined(OF_NINTENDO_DS) || defined(OF_NINTENDO_3DS) return [[OFFileManager defaultManager] currentDirectoryIRI]; # else OFDictionary *env = [OFApplication environment]; OFString *var; OFIRI *IRI; void *pool; |
| ︙ | ︙ | |||
648 649 650 651 652 653 654 | pathC, PATH_MAX) != B_OK) return nil; return [OFIRI fileIRIWithPath: [OFString stringWithUTF8String: pathC] isDirectory: true]; # elif defined(OF_AMIGAOS) return [OFIRI fileIRIWithPath: @"PROGDIR:" isDirectory: true]; | | | 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 | pathC, PATH_MAX) != B_OK) return nil; return [OFIRI fileIRIWithPath: [OFString stringWithUTF8String: pathC] isDirectory: true]; # elif defined(OF_AMIGAOS) return [OFIRI fileIRIWithPath: @"PROGDIR:" isDirectory: true]; # elif defined(OF_WII) || defined(OF_NINTENDO_DS) || defined(OF_NINTENDO_3DS) return [[OFFileManager defaultManager] currentDirectoryIRI]; # else OFDictionary *env = [OFApplication environment]; OFString *var; if ((var = [env objectForKey: @"XDG_CONFIG_HOME"]) != nil && var.length > 0) |
| ︙ | ︙ | |||
727 728 729 730 731 732 733 | if (path == nil) return nil; return [OFIRI fileIRIWithPath: path isDirectory: true]; # elif defined(OF_MINT) return [OFIRI fileIRIWithPath: @"u:\\tmp" isDirectory: true]; | | | 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 | if (path == nil) return nil; return [OFIRI fileIRIWithPath: path isDirectory: true]; # elif defined(OF_MINT) return [OFIRI fileIRIWithPath: @"u:\\tmp" isDirectory: true]; # elif defined(OF_WII) || defined(OF_NINTENDO_DS) || defined(OF_NINTENDO_3DS) return [[OFFileManager defaultManager] currentDirectoryIRI]; # elif defined(OF_NINTENDO_SWITCH) static OFOnceControl onceControl = OFOnceControlInitValue; OFOnce(&onceControl, mountTmpFS); return tmpFSIRI; # else |
| ︙ | ︙ |
Changes to src/OFTCPSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTCPSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTCPSocketSOCKS5Connector.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTCPSocketSOCKS5Connector.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTLSKey.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTLSKey.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTLSStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTLSStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTXTDNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTXTDNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTaggedPointerColor.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTaggedPointerColor.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTaggedPointerDate.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTaggedPointerDate.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTaggedPointerNumber.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTaggedPointerNumber.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTaggedPointerString.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTaggedPointerString.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTarArchive.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTarArchive.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTarArchiveEntry+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTarArchiveEntry.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTarArchiveEntry.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFThread+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFThread.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFThread.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTimer+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTimer.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTimer.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTriple.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFTriple.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUDPSocket+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUDPSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUDPSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUNIXDatagramSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUNIXDatagramSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUNIXSequencedPacketSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUNIXSequencedPacketSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUNIXStreamSocket.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUNIXStreamSocket.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFURIDNSResourceRecord.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFURIDNSResourceRecord.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUTF8String+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUTF8String.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUTF8String.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUUID.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFUUID.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFValue.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFValue.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFWin32ConsoleStdIOStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFWindowsRegistryKey.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFWindowsRegistryKey.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLAttribute.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLAttribute.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLCDATA.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLCDATA.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLCharacters.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLCharacters.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLComment.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLComment.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLElement.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLElement.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLElementBuilder.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLElementBuilder.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLNode+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLNode.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLNode.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLParser.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLParser.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLProcessingInstruction.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFXMLProcessingInstruction.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFZIPArchive+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFZIPArchive.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFZIPArchive.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFZIPArchiveEntry+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFZIPArchiveEntry.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFZIPArchiveEntry.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFZooArchive.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFZooArchive.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFZooArchiveEntry+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFZooArchiveEntry.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/OFZooArchiveEntry.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/ObjFW.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
73 74 75 76 77 78 79 80 81 82 83 84 85 86 | #import "OFZooArchive.h" #import "OFZooArchiveEntry.h" #import "OFFileManager.h" #ifdef OF_HAVE_FILES # import "OFFile.h" #endif #import "OFINIFile.h" #import "OFINICategory.h" #import "OFSettings.h" #ifdef OF_HAVE_SOCKETS # import "OFStreamSocket.h" # import "OFDatagramSocket.h" # import "OFSequencedPacketSocket.h" # import "OFTCPSocket.h" | > | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | #import "OFZooArchive.h" #import "OFZooArchiveEntry.h" #import "OFFileManager.h" #ifdef OF_HAVE_FILES # import "OFFile.h" #endif #import "OFINIFile.h" #import "OFEmbeddedIRIHandler.h" #import "OFINICategory.h" #import "OFSettings.h" #ifdef OF_HAVE_SOCKETS # import "OFStreamSocket.h" # import "OFDatagramSocket.h" # import "OFSequencedPacketSocket.h" # import "OFTCPSocket.h" |
| ︙ | ︙ |
Changes to src/bridge/NSArray+OFObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSArray+OFObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSBridging.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSDictionary+OFObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSDictionary+OFObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSEnumerator+OFObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSEnumerator+OFObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSNumber+OFObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSNumber+OFObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSOFArray.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSOFArray.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSOFDictionary.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSOFDictionary.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSOFEnumerator.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSOFEnumerator.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSOFSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSOFSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSSet+OFObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSSet+OFObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSString+OFObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/NSString+OFObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFArray+NSObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFArray+NSObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFBridging.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFDictionary+NSObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFDictionary+NSObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFEnumerator+NSObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFEnumerator+NSObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFException+Swift.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFException+Swift.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFNSArray.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFNSArray.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFNSDictionary.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFNSDictionary.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFNSEnumerator.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFNSEnumerator.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFNSSet.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFNSSet.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFNumber+NSObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFNumber+NSObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFSet+NSObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFSet+NSObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFString+NSObject.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/OFString+NSObject.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/bridge/ObjFWBridge.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/codepage-437.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/codepage-850.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/codepage-852.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/codepage-858.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/common.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/iso-8859-15.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/iso-8859-2.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/iso-8859-3.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/koi8-r.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/koi8-u.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/mac-roman.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/windows-1250.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/windows-1251.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/encodings/windows-1252.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFAcceptSocketFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFAcceptSocketFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFActivateSandboxFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFActivateSandboxFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFAllocFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFAllocFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFAlreadyOpenException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFAlreadyOpenException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBindDDPSocketFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBindDDPSocketFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBindIPSocketFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBindIPSocketFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBindIPXSocketFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBindIPXSocketFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBindSocketFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBindSocketFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBindUNIXSocketFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBindUNIXSocketFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBroadcastConditionFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFBroadcastConditionFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFChangeCurrentDirectoryFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFChangeCurrentDirectoryFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFChecksumMismatchException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFChecksumMismatchException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFConditionStillWaitingException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFConditionStillWaitingException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFConnectIPSocketFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFConnectIPSocketFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFConnectSPXSocketFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFConnectSPXSocketFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFConnectSocketFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFConnectSocketFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFConnectUNIXSocketFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFConnectUNIXSocketFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFCopyItemFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFCopyItemFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFCreateDirectoryFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFCreateDirectoryFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFCreateSymbolicLinkFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFCreateSymbolicLinkFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFCreateWindowsRegistryKeyFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFCreateWindowsRegistryKeyFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFDNSQueryFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFDNSQueryFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFDeleteWindowsRegistryKeyFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFDeleteWindowsRegistryKeyFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFDeleteWindowsRegistryValueFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFDeleteWindowsRegistryValueFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFEnumerationMutationException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFEnumerationMutationException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFGetCurrentDirectoryFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFGetCurrentDirectoryFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFGetItemAttributesFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFGetItemAttributesFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFGetOptionFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFGetOptionFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFGetWindowsRegistryValueFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFGetWindowsRegistryValueFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFHTTPRequestFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFHTTPRequestFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFHashAlreadyCalculatedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFHashAlreadyCalculatedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFHashNotCalculatedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFHashNotCalculatedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInitializationFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInitializationFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInvalidArgumentException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInvalidArgumentException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInvalidEncodingException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInvalidEncodingException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInvalidFormatException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInvalidFormatException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInvalidJSONException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInvalidJSONException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInvalidServerResponseException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFInvalidServerResponseException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFJoinThreadFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFJoinThreadFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFLinkItemFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFLinkItemFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFListenOnSocketFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFListenOnSocketFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFLoadPluginFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFLoadPluginFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFLockFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFLockFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFMalformedXMLException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFMalformedXMLException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFMoveItemFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFMoveItemFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFNotImplementedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFNotImplementedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFNotOpenException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFNotOpenException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFObserveKernelEventsFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFObserveKernelEventsFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFOpenItemFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFOpenItemFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFOpenWindowsRegistryKeyFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFOpenWindowsRegistryKeyFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFOutOfMemoryException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFOutOfMemoryException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFOutOfRangeException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFOutOfRangeException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFReadFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFReadFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFReadOrWriteFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFReadOrWriteFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFRemoveItemFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFRemoveItemFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFResolveHostFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFResolveHostFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFSeekFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFSeekFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFSetItemAttributesFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFSetItemAttributesFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFSetOptionFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFSetOptionFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFSetWindowsRegistryValueFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFSetWindowsRegistryValueFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFSignalConditionFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFSignalConditionFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFStartThreadFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFStartThreadFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFStillLockedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFStillLockedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFTLSHandshakeFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFTLSHandshakeFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFThreadStillRunningException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFThreadStillRunningException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFTruncatedDataException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFTruncatedDataException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnboundNamespaceException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnboundNamespaceException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnboundPrefixException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnboundPrefixException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUndefinedKeyException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUndefinedKeyException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnknownXMLEntityException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnknownXMLEntityException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnlockFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnlockFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnsupportedProtocolException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnsupportedProtocolException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnsupportedVersionException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFUnsupportedVersionException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFWaitForConditionFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFWaitForConditionFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFWriteFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/exceptions/OFWriteFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/apple-forwarding-amd64.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/apple-forwarding-arm.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/apple-forwarding-arm64.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/apple-forwarding-powerpc.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/apple-forwarding-x86.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-amd64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-amd64-macho.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-amd64-win64.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-arm-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-arm64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-arm64-win64.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-loongarch64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-mips-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-mips64-n64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-powerpc-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-powerpc64-elf-v2.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-powerpc64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-riscv64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-sparc-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-sparc64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-x86-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding-x86-win32.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/forwarding/forwarding.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHDualSenseGamepad+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
25 26 27 28 29 30 31 |
OF_ASSUME_NONNULL_BEGIN
@interface OHDualSenseGamepad ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
| | | 25 26 27 28 29 30 31 32 33 34 35 |
OF_ASSUME_NONNULL_BEGIN
@interface OHDualSenseGamepad ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
- (instancetype)oh_init OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END
|
Changes to src/hid/OHDualSenseGamepad.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHDualSenseGamepad.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHDualShock4Gamepad+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
25 26 27 28 29 30 31 |
OF_ASSUME_NONNULL_BEGIN
@interface OHDualShock4Gamepad ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
| | | 25 26 27 28 29 30 31 32 33 34 35 |
OF_ASSUME_NONNULL_BEGIN
@interface OHDualShock4Gamepad ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
- (instancetype)oh_init OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END
|
Changes to src/hid/OHDualShock4Gamepad.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHDualShock4Gamepad.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHEmulatedGameControllerAxis.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
30 31 32 33 34 35 36 |
}
- (instancetype)oh_initWithName: (OFString *)name
analog: (bool)analog OF_UNAVAILABLE;
- (instancetype)
oh_initWithNegativeButton: (OHGameControllerButton *)negativeButton
positiveButton: (OHGameControllerButton *)positiveButton
| | | 30 31 32 33 34 35 36 37 38 39 40 |
}
- (instancetype)oh_initWithName: (OFString *)name
analog: (bool)analog OF_UNAVAILABLE;
- (instancetype)
oh_initWithNegativeButton: (OHGameControllerButton *)negativeButton
positiveButton: (OHGameControllerButton *)positiveButton
OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END
|
Changes to src/hid/OHEmulatedGameControllerAxis.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHEmulatedGameControllerButton.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
29 30 31 32 33 34 35 | OHGameControllerAxis *_axis; bool _positive; } - (instancetype)oh_initWithName: (OFString *)name analog: (bool)analog OF_UNAVAILABLE; - (instancetype)oh_initWithAxis: (OHGameControllerAxis *)axis | | < | 29 30 31 32 33 34 35 36 37 38 39 | OHGameControllerAxis *_axis; bool _positive; } - (instancetype)oh_initWithName: (OFString *)name analog: (bool)analog OF_UNAVAILABLE; - (instancetype)oh_initWithAxis: (OHGameControllerAxis *)axis positive: (bool)positive OF_METHOD_FAMILY(init); @end OF_ASSUME_NONNULL_END |
Changes to src/hid/OHEmulatedGameControllerButton.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHEmulatedGameControllerTriggerButton.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
35 36 37 38 39 40 41 | analog: (bool)analog OF_UNAVAILABLE; + (instancetype)oh_buttonWithName: (OFString *)name axis: (OHGameControllerAxis *)axis; - (instancetype)oh_initWithName: (OFString *)name analog: (bool)analog OF_UNAVAILABLE; - (instancetype)oh_initWithName: (OFString *)name axis: (OHGameControllerAxis *)axis | | | 35 36 37 38 39 40 41 42 43 44 45 |
analog: (bool)analog OF_UNAVAILABLE;
+ (instancetype)oh_buttonWithName: (OFString *)name
axis: (OHGameControllerAxis *)axis;
- (instancetype)oh_initWithName: (OFString *)name
analog: (bool)analog OF_UNAVAILABLE;
- (instancetype)oh_initWithName: (OFString *)name
axis: (OHGameControllerAxis *)axis
OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END
|
Changes to src/hid/OHEmulatedGameControllerTriggerButton.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHEvdevExtendedGamepad.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHEvdevExtendedGamepad.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHEvdevGameController.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
35 36 37 38 39 40 41 | unsigned long *_evBits, *_keyBits, *_absBits; uint16_t _vendorID, _productID; OFString *_name; id <OHGameControllerProfile, OHEvdevMapping> _profile; } - (instancetype)oh_init OF_UNAVAILABLE; | | < | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | unsigned long *_evBits, *_keyBits, *_absBits; uint16_t _vendorID, _productID; OFString *_name; id <OHGameControllerProfile, OHEvdevMapping> _profile; } - (instancetype)oh_init OF_UNAVAILABLE; - (instancetype)oh_initWithPath: (OFString *)path OF_METHOD_FAMILY(init); - (void)oh_pollState; @end extern const uint16_t OHEvdevButtonIDs[]; extern const size_t OHNumEvdevButtonIDs; extern const uint16_t OHEvdevAxisIDs[]; extern const size_t OHNumEvdevAxisIDs; OF_ASSUME_NONNULL_END |
Changes to src/hid/OHEvdevGameController.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHEvdevGameControllerProfile.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
33 34 35 36 37 38 39 | - (instancetype)init OF_UNAVAILABLE; - (instancetype)oh_initWithKeyBits: (unsigned long *)keyBits evBits: (unsigned long *)evBits absBits: (unsigned long *)absBits vendorID: (uint16_t)vendorID | | < | 33 34 35 36 37 38 39 40 41 42 43 | - (instancetype)init OF_UNAVAILABLE; - (instancetype)oh_initWithKeyBits: (unsigned long *)keyBits evBits: (unsigned long *)evBits absBits: (unsigned long *)absBits vendorID: (uint16_t)vendorID productID: (uint16_t)productID OF_METHOD_FAMILY(init); @end OF_ASSUME_NONNULL_END |
Changes to src/hid/OHEvdevGameControllerProfile.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHExtendedGamepad.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHExtendedN64Controller.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHExtendedN64Controller.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameController+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
18 19 20 21 22 23 24 | */ #import "OHGameController.h" OF_ASSUME_NONNULL_BEGIN @interface OHGameController () | | | 18 19 20 21 22 23 24 25 26 27 28 | */ #import "OHGameController.h" OF_ASSUME_NONNULL_BEGIN @interface OHGameController () - (instancetype)oh_init OF_METHOD_FAMILY(init); @end OF_ASSUME_NONNULL_END |
Changes to src/hid/OHGameController.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameController.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameControllerAxis+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameControllerAxis.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameControllerAxis.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameControllerButton.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameControllerButton.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameControllerDirectionalPad+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameControllerDirectionalPad.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameControllerDirectionalPad.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameControllerElement+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
20 21 22 23 24 25 26 | #import "OHGameControllerElement.h" OF_ASSUME_NONNULL_BEGIN @interface OHGameControllerElement () + (instancetype)oh_elementWithName: (OFString *)name analog: (bool)analog; - (instancetype)oh_initWithName: (OFString *)name | | < | 20 21 22 23 24 25 26 27 28 29 30 | #import "OHGameControllerElement.h" OF_ASSUME_NONNULL_BEGIN @interface OHGameControllerElement () + (instancetype)oh_elementWithName: (OFString *)name analog: (bool)analog; - (instancetype)oh_initWithName: (OFString *)name analog: (bool)analog OF_METHOD_FAMILY(init); @end OF_ASSUME_NONNULL_END |
Changes to src/hid/OHGameControllerElement.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameControllerElement.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGameControllerProfile.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHGamepad.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHJoyConPair.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
59 60 61 62 63 64 65 | * and right Joy-Con. * * @param leftJoyCon The left Joy-Con for the pair * @param rightJoyCon The right Joy-Con for the pair * @return An initialized Joy-Con pair */ - (instancetype)initWithLeftJoyCon: (OHLeftJoyCon *)leftJoyCon | | < | 59 60 61 62 63 64 65 66 67 68 69 | * and right Joy-Con. * * @param leftJoyCon The left Joy-Con for the pair * @param rightJoyCon The right Joy-Con for the pair * @return An initialized Joy-Con pair */ - (instancetype)initWithLeftJoyCon: (OHLeftJoyCon *)leftJoyCon rightJoyCon: (OHRightJoyCon *)rightJoyCon; @end OF_ASSUME_NONNULL_END |
Changes to src/hid/OHJoyConPair.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHLeftJoyCon+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
25 26 27 28 29 30 31 |
OF_ASSUME_NONNULL_BEGIN
@interface OHLeftJoyCon ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
| | | 25 26 27 28 29 30 31 32 33 34 35 |
OF_ASSUME_NONNULL_BEGIN
@interface OHLeftJoyCon ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
- (instancetype)oh_init OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END
|
Changes to src/hid/OHLeftJoyCon.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHLeftJoyCon.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHN64Controller+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
25 26 27 28 29 30 31 |
OF_ASSUME_NONNULL_BEGIN
@interface OHN64Controller ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
| | | 25 26 27 28 29 30 31 32 33 34 35 |
OF_ASSUME_NONNULL_BEGIN
@interface OHN64Controller ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
- (instancetype)oh_init OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END
|
Changes to src/hid/OHN64Controller.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHN64Controller.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHNintendo3DSExtendedGamepad+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
18 19 20 21 22 23 24 | */ #import "OHNintendo3DSExtendedGamepad.h" OF_ASSUME_NONNULL_BEGIN @interface OHNintendo3DSExtendedGamepad () | | | 18 19 20 21 22 23 24 25 26 27 28 | */ #import "OHNintendo3DSExtendedGamepad.h" OF_ASSUME_NONNULL_BEGIN @interface OHNintendo3DSExtendedGamepad () - (instancetype)oh_init OF_METHOD_FAMILY(init); @end OF_ASSUME_NONNULL_END |
Changes to src/hid/OHNintendo3DSExtendedGamepad.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHNintendo3DSExtendedGamepad.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHNintendo3DSGameController.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHNintendo3DSGameController.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHNintendoDSGameController.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHNintendoDSGameController.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHNintendoDSGamepad+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
18 19 20 21 22 23 24 | */ #import "OHNintendoDSGamepad.h" OF_ASSUME_NONNULL_BEGIN @interface OHNintendoDSGamepad () | | | 18 19 20 21 22 23 24 25 26 27 28 | */ #import "OHNintendoDSGamepad.h" OF_ASSUME_NONNULL_BEGIN @interface OHNintendoDSGamepad () - (instancetype)oh_init OF_METHOD_FAMILY(init); @end OF_ASSUME_NONNULL_END |
Changes to src/hid/OHNintendoDSGamepad.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHNintendoDSGamepad.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHNintendoSwitchExtendedGamepad+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
18 19 20 21 22 23 24 | */ #import "OHNintendoSwitchExtendedGamepad.h" OF_ASSUME_NONNULL_BEGIN @interface OHNintendoSwitchExtendedGamepad () | | | 18 19 20 21 22 23 24 25 26 27 28 | */ #import "OHNintendoSwitchExtendedGamepad.h" OF_ASSUME_NONNULL_BEGIN @interface OHNintendoSwitchExtendedGamepad () - (instancetype)oh_init OF_METHOD_FAMILY(init); @end OF_ASSUME_NONNULL_END |
Changes to src/hid/OHNintendoSwitchExtendedGamepad.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHNintendoSwitchExtendedGamepad.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHNintendoSwitchGameController.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
30 31 32 33 34 35 36 |
@interface OHNintendoSwitchGameController: OHGameController
{
PadState _pad;
OHNintendoSwitchExtendedGamepad *_extendedGamepad;
}
- (instancetype)oh_init OF_UNAVAILABLE;
| | < | 30 31 32 33 34 35 36 37 38 39 40 |
@interface OHNintendoSwitchGameController: OHGameController
{
PadState _pad;
OHNintendoSwitchExtendedGamepad *_extendedGamepad;
}
- (instancetype)oh_init OF_UNAVAILABLE;
- (instancetype)oh_initWithIndex: (size_t)index OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END
|
Changes to src/hid/OHNintendoSwitchGameController.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHRightJoyCon+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
25 26 27 28 29 30 31 |
OF_ASSUME_NONNULL_BEGIN
@interface OHRightJoyCon ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
| | | 25 26 27 28 29 30 31 32 33 34 35 |
OF_ASSUME_NONNULL_BEGIN
@interface OHRightJoyCon ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
- (instancetype)oh_init OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END
|
Changes to src/hid/OHRightJoyCon.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHRightJoyCon.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHStadiaGamepad+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
25 26 27 28 29 30 31 |
OF_ASSUME_NONNULL_BEGIN
@interface OHStadiaGamepad ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
| | | 25 26 27 28 29 30 31 32 33 34 35 |
OF_ASSUME_NONNULL_BEGIN
@interface OHStadiaGamepad ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
<OHEvdevMapping>
#endif
- (instancetype)oh_init OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END
|
Changes to src/hid/OHStadiaGamepad.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHStadiaGamepad.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHWiiClassicController+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
18 19 20 21 22 23 24 | */ #import "OHWiiClassicController.h" OF_ASSUME_NONNULL_BEGIN @interface OHWiiClassicController () | | | 18 19 20 21 22 23 24 25 26 27 28 | */ #import "OHWiiClassicController.h" OF_ASSUME_NONNULL_BEGIN @interface OHWiiClassicController () - (instancetype)oh_init OF_METHOD_FAMILY(init); @end OF_ASSUME_NONNULL_END |
Changes to src/hid/OHWiiClassicController.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHWiiClassicController.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHWiiGameController.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
26 27 28 29 30 31 32 | int32_t _index; uint32_t _type; id <OHGameControllerProfile> _profile; } - (instancetype)oh_init OF_UNAVAILABLE; - (instancetype)oh_initWithIndex: (int32_t)index | | < | 26 27 28 29 30 31 32 33 34 35 36 | int32_t _index; uint32_t _type; id <OHGameControllerProfile> _profile; } - (instancetype)oh_init OF_UNAVAILABLE; - (instancetype)oh_initWithIndex: (int32_t)index type: (uint32_t)type OF_METHOD_FAMILY(init); @end OF_ASSUME_NONNULL_END |
Changes to src/hid/OHWiiGameController.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHWiimote+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
18 19 20 21 22 23 24 | */ #import "OHWiimote.h" OF_ASSUME_NONNULL_BEGIN @interface OHWiimote () | | | 18 19 20 21 22 23 24 25 26 27 28 | */ #import "OHWiimote.h" OF_ASSUME_NONNULL_BEGIN @interface OHWiimote () - (instancetype)oh_init OF_METHOD_FAMILY(init); @end OF_ASSUME_NONNULL_END |
Changes to src/hid/OHWiimote.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHWiimote.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHWiimoteWithNunchuk.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHWiimoteWithNunchuk.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHXInputGameController.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
29 30 31 32 33 34 35 |
{
DWORD _index;
OFNumber *_Nullable _vendorID, *_Nullable _productID;
OHXboxGamepad *_extendedGamepad;
}
- (instancetype)oh_init OF_UNAVAILABLE;
| | < | 29 30 31 32 33 34 35 36 37 38 39 |
{
DWORD _index;
OFNumber *_Nullable _vendorID, *_Nullable _productID;
OHXboxGamepad *_extendedGamepad;
}
- (instancetype)oh_init OF_UNAVAILABLE;
- (instancetype)oh_initWithIndex: (DWORD)index OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END
|
Changes to src/hid/OHXInputGameController.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHXboxGamepad+Private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
19 20 21 22 23 24 25 | #import "OHXboxGamepad.h" OF_ASSUME_NONNULL_BEGIN @interface OHXboxGamepad () - (instancetype)oh_initWithHasGuideButton: (bool)hasGuideButton | | | 19 20 21 22 23 24 25 26 27 28 29 |
#import "OHXboxGamepad.h"
OF_ASSUME_NONNULL_BEGIN
@interface OHXboxGamepad ()
- (instancetype)oh_initWithHasGuideButton: (bool)hasGuideButton
OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END
|
Changes to src/hid/OHXboxGamepad.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/OHXboxGamepad.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/ObjFWHID.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/hid/evdev_compat.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/libbases.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/macros.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/AmigaOS/OFPlainCondition.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/AmigaOS/OFPlainMutex.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/AmigaOS/OFPlainThread.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/AmigaOS/OFString+PathAdditions.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/AmigaOS/OFTLSKey.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/GCC4.7/OFAtomic.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/GCC4/OFAtomic.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/MorphOS/OFTLSKey.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/POSIX/OFPlainCondition.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
int
OFPlainConditionTimedWait(OFPlainCondition *condition, OFPlainMutex *mutex,
OFTimeInterval timeout)
{
struct timespec ts;
ts.tv_sec = (time_t)timeout;
ts.tv_nsec = (long)((timeout - ts.tv_sec) * 1000000000);
return pthread_cond_timedwait(condition, mutex, &ts);
}
int
OFPlainConditionFree(OFPlainCondition *condition)
{
return pthread_cond_destroy(condition);
}
| > > > > > | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
int
OFPlainConditionTimedWait(OFPlainCondition *condition, OFPlainMutex *mutex,
OFTimeInterval timeout)
{
struct timespec ts;
if (clock_gettime(CLOCK_REALTIME, &ts) == -1)
return errno;
timeout += ts.tv_sec + (OFTimeInterval)ts.tv_nsec / 1000000000;
ts.tv_sec = (time_t)timeout;
ts.tv_nsec = (long)((timeout - ts.tv_sec) * 1000000000);
return pthread_cond_timedwait(condition, mutex, &ts);
}
int
OFPlainConditionFree(OFPlainCondition *condition)
{
return pthread_cond_destroy(condition);
}
|
Changes to src/platform/POSIX/OFPlainMutex.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/POSIX/OFPlainThread.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/POSIX/OFString+PathAdditions.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/POSIX/OFSubprocess.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/POSIX/OFSystemInfo+NetworkInterfaces.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/POSIX/OFTLSKey.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/PowerPC/OFAtomic.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/Windows/OFPlainCondition.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/Windows/OFPlainMutex.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/Windows/OFPlainThread.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/Windows/OFString+PathAdditions.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/Windows/OFSubprocess.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/Windows/OFSystemInfo+NetworkInterfaces.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/Windows/OFTLSKey.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/Windows/OFWin32ConsoleStdIOStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/libfat/OFString+PathAdditions.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/macOS/OFAtomic.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/platform/x86/OFAtomic.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/OFOnce.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/OFPlainMutex.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/OFTLSKey.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/ObjFWRT.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/arc.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/association.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/autorelease.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/category.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/class.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/dtable.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/exception.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | #ifdef __SEH__ # include <windows.h> #endif #if defined(__SEH__) # define PERSONALITY gnu_objc_personality #elif defined(__USING_SJLJ_EXCEPTIONS__) # define PERSONALITY __gnu_objc_personality_sj0 # define CXX_PERSONALITY_STR "__gxx_personality_sj0" # define _Unwind_RaiseException _Unwind_SjLj_RaiseException # define __builtin_eh_return_data_regno(i) (i) #else # define PERSONALITY __gnu_objc_personality_v0 | > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | #ifdef __SEH__ # include <windows.h> #endif #if defined(__SEH__) # define PERSONALITY gnu_objc_personality # define CXX_PERSONALITY_STR "__gxx_personality_seh0" #elif defined(__USING_SJLJ_EXCEPTIONS__) # define PERSONALITY __gnu_objc_personality_sj0 # define CXX_PERSONALITY_STR "__gxx_personality_sj0" # define _Unwind_RaiseException _Unwind_SjLj_RaiseException # define __builtin_eh_return_data_regno(i) (i) #else # define PERSONALITY __gnu_objc_personality_v0 |
| ︙ | ︙ | |||
233 234 235 236 237 238 239 |
_Unwind_SetIP(struct _Unwind_Context *ctx, uintptr_t value)
{
uintptr_t thumb = _Unwind_GetGR(ctx, 15) & 1;
_Unwind_SetGR(ctx, 15, (value | thumb));
}
#endif
| > > > > > > > > > > > > > > > > > > > > > > > > > > > | | 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
_Unwind_SetIP(struct _Unwind_Context *ctx, uintptr_t value)
{
uintptr_t thumb = _Unwind_GetGR(ctx, 15) & 1;
_Unwind_SetGR(ctx, 15, (value | thumb));
}
#endif
#if defined(OF_WINDOWS)
# ifdef __SEH__
static EXCEPTION_DISPOSITION (*cxx_personality)(PEXCEPTION_RECORD, void *,
PCONTEXT, PDISPATCHER_CONTEXT);
# else
static PERSONALITY_FUNC((*cxx_personality));
# endif
OF_CONSTRUCTOR()
{
/*
* This only works if the application uses libc++.dll or
* libstdc++-6.dll. There is unfortunately no other way, as Windows
* does not support proper weak linking.
*/
HMODULE module;
module = GetModuleHandle("libc++");
if (module == NULL)
module = GetModuleHandle("libstdc++-6");
if (module != NULL)
cxx_personality = (__typeof__(cxx_personality))
GetProcAddress(module, CXX_PERSONALITY_STR);
}
#elif !defined(OF_AMIGAOS_M68K)
static PERSONALITY_FUNC(cxx_personality) OF_WEAK_REF(CXX_PERSONALITY_STR);
#endif
#ifdef __SEH__
extern EXCEPTION_DISPOSITION _GCC_specific_handler(PEXCEPTION_RECORD, void *,
PCONTEXT, PDISPATCHER_CONTEXT, _Unwind_Reason_Code (*)(int, int, uint64_t,
struct _Unwind_Exception *, struct _Unwind_Context *));
|
| ︙ | ︙ | |||
611 612 613 614 615 616 617 |
struct LSDA LSDA;
uintptr_t landingpad = 0;
uint8_t found = 0;
intptr_t filter = 0;
if (foreign) {
switch (exClass) {
| | | 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 |
struct LSDA LSDA;
uintptr_t landingpad = 0;
uint8_t found = 0;
intptr_t filter = 0;
if (foreign) {
switch (exClass) {
#if !defined(__SEH__) && !defined(OF_AMIGAOS_M68K)
case GNUCCXX0_EXCEPTION_CLASS:
case CLNGCXX0_EXCEPTION_CLASS:
if (cxx_personality != NULL)
return CALL_PERSONALITY(cxx_personality);
break;
#endif
}
|
| ︙ | ︙ | |||
781 782 783 784 785 786 787 | objc_uncaught_exception_handler old = uncaughtExceptionHandler; uncaughtExceptionHandler = handler; return old; } #ifdef __SEH__ | < < < < < < < < < < < < < < < < < < < < | | | 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 |
objc_uncaught_exception_handler old = uncaughtExceptionHandler;
uncaughtExceptionHandler = handler;
return old;
}
#ifdef __SEH__
EXCEPTION_DISPOSITION
__gnu_objc_personality_seh0(PEXCEPTION_RECORD ms_exc, void *this_frame,
PCONTEXT ms_orig_context, PDISPATCHER_CONTEXT ms_disp)
{
struct _Unwind_Exception *ex =
(struct _Unwind_Exception *)ms_exc->ExceptionInformation[0];
switch (ex->class) {
case GNUCCXX0_EXCEPTION_CLASS:
case CLNGCXX0_EXCEPTION_CLASS:
if (cxx_personality != NULL)
return cxx_personality(ms_exc, this_frame,
ms_orig_context, ms_disp);
}
return _GCC_specific_handler(ms_exc, this_frame, ms_orig_context,
ms_disp, PERSONALITY);
}
#endif
|
Changes to src/runtime/hashtable.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/init.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/instance.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/ivar.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-amd64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-amd64-macho.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-amd64-win64.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-arm-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-arm64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-arm64-win64.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-loongarch64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-mips-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-mips64-n64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-powerpc-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-powerpc64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-riscv64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-sparc-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-sparc64-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-x86-elf.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm-x86-win32.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup-asm/lookup-asm.S.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/lookup.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/method.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/misc.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/private.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/property.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/protocol.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/selector.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/sparsearray.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/static-instances.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/synchronized.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/tagged-pointer.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/threading.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/runtime/versioninfo.rc.
| ︙ | ︙ | |||
10 11 12 13 14 15 16 |
BLOCK "StringFileInfo" {
BLOCK "040904E4" {
VALUE "ProductName", "ObjFW Runtime"
VALUE "ProductVersion", PACKAGE_VERSION
VALUE "FileVersion", OBJFWRT_LIB_VERSION
VALUE "FileDescription", "Objective-C runtime"
VALUE "LegalCopyright",
| | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
BLOCK "StringFileInfo" {
BLOCK "040904E4" {
VALUE "ProductName", "ObjFW Runtime"
VALUE "ProductVersion", PACKAGE_VERSION
VALUE "FileVersion", OBJFWRT_LIB_VERSION
VALUE "FileDescription", "Objective-C runtime"
VALUE "LegalCopyright",
"(c) 2008-2025 Jonathan Schleifer"
VALUE "InternalName", "ObjFWRT"
VALUE "OriginalFilename", OBJFWRT_SHARED_LIB
}
}
BLOCK "VarFileInfo" {
|
| ︙ | ︙ |
Changes to src/test/OTAppDelegate.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/test/OTAssert.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/test/OTAssert.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/test/OTAssertionFailedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/test/OTAssertionFailedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/test/OTOrderedDictionary.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/test/OTOrderedDictionary.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/test/OTTestCase.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/test/OTTestCase.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/test/OTTestSkippedException.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/test/OTTestSkippedException.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/test/ObjFWTest.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/tls/OFGnuTLSTLSStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/tls/OFGnuTLSTLSStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/tls/OFMbedTLSTLSStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/tls/OFMbedTLSTLSStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
OFReadyForWritingObserving> *)stream
{
self = [super initWithStream: stream];
@try {
_underlyingStream.delegate = self;
mbedtls_x509_crt_init(&_CAChain);
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
- (void)dealloc
{
if (_initialized)
[self close];
[_host release];
mbedtls_x509_crt_free(&_CAChain);
[super dealloc];
}
- (void)close
{
if (!_initialized)
@throw [OFNotOpenException exceptionWithObject: self];
if (_handshakeDone)
mbedtls_ssl_close_notify(&_SSL);
mbedtls_ssl_free(&_SSL);
| > > < | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
OFReadyForWritingObserving> *)stream
{
self = [super initWithStream: stream];
@try {
_underlyingStream.delegate = self;
mbedtls_ssl_config_init(&_config);
mbedtls_x509_crt_init(&_CAChain);
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
- (void)dealloc
{
if (_initialized)
[self close];
[_host release];
mbedtls_ssl_config_free(&_config);
mbedtls_x509_crt_free(&_CAChain);
[super dealloc];
}
- (void)close
{
if (!_initialized)
@throw [OFNotOpenException exceptionWithObject: self];
if (_handshakeDone)
mbedtls_ssl_close_notify(&_SSL);
mbedtls_ssl_free(&_SSL);
_initialized = _handshakeDone = false;
[_host release];
_host = nil;
[super close];
}
|
| ︙ | ︙ | |||
249 250 251 252 253 254 255 256 257 258 259 260 261 262 | host: host errorCode: initFailedErrorCode]; } mbedtls_ssl_conf_ca_chain(&_config, &_CAChain, NULL); mbedtls_ssl_init(&_SSL); if (mbedtls_ssl_setup(&_SSL, &_config) != 0) @throw [OFTLSHandshakeFailedException exceptionWithStream: self host: host errorCode: initFailedErrorCode]; mbedtls_ssl_set_bio(&_SSL, self, writeFunc, readFunc, NULL); | > > | 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | host: host errorCode: initFailedErrorCode]; } mbedtls_ssl_conf_ca_chain(&_config, &_CAChain, NULL); mbedtls_ssl_init(&_SSL); _initialized = true; if (mbedtls_ssl_setup(&_SSL, &_config) != 0) @throw [OFTLSHandshakeFailedException exceptionWithStream: self host: host errorCode: initFailedErrorCode]; mbedtls_ssl_set_bio(&_SSL, self, writeFunc, readFunc, NULL); |
| ︙ | ︙ |
Changes to src/tls/OFOpenSSLTLSStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/tls/OFOpenSSLTLSStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
88 89 90 91 92 93 94 |
}
- (void)close
{
if (_SSL == NULL)
@throw [OFNotOpenException exceptionWithObject: self];
| | > > > > > > > > > > | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
}
- (void)close
{
if (_SSL == NULL)
@throw [OFNotOpenException exceptionWithObject: self];
if (_handshakeDone) {
SSL_shutdown(_SSL);
while (BIO_ctrl_pending(_writeBIO) > 0) {
int tmp = BIO_read(_writeBIO, _buffer, bufferSize);
OFEnsure(tmp >= 0);
[_underlyingStream writeBuffer: _buffer length: tmp];
[_underlyingStream flushWriteBuffer];
}
}
SSL_free(_SSL);
_SSL = NULL;
_handshakeDone = false;
[_host release];
|
| ︙ | ︙ | |||
284 285 286 287 288 289 290 |
}
if (status == 1)
_handshakeDone = true;
else {
switch (SSL_get_error(_SSL, status)) {
case SSL_ERROR_WANT_READ:
| > | > | | | | | > > > > > > > | 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 |
}
if (status == 1)
_handshakeDone = true;
else {
switch (SSL_get_error(_SSL, status)) {
case SSL_ERROR_WANT_READ:
if (!_underlyingStream.atEndOfStream) {
[_underlyingStream
asyncReadIntoBuffer: _buffer
length: bufferSize
runLoopMode: runLoopMode];
[_delegate retain];
objc_autoreleasePoolPop(pool);
return;
}
exception = [OFTLSHandshakeFailedException
exceptionWithStream: self
host: host
errorCode: OFTLSStreamErrorCodeUnknown];
break;
case SSL_ERROR_WANT_WRITE:
[_underlyingStream asyncWriteData: [OFData data]
runLoopMode: runLoopMode];
[_delegate retain];
objc_autoreleasePoolPop(pool);
return;
default:
|
| ︙ | ︙ | |||
345 346 347 348 349 350 351 |
}
if (status == 1)
_handshakeDone = true;
else {
switch (SSL_get_error(_SSL, status)) {
case SSL_ERROR_WANT_READ:
| > | > > > > > > | 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 |
}
if (status == 1)
_handshakeDone = true;
else {
switch (SSL_get_error(_SSL, status)) {
case SSL_ERROR_WANT_READ:
if (!_underlyingStream.atEndOfStream)
return true;
exception = [OFTLSHandshakeFailedException
exceptionWithStream: self
host: _host
errorCode: unknownErrorCode];
break;
case SSL_ERROR_WANT_WRITE:;
OFRunLoopMode runLoopMode =
[OFRunLoop currentRunLoop].currentMode;
[_underlyingStream asyncWriteData: [OFData data]
runLoopMode: runLoopMode];
return false;
default:
|
| ︙ | ︙ |
Changes to src/tls/OFSecureTransportTLSStream.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/tls/OFSecureTransportTLSStream.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
30 31 32 33 34 35 36 37 38 39 40 |
#import "OFWriteFailedException.h"
int _ObjFWTLS_reference;
static OSStatus
readFunc(SSLConnectionRef connection, void *data, size_t *dataLength)
{
bool incomplete;
size_t length;
@try {
| > > < | | > > > | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
#import "OFWriteFailedException.h"
int _ObjFWTLS_reference;
static OSStatus
readFunc(SSLConnectionRef connection, void *data, size_t *dataLength)
{
OFStream *underlyingStream =
((OFTLSStream *)connection).underlyingStream;
bool incomplete;
size_t length;
@try {
length = [underlyingStream readIntoBuffer: data
length: *dataLength];
} @catch (OFReadFailedException *e) {
if (e.errNo == EWOULDBLOCK || e.errNo == EAGAIN) {
*dataLength = 0;
return errSSLWouldBlock;
}
@throw e;
}
if (length == 0 && underlyingStream.atEndOfStream)
return errSSLClosedAbort;
incomplete = (length < *dataLength);
*dataLength = length;
return (incomplete ? errSSLWouldBlock : noErr);
}
|
| ︙ | ︙ |
Changes to src/tls/ObjFWTLS.h.
1 | /* | | > | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
/*
* Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im>
*
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 3.0 only,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* version 3.0 for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* version 3.0 along with this program. If not, see
* <https://www.gnu.org/licenses/>.
*/
#ifdef OBJFWTLS_LOCAL_INCLUDES
# import "macros.h"
#else
# if defined(__has_feature) && __has_feature(modules)
@import ObjFW;
# else
# import <ObjFW/macros.h>
# endif
#endif
#ifdef __cplusplus
extern "C" {
#endif
extern int _ObjFWTLS_reference;
#ifdef __cplusplus
}
#endif
|
Changes to src/unicode.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/unicode.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/unistd_wrapper.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to src/versioninfo.rc.
| ︙ | ︙ | |||
10 11 12 13 14 15 16 |
BLOCK "StringFileInfo" {
BLOCK "040904E4" {
VALUE "ProductName", "ObjFW"
VALUE "ProductVersion", PACKAGE_VERSION
VALUE "FileVersion", OBJFW_LIB_VERSION
VALUE "FileDescription", "Objective-C framework"
VALUE "LegalCopyright",
| | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
BLOCK "StringFileInfo" {
BLOCK "040904E4" {
VALUE "ProductName", "ObjFW"
VALUE "ProductVersion", PACKAGE_VERSION
VALUE "FileVersion", OBJFW_LIB_VERSION
VALUE "FileDescription", "Objective-C framework"
VALUE "LegalCopyright",
"(c) 2008-2025 Jonathan Schleifer"
VALUE "InternalName", "ObjFW"
VALUE "OriginalFilename", OBJFW_SHARED_LIB
}
}
BLOCK "VarFileInfo" {
|
| ︙ | ︙ |
Changes to tests/ForwardingTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/ImportTest.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/Makefile.
| ︙ | ︙ | |||
244 245 246 247 248 249 250 |
${PROG_NOINST}.arm9: ${PROG_NOINST}
arm-none-eabi-objcopy -O binary $< $@
${PROG_NOINST}.nds: ${PROG_NOINST}.arm9 testfile.txt
rm -fr nds-data
mkdir -p nds-data
cp testfile.txt nds-data
| | | 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
${PROG_NOINST}.arm9: ${PROG_NOINST}
arm-none-eabi-objcopy -O binary $< $@
${PROG_NOINST}.nds: ${PROG_NOINST}.arm9 testfile.txt
rm -fr nds-data
mkdir -p nds-data
cp testfile.txt nds-data
ndstool -c $@ -7 ${DEVKITPRO}/calico/bin/ds7_maine.elf -9 ${PROG_NOINST} -d nds-data
rm -fr nds-data
${PROG_NOINST}.nro: ${PROG_NOINST} testfile.txt
rm -fr romfs
mkdir -p romfs
cp testfile.txt romfs
nacptool --create "ObjFW tests" "Jonathan Schleifer" \
|
| ︙ | ︙ |
Changes to tests/OFArrayTests.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFArrayTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFBlockTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFCharacterSetTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFColorTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFConcreteArrayTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFConcreteDictionaryTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFConcreteMutableArrayTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFConcreteMutableDictionaryTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFConcreteMutableSetTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFConcreteSetTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFCryptographicHashTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFDDPSocketTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFDNSResolverTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFDataTests.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFDataTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFDateTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFDictionaryTests.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFDictionaryTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFFileManagerTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
#include "config.h"
#include <errno.h>
#import "ObjFW.h"
#import "ObjFWTest.h"
@interface OFFileManagerTests: OTTestCase
{
OFFileManager *_fileManager;
OFIRI *_testsDirectoryIRI, *_testFileIRI;
}
@end
@implementation OFFileManagerTests
- (void)setUp
{
_fileManager = [[OFFileManager defaultManager] retain];
_testsDirectoryIRI = [[[OFSystemInfo temporaryDirectoryIRI]
IRIByAppendingPathComponent: @"objfw-tests"] retain];
_testFileIRI = [[_testsDirectoryIRI
IRIByAppendingPathComponent: @"test.txt"] retain];
/* In case a previous test run failed and left things. */
if ([_fileManager directoryExistsAtIRI: _testsDirectoryIRI])
[_fileManager removeItemAtIRI: _testsDirectoryIRI];
[_fileManager createDirectoryAtIRI: _testsDirectoryIRI];
[@"test" writeToIRI: _testFileIRI];
}
- (void)tearDown
{
| > > > > > > > > | | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
#include "config.h"
#include <errno.h>
#import "ObjFW.h"
#import "ObjFWTest.h"
#ifdef OF_HAIKU
# include <TypeConstants.h>
#endif
@interface OFFileManagerTests: OTTestCase
{
OFFileManager *_fileManager;
OFIRI *_testsDirectoryIRI, *_testFileIRI;
}
@end
@implementation OFFileManagerTests
- (void)setUp
{
_fileManager = [[OFFileManager defaultManager] retain];
_testsDirectoryIRI = [[[OFSystemInfo temporaryDirectoryIRI]
IRIByAppendingPathComponent: @"objfw-tests"] retain];
OTAssertNotNil(_testsDirectoryIRI);
_testFileIRI = [[_testsDirectoryIRI
IRIByAppendingPathComponent: @"test.txt"] retain];
/* In case a previous test run failed and left things. */
if ([_fileManager directoryExistsAtIRI: _testsDirectoryIRI])
[_fileManager removeItemAtIRI: _testsDirectoryIRI];
[_fileManager createDirectoryAtIRI: _testsDirectoryIRI];
[@"test" writeToIRI: _testFileIRI];
}
- (void)tearDown
{
if (_testsDirectoryIRI != nil)
[_fileManager removeItemAtIRI: _testsDirectoryIRI];
}
- (void)dealloc
{
[_fileManager release];
[_testsDirectoryIRI release];
[_testFileIRI release];
|
| ︙ | ︙ | |||
86 87 88 89 90 91 92 |
{
OFDate *date = [OFDate dateWithTimeIntervalSince1970: 946681200];
OFFileAttributes attributes;
attributes = [OFDictionary
dictionaryWithObject: date
forKey: OFFileModificationDate];
| > > | | > > > > > > | 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
{
OFDate *date = [OFDate dateWithTimeIntervalSince1970: 946681200];
OFFileAttributes attributes;
attributes = [OFDictionary
dictionaryWithObject: date
forKey: OFFileModificationDate];
@try {
[_fileManager
setAttributes: attributes
ofItemAtPath: _testFileIRI.fileSystemRepresentation];
} @catch (OFSetItemAttributesFailedException *e) {
if (e.errNo == ENOSYS)
OTSkip(@"Setting modification time not supported");
@throw e;
}
attributes = [_fileManager attributesOfItemAtPath:
_testFileIRI.fileSystemRepresentation];
OTAssertEqual(attributes.fileType, OFFileTypeRegular);
OTAssertEqual(attributes.fileSize, 4);
OTAssertEqualObjects(attributes.fileModificationDate, date);
}
|
| ︙ | ︙ |
Changes to tests/OFHMACTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFHTTPClientTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFHTTPCookieManagerTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFHTTPCookieTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFINIFileTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
115 116 117 118 119 120 121 122 123 124 125 126 127 128 | @"global=yes\r\n" @"\r\n" @"[tests]\r\n" @"foo=baz\r\n" @"foobar=baz\r\n" @";comment\r\n" @"new=new\r\n" @"\r\n" @"[foobar]\r\n" @"#foobarcomment\r\n" @"qux=\" asd\"\r\n" @"quxquxqux=\"hello\\\"wörld\"\r\n" @"qux2=\"a\\n\"\r\n" @"\"asd=asd\"=foobar\r\n" | > | 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | @"global=yes\r\n" @"\r\n" @"[tests]\r\n" @"foo=baz\r\n" @"foobar=baz\r\n" @";comment\r\n" @"new=new\r\n" @"\"#quoted\"=\";comment\"\r\n" @"\r\n" @"[foobar]\r\n" @"#foobarcomment\r\n" @"qux=\" asd\"\r\n" @"quxquxqux=\"hello\\\"wörld\"\r\n" @"qux2=\"a\\n\"\r\n" @"\"asd=asd\"=foobar\r\n" |
| ︙ | ︙ | |||
141 142 143 144 145 146 147 148 149 150 151 152 153 154 | OFArray *array = [OFArray arrayWithObjects: @"foo", @"bar", nil]; #if defined(OF_HAVE_FILES) && !defined(OF_NINTENDO_DS) OFIRI *writeIRI; #endif [tests setStringValue: @"baz" forKey: @"foo"]; [tests setStringValue: @"new" forKey: @"new"]; [foobar setStringValue: @"a\fb" forKey: @"qux3"]; [types setLongLongValue: 0x10 forKey: @"integer"]; [types setBoolValue: false forKey: @"bool"]; [types setFloatValue: 0.25f forKey: @"float"]; [types setDoubleValue: 0.75 forKey: @"double"]; [types setArrayValue: array forKey: @"array1"]; | > | 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | OFArray *array = [OFArray arrayWithObjects: @"foo", @"bar", nil]; #if defined(OF_HAVE_FILES) && !defined(OF_NINTENDO_DS) OFIRI *writeIRI; #endif [tests setStringValue: @"baz" forKey: @"foo"]; [tests setStringValue: @"new" forKey: @"new"]; [tests setStringValue: @";comment" forKey: @"#quoted"]; [foobar setStringValue: @"a\fb" forKey: @"qux3"]; [types setLongLongValue: 0x10 forKey: @"integer"]; [types setBoolValue: false forKey: @"bool"]; [types setFloatValue: 0.25f forKey: @"float"]; [types setDoubleValue: 0.75 forKey: @"double"]; [types setArrayValue: array forKey: @"array1"]; |
| ︙ | ︙ |
Changes to tests/OFIPXSocketTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFIRITests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFInvocationTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFJSONTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFKernelEventObserverTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFLHAArchiveTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFListTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFLocaleTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMatrix4x4Tests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMemoryStreamTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMessagePackTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMethodSignatureTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMutableArrayTests.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMutableArrayTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMutableDataTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMutableDictionaryTests.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMutableDictionaryTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMutableSetTests.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMutableSetTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMutableStringTests.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMutableStringTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFMutableUTF8StringTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFNotificationCenterTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFNumberTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFObjectTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFPBKDF2Tests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFPluginTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFPropertyListTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFSCTPSocketTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFSPXSocketTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFSPXStreamSocketTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFScryptTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFSetTests.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFSetTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFSocketTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFStreamTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFStringTests.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFStringTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
745 746 747 748 749 750 751 752 753 754 755 756 757 758 |
@"\r\n0123"] longLongValueWithBase: 0], 0123);
OTAssertEqual([[self.stringClass stringWithString:
@"765\t"] longLongValueWithBase: 8], 0765);
OTAssertEqual([[self.stringClass stringWithString:
@"\t\t\r\n"] longLongValueWithBase: 8], 0);
}
- (void)testLongLongValueThrowsOnInvalidFormat
{
OTAssertThrowsSpecific(
[[self.stringClass stringWithString: @"abc"] longLongValue],
OFInvalidFormatException);
| > > > > | 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 |
@"\r\n0123"] longLongValueWithBase: 0], 0123);
OTAssertEqual([[self.stringClass stringWithString:
@"765\t"] longLongValueWithBase: 8], 0765);
OTAssertEqual([[self.stringClass stringWithString:
@"\t\t\r\n"] longLongValueWithBase: 8], 0);
OTAssertEqual([[self.stringClass stringWithString:
([OFString stringWithFormat: @"%lld", LLONG_MIN])] longLongValue],
LLONG_MIN);
}
- (void)testLongLongValueThrowsOnInvalidFormat
{
OTAssertThrowsSpecific(
[[self.stringClass stringWithString: @"abc"] longLongValue],
OFInvalidFormatException);
|
| ︙ | ︙ | |||
1385 1386 1387 1388 1389 1390 1391 | OTAssertEqualObjects([[self.stringClass stringWithString: @"foo//"] pathComponents], ([OFArray arrayWithObjects: @"foo", @"/", nil])); OTAssertEqualObjects([[self.stringClass stringWithString: @""] pathComponents], [OFArray array]); | | | | 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 |
OTAssertEqualObjects([[self.stringClass stringWithString:
@"foo//"] pathComponents],
([OFArray arrayWithObjects: @"foo", @"/", nil]));
OTAssertEqualObjects([[self.stringClass stringWithString: @""]
pathComponents], [OFArray array]);
# elif defined(OF_NINTENDO_DS) || defined(OF_NINTENDO_3DS) || \
defined(OF_WII) || defined(OF_NINTENDO_SWITCH)
OTAssertEqualObjects([[self.stringClass stringWithString:
@"sdmc:/tmp"] pathComponents],
([OFArray arrayWithObjects: @"sdmc:", @"tmp", nil]));
OTAssertEqualObjects([[self.stringClass stringWithString:
@"sdmc:/"] pathComponents], [OFArray arrayWithObject: @"sdmc:"]);
|
| ︙ | ︙ | |||
1561 1562 1563 1564 1565 1566 1567 | @"dh0:/"] stringByDeletingLastPathComponent], @"dh0:"); OTAssertEqualObjects([[self.stringClass stringWithString: @"dh0:tmp/foo/"] stringByDeletingLastPathComponent], @"dh0:tmp"); OTAssertEqualObjects([[self.stringClass stringWithString: @"foo/bar"] stringByDeletingLastPathComponent], @"foo"); OTAssertEqualObjects([[self.stringClass stringWithString: @"foo"] stringByDeletingLastPathComponent], @""); | | | | 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 |
@"dh0:/"] stringByDeletingLastPathComponent], @"dh0:");
OTAssertEqualObjects([[self.stringClass stringWithString:
@"dh0:tmp/foo/"] stringByDeletingLastPathComponent], @"dh0:tmp");
OTAssertEqualObjects([[self.stringClass stringWithString:
@"foo/bar"] stringByDeletingLastPathComponent], @"foo");
OTAssertEqualObjects([[self.stringClass stringWithString:
@"foo"] stringByDeletingLastPathComponent], @"");
# elif defined(OF_NINTENDO_DS) || defined(OF_NINTENDO_3DS) || \
defined(OF_WII) || defined(OF_NINTENDO_SWITCH)
OTAssertEqualObjects([[self.stringClass stringWithString:
@"/tmp/"] stringByDeletingLastPathComponent], @"");
OTAssertEqualObjects([[self.stringClass stringWithString:
@"sdmc:/tmp/foo/"] stringByDeletingLastPathComponent],
@"sdmc:/tmp");
OTAssertEqualObjects([[self.stringClass stringWithString:
@"sdmc:/"] stringByDeletingLastPathComponent], @"sdmc:/");
|
| ︙ | ︙ |
Changes to tests/OFSubprocessTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFSystemInfoTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFTCPSocketTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFTarArchiveTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFThreadTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFUDPSocketTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFUNIXDatagramSocketTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
36 37 38 39 40 41 42 43 44 45 46 47 48 49 | OFSocketAddress address1, address2; char buffer[5]; #if defined(OF_HAVE_FILES) && !defined(OF_IOS) path = [[OFSystemInfo temporaryDirectoryIRI] IRIByAppendingPathComponent: [[OFUUID UUID] UUIDString]] .fileSystemRepresentation; #else /* * We can have sockets, including UNIX sockets, while file support is * disabled. * * We also use this code path for iOS, as the temporaryDirectoryIRI is * too long on the iOS simulator. | > | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | OFSocketAddress address1, address2; char buffer[5]; #if defined(OF_HAVE_FILES) && !defined(OF_IOS) path = [[OFSystemInfo temporaryDirectoryIRI] IRIByAppendingPathComponent: [[OFUUID UUID] UUIDString]] .fileSystemRepresentation; OTAssertNotNil(path); #else /* * We can have sockets, including UNIX sockets, while file support is * disabled. * * We also use this code path for iOS, as the temporaryDirectoryIRI is * too long on the iOS simulator. |
| ︙ | ︙ |
Changes to tests/OFUNIXSequencedPacketSocketTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | OFUNIXSequencedPacketSocket *sockClient, *sockServer, *sockAccepted; char buffer[5]; #if defined(OF_HAVE_FILES) && !defined(OF_IOS) path = [[OFSystemInfo temporaryDirectoryIRI] IRIByAppendingPathComponent: [[OFUUID UUID] UUIDString]] .fileSystemRepresentation; #else /* * We can have sockets, including UNIX sockets, while file support is * disabled. * * We also use this code path for iOS, as the temporaryDirectory:RI is * too long on the iOS simulator. | > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | OFUNIXSequencedPacketSocket *sockClient, *sockServer, *sockAccepted; char buffer[5]; #if defined(OF_HAVE_FILES) && !defined(OF_IOS) path = [[OFSystemInfo temporaryDirectoryIRI] IRIByAppendingPathComponent: [[OFUUID UUID] UUIDString]] .fileSystemRepresentation; OTAssertNotNil(path); #else /* * We can have sockets, including UNIX sockets, while file support is * disabled. * * We also use this code path for iOS, as the temporaryDirectory:RI is * too long on the iOS simulator. |
| ︙ | ︙ |
Changes to tests/OFUNIXStreamSocketTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | OFUNIXStreamSocket *sockClient, *sockServer, *sockAccepted; char buffer[5]; #if defined(OF_HAVE_FILES) && !defined(OF_IOS) path = [[OFSystemInfo temporaryDirectoryIRI] IRIByAppendingPathComponent: [[OFUUID UUID] UUIDString]] .fileSystemRepresentation; #else /* * We can have sockets, including UNIX sockets, while file support is * disabled. * * We also use this code path for iOS, as the temporaryDirectory:RI is * too long on the iOS simulator. | > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | OFUNIXStreamSocket *sockClient, *sockServer, *sockAccepted; char buffer[5]; #if defined(OF_HAVE_FILES) && !defined(OF_IOS) path = [[OFSystemInfo temporaryDirectoryIRI] IRIByAppendingPathComponent: [[OFUUID UUID] UUIDString]] .fileSystemRepresentation; OTAssertNotNil(path); #else /* * We can have sockets, including UNIX sockets, while file support is * disabled. * * We also use this code path for iOS, as the temporaryDirectory:RI is * too long on the iOS simulator. |
| ︙ | ︙ |
Changes to tests/OFUTF8StringTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFValueTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFWindowsRegistryKeyTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFXMLElementBuilderTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFXMLNodeTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFXMLParserTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFZIPArchiveTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/OFZooArchiveTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/RuntimeARCTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/RuntimeTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/gamecontroller/GameControllerTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/gamecontroller/Makefile.
| ︙ | ︙ | |||
105 106 107 108 109 110 111 |
${PROG_NOINST}.3dsx: ${PROG_NOINST}
3dsxtool $< $@
${PROG_NOINST}.arm9: ${PROG_NOINST}
arm-none-eabi-objcopy -O binary $< $@
${PROG_NOINST}.nds: ${PROG_NOINST}.arm9
| | | 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
${PROG_NOINST}.3dsx: ${PROG_NOINST}
3dsxtool $< $@
${PROG_NOINST}.arm9: ${PROG_NOINST}
arm-none-eabi-objcopy -O binary $< $@
${PROG_NOINST}.nds: ${PROG_NOINST}.arm9
ndstool -c $@ -7 ${DEVKITPRO}/calico/bin/ds7_maine.elf -9 ${PROG_NOINST}
${PROG_NOINST}.nro: ${PROG_NOINST}
elf2nro ${PROG_NOINST} $@
CPPFLAGS += -I../../src \
-I../../src/exceptions \
-I../../src/hid \
|
| ︙ | ︙ |
Changes to tests/objc_sync/test.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/plugin/TestPlugin.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/plugin/TestPlugin.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/subprocess/Subprocess.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to tests/terminal/TerminalTests.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/objfw-compile.
1 2 | #!/bin/sh # | | | 1 2 3 4 5 6 7 8 9 10 | #!/bin/sh # # Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> # # All rights reserved. # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License version 3.0 only, # as published by the Free Software Foundation. # |
| ︙ | ︙ |
Changes to utils/objfw-compile.1.
1 | .\" | | | 1 2 3 4 5 6 7 8 9 | .\" .\" Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> .\" .\" All rights reserved. .\" .\" This program is free software: you can redistribute it and/or modify it .\" under the terms of the GNU Lesser General Public License version 3.0 only, .\" as published by the Free Software Foundation. .\" |
| ︙ | ︙ |
Changes to utils/objfw-config.1.
1 | .\" | | | 1 2 3 4 5 6 7 8 9 | .\" .\" Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> .\" .\" All rights reserved. .\" .\" This program is free software: you can redistribute it and/or modify it .\" under the terms of the GNU Lesser General Public License version 3.0 only, .\" as published by the Free Software Foundation. .\" |
| ︙ | ︙ |
Changes to utils/objfw-config.in.
1 2 | #!/bin/sh # | | | 1 2 3 4 5 6 7 8 9 10 | #!/bin/sh # # Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> # # All rights reserved. # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License version 3.0 only, # as published by the Free Software Foundation. # |
| ︙ | ︙ | |||
37 38 39 40 41 42 43 | LIBS="-lobjfw @RUNTIME_LIBS@ @OBJFW_LIBS@" FRAMEWORK_LIBS="-framework ObjFW" FRAMEWORK_LIBS="$FRAMEWORK_LIBS @RUNTIME_FRAMEWORK_LIBS@ @OBJFW_LIBS@" PLUGIN_CFLAGS="@PLUGIN_CFLAGS@" PLUGIN_LDFLAGS="@PLUGIN_LDFLAGS@" PLUGIN_SUFFIX="@PLUGIN_SUFFIX@" PROG_SUFFIX="@EXEEXT@" | | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
LIBS="-lobjfw @RUNTIME_LIBS@ @OBJFW_LIBS@"
FRAMEWORK_LIBS="-framework ObjFW"
FRAMEWORK_LIBS="$FRAMEWORK_LIBS @RUNTIME_FRAMEWORK_LIBS@ @OBJFW_LIBS@"
PLUGIN_CFLAGS="@PLUGIN_CFLAGS@"
PLUGIN_LDFLAGS="@PLUGIN_LDFLAGS@"
PLUGIN_SUFFIX="@PLUGIN_SUFFIX@"
PROG_SUFFIX="@EXEEXT@"
STATIC_LIBS="${libdir}/libobjfw.a @RUNTIME_STATIC_LIBS@ @OBJFW_LIBS@"
VERSION="@PACKAGE_VERSION@"
show_help() {
cat >&2 <<__EOF__
objfw-config: Available arguments are:
--all Outputs all flags + libs
|
| ︙ | ︙ |
Changes to utils/objfw-embed.
1 2 | #!/bin/sh # | | | 1 2 3 4 5 6 7 8 9 10 | #!/bin/sh # # Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> # # All rights reserved. # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License version 3.0 only, # as published by the Free Software Foundation. # |
| ︙ | ︙ | |||
28 29 30 31 32 33 34 | cat <<EOF #include <stddef.h> #include <stdint.h> #ifdef OF_COMPILING_OBJFW # import "OFEmbeddedIRIHandler.h" #else | > > > | > | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
cat <<EOF
#include <stddef.h>
#include <stdint.h>
#ifdef OF_COMPILING_OBJFW
# import "OFEmbeddedIRIHandler.h"
#else
# if defined(__has_feature) && __has_feature(modules)
@import ObjFW;
# else
# import <ObjFW/OFEmbeddedIRIHandler.h>
# endif
#endif
static const uint8_t bytes[] = {
EOF
od -vtx1 "$1" | cut -d' ' -sf2- | \
sed '/^ *$/d;s/^ *//;s/ *$//;s/ */ /g;s/^/0x/;s/ /, 0x/g;s/$/,/'
cat <<EOF
|
| ︙ | ︙ |
Changes to utils/objfw-embed.1.
1 | .\" | | | 1 2 3 4 5 6 7 8 9 | .\" .\" Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> .\" .\" All rights reserved. .\" .\" This program is free software: you can redistribute it and/or modify it .\" under the terms of the GNU Lesser General Public License version 3.0 only, .\" as published by the Free Software Foundation. .\" |
| ︙ | ︙ |
Changes to utils/objfw-new/NewApp.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/objfw-new/NewClass.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/objfw-new/NewTest.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/objfw-new/ObjFWNew.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/objfw-new/Property.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/objfw-new/Property.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/objfw-new/objfw-new.1.
1 | .\" | | | 1 2 3 4 5 6 7 8 9 | .\" .\" Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> .\" .\" All rights reserved. .\" .\" This program is free software: you can redistribute it and/or modify it .\" under the terms of the GNU Lesser General Public License version 3.0 only, .\" as published by the Free Software Foundation. .\" |
| ︙ | ︙ |
Changes to utils/ofarc/Archive.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/ofarc/GZIPArchive.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/ofarc/GZIPArchive.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
#import "OFArc.h"
static OFArc *app;
static void
setPermissions(OFString *destination, OFIRI *source)
{
#ifdef OF_FILE_MANAGER_SUPPORTS_PERMISSIONS
OFFileManager *fileManager = [OFFileManager defaultManager];
OFFileAttributes attributes = [fileManager
attributesOfItemAtIRI: source];
OFFileAttributeKey key = OFFilePOSIXPermissions;
OFFileAttributes destinationAttributes = [OFDictionary
dictionaryWithObject: [attributes objectForKey: key]
forKey: key];
[fileManager setAttributes: destinationAttributes
ofItemAtPath: destination];
#endif
| > > < < | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
#import "OFArc.h"
static OFArc *app;
static void
setPermissions(OFString *destination, OFIRI *source)
{
[app quarantineFile: destination];
#ifdef OF_FILE_MANAGER_SUPPORTS_PERMISSIONS
OFFileManager *fileManager = [OFFileManager defaultManager];
OFFileAttributes attributes = [fileManager
attributesOfItemAtIRI: source];
OFFileAttributeKey key = OFFilePOSIXPermissions;
OFFileAttributes destinationAttributes = [OFDictionary
dictionaryWithObject: [attributes objectForKey: key]
forKey: key];
[fileManager setAttributes: destinationAttributes
ofItemAtPath: destination];
#endif
}
static void
setModificationDate(OFString *path, OFGZIPStream *stream)
{
OFDate *modificationDate = stream.modificationDate;
OFFileAttributes attributes;
|
| ︙ | ︙ |
Changes to utils/ofarc/LHAArchive.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/ofarc/LHAArchive.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
return [string stringByReplacingOccurrencesOfString: @"\n"
withString: @"\n\t"];
}
static void
setPermissions(OFString *path, OFLHAArchiveEntry *entry)
{
#ifdef OF_FILE_MANAGER_SUPPORTS_PERMISSIONS
OFNumber *POSIXPermissions = entry.POSIXPermissions;
if (POSIXPermissions != nil) {
OFFileAttributes attributes;
POSIXPermissions = [OFNumber numberWithUnsignedShort:
POSIXPermissions.unsignedShortValue & 0777];
attributes = [OFDictionary
dictionaryWithObject: POSIXPermissions
forKey: OFFilePOSIXPermissions];
[[OFFileManager defaultManager] setAttributes: attributes
ofItemAtPath: path];
}
#endif
| > > < < | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
return [string stringByReplacingOccurrencesOfString: @"\n"
withString: @"\n\t"];
}
static void
setPermissions(OFString *path, OFLHAArchiveEntry *entry)
{
[app quarantineFile: path];
#ifdef OF_FILE_MANAGER_SUPPORTS_PERMISSIONS
OFNumber *POSIXPermissions = entry.POSIXPermissions;
if (POSIXPermissions != nil) {
OFFileAttributes attributes;
POSIXPermissions = [OFNumber numberWithUnsignedShort:
POSIXPermissions.unsignedShortValue & 0777];
attributes = [OFDictionary
dictionaryWithObject: POSIXPermissions
forKey: OFFilePOSIXPermissions];
[[OFFileManager defaultManager] setAttributes: attributes
ofItemAtPath: path];
}
#endif
}
static void
setModificationDate(OFString *path, OFLHAArchiveEntry *entry)
{
OFFileAttributes attributes = [OFDictionary
dictionaryWithObject: entry.modificationDate
|
| ︙ | ︙ |
Changes to utils/ofarc/Makefile.
| ︙ | ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
PACKAGE_NAME = ofarc
${PROG}: ${LIBOBJFW_DEP_LVL2} ${LIBOBJFWRT_DEP_LVL2}
CPPFLAGS += -I../../src \
-I../../src/runtime \
-I../../src/exceptions \
-I../.. \
-DLOCALIZATION_DIR=\"${datadir}/ofarc/localization\"
LIBS := -L../../src -L../../src/tls ${OFHTTP_LIBS} -lobjfw \
-L../../src/runtime ${RUNTIME_LIBS} \
${LIBS}
LD = ${OBJC}
LDFLAGS += ${LDFLAGS_RPATH}
| > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
PACKAGE_NAME = ofarc
${PROG}: ${LIBOBJFW_DEP_LVL2} ${LIBOBJFWRT_DEP_LVL2}
CPPFLAGS += -I../../src \
-I../../src/runtime \
-I../../src/exceptions \
-I../../src/tls \
-I../.. \
-DOBJFWTLS_LOCAL_INCLUDES \
-DLOCALIZATION_DIR=\"${datadir}/ofarc/localization\"
LIBS := -L../../src -L../../src/tls ${OFHTTP_LIBS} -lobjfw \
-L../../src/runtime ${RUNTIME_LIBS} \
${LIBS}
LD = ${OBJC}
LDFLAGS += ${LDFLAGS_RPATH}
|
Changes to utils/ofarc/OFArc.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/ofarc/OFArc.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
#import "OFArc.h"
#import "GZIPArchive.h"
#import "LHAArchive.h"
#import "TarArchive.h"
#import "ZIPArchive.h"
#import "ZooArchive.h"
#import "OFCreateDirectoryFailedException.h"
#import "OFGetItemAttributesFailedException.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"
#import "OFNotImplementedException.h"
#import "OFOpenItemFailedException.h"
#import "OFReadFailedException.h"
#import "OFSeekFailedException.h"
#import "OFWriteFailedException.h"
#define bufferSize 4096
OF_APPLICATION_DELEGATE(OFArc)
static void
help(OFStream *stream, bool full, int status)
{
[stream writeLine: OF_LOCALIZED(@"usage",
| > > > > > > > > > > > > | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
#import "OFArc.h"
#import "GZIPArchive.h"
#import "LHAArchive.h"
#import "TarArchive.h"
#import "ZIPArchive.h"
#import "ZooArchive.h"
#ifdef HAVE_TLS_SUPPORT
# import "ObjFWTLS.h"
#endif
#import "OFCreateDirectoryFailedException.h"
#import "OFGetItemAttributesFailedException.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"
#import "OFNotImplementedException.h"
#import "OFOpenItemFailedException.h"
#import "OFReadFailedException.h"
#import "OFSeekFailedException.h"
#import "OFWriteFailedException.h"
#define bufferSize 4096
#ifdef HAVE_TLS_SUPPORT
void
_reference_to_ObjFWTLS(void)
{
_ObjFWTLS_reference = 1;
}
#endif
OF_APPLICATION_DELEGATE(OFArc)
static void
help(OFStream *stream, bool full, int status)
{
[stream writeLine: OF_LOCALIZED(@"usage",
|
| ︙ | ︙ |
Changes to utils/ofarc/TarArchive.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/ofarc/TarArchive.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
#import "OFSetItemAttributesFailedException.h"
static OFArc *app;
static void
setPermissions(OFString *path, OFTarArchiveEntry *entry)
{
#ifdef OF_FILE_MANAGER_SUPPORTS_PERMISSIONS
OFNumber *POSIXPermissions = [OFNumber numberWithUnsignedLongLong:
entry.POSIXPermissions.longLongValue & 0777];
OFFileAttributes attributes = [OFDictionary
dictionaryWithObject: POSIXPermissions
forKey: OFFilePOSIXPermissions];
[[OFFileManager defaultManager] setAttributes: attributes
ofItemAtPath: path];
#endif
| > > < < | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
#import "OFSetItemAttributesFailedException.h"
static OFArc *app;
static void
setPermissions(OFString *path, OFTarArchiveEntry *entry)
{
[app quarantineFile: path];
#ifdef OF_FILE_MANAGER_SUPPORTS_PERMISSIONS
OFNumber *POSIXPermissions = [OFNumber numberWithUnsignedLongLong:
entry.POSIXPermissions.longLongValue & 0777];
OFFileAttributes attributes = [OFDictionary
dictionaryWithObject: POSIXPermissions
forKey: OFFilePOSIXPermissions];
[[OFFileManager defaultManager] setAttributes: attributes
ofItemAtPath: path];
#endif
}
static void
setModificationDate(OFString *path, OFTarArchiveEntry *entry)
{
OFDate *modificationDate = entry.modificationDate;
OFFileAttributes attributes;
|
| ︙ | ︙ |
Changes to utils/ofarc/ZIPArchive.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/ofarc/ZIPArchive.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
#import "OFSetItemAttributesFailedException.h"
static OFArc *app;
static void
setPermissions(OFString *path, OFZIPArchiveEntry *entry)
{
#ifdef OF_FILE_MANAGER_SUPPORTS_PERMISSIONS
if ((entry.versionMadeBy >> 8) ==
OFZIPArchiveEntryAttributeCompatibilityUNIX) {
OFNumber *mode = [OFNumber numberWithUnsignedShort:
(entry.versionSpecificAttributes >> 16) & 0777];
OFFileAttributes attributes = [OFDictionary
dictionaryWithObject: mode
forKey: OFFilePOSIXPermissions];
[[OFFileManager defaultManager] setAttributes: attributes
ofItemAtPath: path];
}
#endif
| > > < < | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
#import "OFSetItemAttributesFailedException.h"
static OFArc *app;
static void
setPermissions(OFString *path, OFZIPArchiveEntry *entry)
{
[app quarantineFile: path];
#ifdef OF_FILE_MANAGER_SUPPORTS_PERMISSIONS
if ((entry.versionMadeBy >> 8) ==
OFZIPArchiveEntryAttributeCompatibilityUNIX) {
OFNumber *mode = [OFNumber numberWithUnsignedShort:
(entry.versionSpecificAttributes >> 16) & 0777];
OFFileAttributes attributes = [OFDictionary
dictionaryWithObject: mode
forKey: OFFilePOSIXPermissions];
[[OFFileManager defaultManager] setAttributes: attributes
ofItemAtPath: path];
}
#endif
}
static void
setModificationDate(OFString *path, OFZIPArchiveEntry *entry)
{
OFDate *modificationDate = entry.modificationDate;
OFFileAttributes attributes;
|
| ︙ | ︙ |
Changes to utils/ofarc/ZooArchive.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/ofarc/ZooArchive.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
#import "OFSetItemAttributesFailedException.h"
static OFArc *app;
static void
setPermissions(OFString *path, OFZooArchiveEntry *entry)
{
#ifdef OF_FILE_MANAGER_SUPPORTS_PERMISSIONS
OFNumber *POSIXPermissions = entry.POSIXPermissions;
if (POSIXPermissions != nil) {
OFFileAttributes attributes;
POSIXPermissions = [OFNumber numberWithUnsignedShort:
POSIXPermissions.unsignedShortValue & 0777];
attributes = [OFDictionary
dictionaryWithObject: POSIXPermissions
forKey: OFFilePOSIXPermissions];
[[OFFileManager defaultManager] setAttributes: attributes
ofItemAtPath: path];
}
#endif
| > > < < | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
#import "OFSetItemAttributesFailedException.h"
static OFArc *app;
static void
setPermissions(OFString *path, OFZooArchiveEntry *entry)
{
[app quarantineFile: path];
#ifdef OF_FILE_MANAGER_SUPPORTS_PERMISSIONS
OFNumber *POSIXPermissions = entry.POSIXPermissions;
if (POSIXPermissions != nil) {
OFFileAttributes attributes;
POSIXPermissions = [OFNumber numberWithUnsignedShort:
POSIXPermissions.unsignedShortValue & 0777];
attributes = [OFDictionary
dictionaryWithObject: POSIXPermissions
forKey: OFFilePOSIXPermissions];
[[OFFileManager defaultManager] setAttributes: attributes
ofItemAtPath: path];
}
#endif
}
static void
setModificationDate(OFString *path, OFZooArchiveEntry *entry)
{
OFFileAttributes attributes = [OFDictionary
dictionaryWithObject: entry.modificationDate
|
| ︙ | ︙ |
Changes to utils/ofarc/ofarc.1.
1 | .\" | | | 1 2 3 4 5 6 7 8 9 | .\" .\" Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> .\" .\" All rights reserved. .\" .\" This program is free software: you can redistribute it and/or modify it .\" under the terms of the GNU Lesser General Public License version 3.0 only, .\" as published by the Free Software Foundation. .\" |
| ︙ | ︙ |
Changes to utils/ofdns/OFDNS.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/ofdns/ofdns.1.
1 | .\" | | | 1 2 3 4 5 6 7 8 9 | .\" .\" Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> .\" .\" All rights reserved. .\" .\" This program is free software: you can redistribute it and/or modify it .\" under the terms of the GNU Lesser General Public License version 3.0 only, .\" as published by the Free Software Foundation. .\" |
| ︙ | ︙ |
Changes to utils/ofhash/Makefile.
| ︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
PACKAGE_NAME = ofhash
${PROG}: ${LIBOBJFW_DEP_LVL2} ${LIBOBJFWRT_DEP_LVL2}
CPPFLAGS += -I../../src \
-I../../src/runtime \
-I../../src/exceptions \
-I../.. \
-DLOCALIZATION_DIR=\"${datadir}/ofhash/localization\"
LIBS := -L../../src -L../../src/tls ${OFHASH_LIBS} -lobjfw \
-L../../src/runtime ${RUNTIME_LIBS} \
${LIBS}
LD = ${OBJC}
LDFLAGS += ${LDFLAGS_RPATH}
| > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
PACKAGE_NAME = ofhash
${PROG}: ${LIBOBJFW_DEP_LVL2} ${LIBOBJFWRT_DEP_LVL2}
CPPFLAGS += -I../../src \
-I../../src/runtime \
-I../../src/exceptions \
-I../../src/tls \
-I../.. \
-DOBJFWTLS_LOCAL_INCLUDES \
-DLOCALIZATION_DIR=\"${datadir}/ofhash/localization\"
LIBS := -L../../src -L../../src/tls ${OFHASH_LIBS} -lobjfw \
-L../../src/runtime ${RUNTIME_LIBS} \
${LIBS}
LD = ${OBJC}
LDFLAGS += ${LDFLAGS_RPATH}
|
Changes to utils/ofhash/OFHash.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ | |||
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
#import "OFSHA224Hash.h"
#import "OFSHA256Hash.h"
#import "OFSHA384Hash.h"
#import "OFSHA512Hash.h"
#import "OFSandbox.h"
#import "OFSecureData.h"
#import "OFStdIOStream.h"
#import "OFOpenItemFailedException.h"
#import "OFReadFailedException.h"
@interface OFHash: OFObject <OFApplicationDelegate>
@end
OF_APPLICATION_DELEGATE(OFHash)
static void
help(void)
{
[OFStdErr writeLine: OF_LOCALIZED(@"usage",
| > > > > > > > > > > > > | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
#import "OFSHA224Hash.h"
#import "OFSHA256Hash.h"
#import "OFSHA384Hash.h"
#import "OFSHA512Hash.h"
#import "OFSandbox.h"
#import "OFSecureData.h"
#import "OFStdIOStream.h"
#ifdef HAVE_TLS_SUPPORT
# import "ObjFWTLS.h"
#endif
#import "OFOpenItemFailedException.h"
#import "OFReadFailedException.h"
@interface OFHash: OFObject <OFApplicationDelegate>
@end
#ifdef HAVE_TLS_SUPPORT
void
_reference_to_ObjFWTLS(void)
{
_ObjFWTLS_reference = 1;
}
#endif
OF_APPLICATION_DELEGATE(OFHash)
static void
help(void)
{
[OFStdErr writeLine: OF_LOCALIZED(@"usage",
|
| ︙ | ︙ |
Changes to utils/ofhash/ofhash.1.
1 | .\" | | | 1 2 3 4 5 6 7 8 9 | .\" .\" Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> .\" .\" All rights reserved. .\" .\" This program is free software: you can redistribute it and/or modify it .\" under the terms of the GNU Lesser General Public License version 3.0 only, .\" as published by the Free Software Foundation. .\" |
| ︙ | ︙ |
Changes to utils/ofhttp/Makefile.
| ︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 |
${PROG}: ${LIBOBJFW_DEP_LVL2} ${LIBOBJFWRT_DEP_LVL2}
CPPFLAGS += -I../../src \
-I../../src/runtime \
-I../../src/exceptions \
-I../../src/tls \
-I../.. \
-DLOCALIZATION_DIR='"${datadir}/ofhttp/localization"'
LIBS := -L../../src -L../../src/tls ${OFHTTP_LIBS} -lobjfw \
-L../../src/runtime ${RUNTIME_LIBS} \
${LIBS}
LD = ${OBJC}
LDFLAGS += ${LDFLAGS_RPATH}
| > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
${PROG}: ${LIBOBJFW_DEP_LVL2} ${LIBOBJFWRT_DEP_LVL2}
CPPFLAGS += -I../../src \
-I../../src/runtime \
-I../../src/exceptions \
-I../../src/tls \
-I../.. \
-DOBJFWTLS_LOCAL_INCLUDES \
-DLOCALIZATION_DIR='"${datadir}/ofhttp/localization"'
LIBS := -L../../src -L../../src/tls ${OFHTTP_LIBS} -lobjfw \
-L../../src/runtime ${RUNTIME_LIBS} \
${LIBS}
LD = ${OBJC}
LDFLAGS += ${LDFLAGS_RPATH}
|
Changes to utils/ofhttp/OFHTTP.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/ofhttp/ProgressBar.h.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/ofhttp/ProgressBar.m.
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * |
| ︙ | ︙ |
Changes to utils/ofhttp/ofhttp.1.
1 | .\" | | | 1 2 3 4 5 6 7 8 9 | .\" .\" Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im> .\" .\" All rights reserved. .\" .\" This program is free software: you can redistribute it and/or modify it .\" under the terms of the GNU Lesser General Public License version 3.0 only, .\" as published by the Free Software Foundation. .\" |
| ︙ | ︙ |