Overview
| Comment: | Work around MorphOS missing UNIQUE_ID |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ffb2792718be14a6a9906885c2157190 |
| User & Date: | js on 2023-08-02 18:55:38 |
| Other Links: | manifest | tags |
Context
|
2023-08-05
| ||
| 09:04 | Remove hacks in headers for C compatibility (check-in: 14c70763b0 user: js tags: trunk) | |
|
2023-08-02
| ||
| 18:55 | Work around MorphOS missing UNIQUE_ID (check-in: ffb2792718 user: js tags: trunk) | |
| 18:12 | Support moving sockets between threads on AmigaOS (check-in: 983342d8dd user: js tags: trunk) | |
Changes
Modified src/OFDatagramSocket.m from [15013c9476] to [6000a37970].
| ︙ | ︙ | |||
39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
#import "OFNotOpenException.h"
#import "OFOutOfMemoryException.h"
#import "OFOutOfRangeException.h"
#import "OFReadFailedException.h"
#import "OFSetOptionFailedException.h"
#import "OFSetOptionFailedException.h"
#import "OFWriteFailedException.h"
@implementation OFDatagramSocket
@synthesize delegate = _delegate;
+ (void)initialize
{
if (self != [OFDatagramSocket class])
| > > > > | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
#import "OFNotOpenException.h"
#import "OFOutOfMemoryException.h"
#import "OFOutOfRangeException.h"
#import "OFReadFailedException.h"
#import "OFSetOptionFailedException.h"
#import "OFSetOptionFailedException.h"
#import "OFWriteFailedException.h"
#if defined(OF_AMIGAOS) && !defined(UNIQUE_ID)
# define UNIQUE_ID -1
#endif
@implementation OFDatagramSocket
@synthesize delegate = _delegate;
+ (void)initialize
{
if (self != [OFDatagramSocket class])
|
| ︙ | ︙ |
Modified src/OFStreamSocket.m from [3fe9c63f07] to [cfdeffc17d].
| ︙ | ︙ | |||
38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
#import "OFNotImplementedException.h"
#import "OFNotOpenException.h"
#import "OFOutOfMemoryException.h"
#import "OFOutOfRangeException.h"
#import "OFReadFailedException.h"
#import "OFSetOptionFailedException.h"
#import "OFWriteFailedException.h"
@implementation OFStreamSocket
@dynamic delegate;
@synthesize listening = _listening;
+ (void)initialize
{
| > > > > | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
#import "OFNotImplementedException.h"
#import "OFNotOpenException.h"
#import "OFOutOfMemoryException.h"
#import "OFOutOfRangeException.h"
#import "OFReadFailedException.h"
#import "OFSetOptionFailedException.h"
#import "OFWriteFailedException.h"
#if defined(OF_AMIGAOS) && !defined(UNIQUE_ID)
# define UNIQUE_ID -1
#endif
@implementation OFStreamSocket
@dynamic delegate;
@synthesize listening = _listening;
+ (void)initialize
{
|
| ︙ | ︙ |