Artifact ebfc86a92af262afec62f28240f2da9da2d8e28141d05bddf8c21600608017cf:
- File
src/exceptions/OFListenFailedException.m
— part of check-in
[d9ddc4d06e]
at
2013-02-13 23:10:35
on branch trunk
— Don't cache the description of exceptions.
This was pretty pointless, as it's usually only used once. (user: js, size: 1705) [annotate] [blame] [check-ins using]
/* * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 * Jonathan Schleifer <js@webkeks.org> * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #include <stdlib.h> #import "OFListenFailedException.h" #import "OFString.h" #import "OFTCPSocket.h" #import "common.h" @implementation OFListenFailedException + (instancetype)exceptionWithClass: (Class)class socket: (OFTCPSocket*)socket backLog: (int)backLog { return [[[self alloc] initWithClass: class socket: socket backLog: backLog] autorelease]; } - initWithClass: (Class)class { @try { [self doesNotRecognizeSelector: _cmd]; } @catch (id e) { [self release]; @throw e; } abort(); } - initWithClass: (Class)class socket: (OFTCPSocket*)socket backLog: (int)backLog { self = [super initWithClass: class]; _socket = [socket retain]; _backLog = backLog; _errNo = GET_SOCK_ERRNO; return self; } - (void)dealloc { [_socket release]; [super dealloc]; } - (OFString*)description { return [OFString stringWithFormat: @"Failed to listen in socket of type %@ with a back log of %d! " ERRFMT, _inClass, _backLog, ERRPARAM]; } - (OFTCPSocket*)socket { OF_GETTER(_socket, NO) } - (int)backLog { return _backLog; } - (int)errNo { return _errNo; } @end