32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
+ (instancetype)IQWithType: (OFString *)type
ID: (OFString *)ID
{
return [[[self alloc] initWithType: type
ID: ID] autorelease];
}
- initWithType: (OFString *)type
ID: (OFString *)ID
{
self = [super initWithName: @"iq"
type: type
ID: ID];
@try {
if (![type isEqual: @"get"] && ![type isEqual: @"set"] &&
|
|
|
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
+ (instancetype)IQWithType: (OFString *)type
ID: (OFString *)ID
{
return [[[self alloc] initWithType: type
ID: ID] autorelease];
}
- (instancetype)initWithType: (OFString *)type
ID: (OFString *)ID
{
self = [super initWithName: @"iq"
type: type
ID: ID];
@try {
if (![type isEqual: @"get"] && ![type isEqual: @"set"] &&
|