X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FBufferingPolicy.hh;h=90ba22732e9a540a3334cf78fe86d29671da678d;hb=85ab07d100a382467a42e19d741d403a7a96c951;hp=1c63523f4a3df97e603f9961a6b15b02b965757b;hpb=3e42ecb22121f2e6df86b27bea73f890384a4ee4;p=senf.git diff --git a/Socket/BufferingPolicy.hh b/Socket/BufferingPolicy.hh index 1c63523..90ba227 100644 --- a/Socket/BufferingPolicy.hh +++ b/Socket/BufferingPolicy.hh @@ -1,6 +1,6 @@ // $Id$ // -// Copyright (C) 2006 +// Copyright (C) 2006 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) // Kompetenzzentrum fuer Satelitenkommunikation (SatCom) // Stefan Bund @@ -41,29 +41,29 @@ namespace senf { /** \brief BufferingPolicy implementing standard socket buffering - This policy class implements standard BSD socket buffering. + This policy class implements standard BSD socket buffering. - \todo Shouldn't this be dependent on Read / WritePolicy ? + \todo Shouldn't this be dependent on Read / WritePolicy ? */ struct SocketBufferingPolicy : public BufferingPolicyBase { static unsigned rcvbuf(FileHandle handle); ///< Check receive buffer size - /**< \param[in] handle socket handle to check - \returns size of receive buffer in bytes */ + /**< \param[in] handle socket handle to check + \returns size of receive buffer in bytes */ static void rcvbuf(FileHandle handle, unsigned size); ///< Change receive buffer size /**< \param[in] handle socket handle - \param[in] size new receive buffer size */ + \param[in] size new receive buffer size */ static unsigned sndbuf(FileHandle handle); ///< Check send buffer size /**< \param[in] handle socket handle to check - \returns size of send buffer in bytes */ + \returns size of send buffer in bytes */ static void sndbuf(FileHandle handle, unsigned size); ///< Change size of send buffer /**< \param[in] handle socket handle - \param[in] size new send buffer size */ + \param[in] size new send buffer size */ }; /// @} @@ -80,6 +80,8 @@ namespace senf { // Local Variables: // mode: c++ -// c-file-style: "senf" // fill-column: 100 +// c-file-style: "senf" +// indent-tabs-mode: nil +// ispell-local-dictionary: "american" // End: