X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=include%2Finspsocket.h;h=45fa46a5b6a4c528a3dd2997dba56759084f0407;hb=b4a174ee9c32d62ea6bf010e837e8c5b1c3d36a3;hp=16d2cdbce9a686912761f09b6ef3781014a7f0fb;hpb=30648e84ce9c2515994b95b9d1e2e870283ed214;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/inspsocket.h b/include/inspsocket.h index 16d2cdbce..45fa46a5b 100644 --- a/include/inspsocket.h +++ b/include/inspsocket.h @@ -1,6 +1,7 @@ /* * InspIRCd -- Internet Relay Chat Daemon * + * Copyright (C) 2020 Matt Schatz * Copyright (C) 2019 linuxdaemon * Copyright (C) 2013, 2015-2016 Attila Molnar * Copyright (C) 2012-2013, 2017-2019 Sadie Powell @@ -10,6 +11,7 @@ * Copyright (C) 2007-2009 Robin Burchell * Copyright (C) 2007 Dennis Friis * Copyright (C) 2006, 2010 Craig Edwards + * Copyright (C) 2006 Oliver Lupton * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -214,7 +216,7 @@ class CoreExport StreamSocket : public EventHandler } private: - /** Private send queue. Note that individual strings may be shared. + /** Private send queue. Note that individual strings may be shared. */ Container data; @@ -274,7 +276,7 @@ class CoreExport StreamSocket : public EventHandler * @param hook Next IOHook in the chain, can be NULL * @param rq Receive queue to put incoming data into * @return < 0 on error or close, 0 if no new data is ready (but the socket is still connected), > 0 if data was read from - the socket and put into the recvq + * the socket and put into the recvq */ int HookChainRead(IOHook* hook, std::string& rq);