15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include "config.h"
#include <errno.h>
#import "TestsAppDelegate.h"
static OFString *module = @"OFIPXSocket";
@implementation TestsAppDelegate (OFIPXSocketTests)
- (void)IPXSocketTests
{
void *pool = objc_autoreleasePoolPush();
OFIPXSocket *sock;
OFSocketAddress address1, address2;
|
|
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include "config.h"
#include <errno.h>
#import "TestsAppDelegate.h"
static OFString *const module = @"OFIPXSocket";
@implementation TestsAppDelegate (OFIPXSocketTests)
- (void)IPXSocketTests
{
void *pool = objc_autoreleasePoolPush();
OFIPXSocket *sock;
OFSocketAddress address1, address2;
|