mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 12:18:01 +01:00
chore(UDPServer): fix spelling
This commit is contained in:
@@ -30,7 +30,7 @@ namespace Net {
|
|||||||
template <std::size_t S = POCO_UDP_BUF_SIZE>
|
template <std::size_t S = POCO_UDP_BUF_SIZE>
|
||||||
class MultiSocketPoller
|
class MultiSocketPoller
|
||||||
/// MultiSocketPoller, as its name indicates, repeatedly polls a set of
|
/// MultiSocketPoller, as its name indicates, repeatedly polls a set of
|
||||||
/// sockets for readability and/or eror. If socket is readable or in error
|
/// sockets for readability and/or error. If socket is readable or in error
|
||||||
/// state, the reading/error handling actions are delegated to the reader.
|
/// state, the reading/error handling actions are delegated to the reader.
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ namespace Net {
|
|||||||
|
|
||||||
template <std::size_t S = POCO_UDP_BUF_SIZE>
|
template <std::size_t S = POCO_UDP_BUF_SIZE>
|
||||||
class SingleSocketPoller
|
class SingleSocketPoller
|
||||||
/// SinlgeSocketPoller, as its name indicates, repeatedly polls a single
|
/// SingleSocketPoller, as its name indicates, repeatedly polls a single
|
||||||
/// socket for readability; if the socket is readable, the reading action
|
/// socket for readability; if the socket is readable, the reading action
|
||||||
/// is delegated to the reader.
|
/// is delegated to the reader.
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ typedef int UDPMsgSizeT;
|
|||||||
|
|
||||||
template <std::size_t S = POCO_UDP_BUF_SIZE>
|
template <std::size_t S = POCO_UDP_BUF_SIZE>
|
||||||
class UDPHandlerImpl: public Runnable, public RefCountedObject
|
class UDPHandlerImpl: public Runnable, public RefCountedObject
|
||||||
/// UDP handler handles the data that arives to the UDP server.
|
/// UDP handler handles the data that arrives to the UDP server.
|
||||||
/// The class is thread-safe and runs in its own thread, so many handlers
|
/// The class is thread-safe and runs in its own thread, so many handlers
|
||||||
/// can be used in parallel.Handler manages and provides the storage
|
/// can be used in parallel.Handler manages and provides the storage
|
||||||
/// (fixed-size memory blocks of S size) to the reader, which signals back
|
/// (fixed-size memory blocks of S size) to the reader, which signals back
|
||||||
|
|||||||
Reference in New Issue
Block a user