ObjFW  Diff

Differences From Artifact [637568184e]:

To Artifact [41e77c8735]:


614
615
616
617
618
619
620
621
622
623

624
625
626
627

628
629
630

631
632
633
634
635
636
637
638
639
640
641
614
615
616
617
618
619
620



621




622

623

624

625
626

627
628
629
630
631
632
633







-
-
-
+
-
-
-
-
+
-

-
+
-


-







	OFTCPSocket *newSocket;
	struct sockaddr_storage *addr;
	socklen_t addrLen;
	int newSock;

	newSocket = [[[[self class] alloc] init] autorelease];
	addrLen = sizeof(*addr);

	@try {
		addr = [newSocket allocMemoryWithSize: addrLen];
	addr = [newSocket allocMemoryWithSize: addrLen];
	} @catch (id e) {
		[newSocket release];
		@throw e;
	}


	if ((newSock = accept(sock, (struct sockaddr*)addr,
	    &addrLen)) == INVALID_SOCKET) {
	    &addrLen)) == INVALID_SOCKET)
		[newSocket release];
		@throw [OFAcceptFailedException exceptionWithClass: [self class]
							    socket: self];
	}

	newSocket->sock = newSock;
	newSocket->sockAddr = addr;
	newSocket->sockAddrLen = addrLen;

	return newSocket;
}