ObjFW  Diff

Differences From Artifact [0ea43d29eb]:

To Artifact [f4f4a8078d]:


570
571
572
573
574
575
576
577
578
579
580




581
582
583
584
585
586
587
570
571
572
573
574
575
576




577
578
579
580
581
582
583
584
585
586
587







-
-
-
-
+
+
+
+








@implementation OFBindFailedException
+ newWithClass: (Class)class_
       andHost: (const char*)host_
       andPort: (uint16_t)port_
     andFamily: (int)family_
{
	return [self newWithClass: class_
			  andHost: host_
			  andPort: port_
			andFamily: family_];
	return [[self alloc] initWithClass: class_
				   andHost: host_
				   andPort: port_
				 andFamily: family_];
}

- initWithClass: (Class)class_
	andHost: (const char*)host_
	andPort: (uint16_t)port_
      andFamily: (int)family_
{