summaryrefslogtreecommitdiff
path: root/include/SFML/Network/TcpSocket.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/SFML/Network/TcpSocket.hpp')
-rw-r--r--include/SFML/Network/TcpSocket.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/SFML/Network/TcpSocket.hpp b/include/SFML/Network/TcpSocket.hpp
index 6c0ab98..4f88e64 100644
--- a/include/SFML/Network/TcpSocket.hpp
+++ b/include/SFML/Network/TcpSocket.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2018 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2023 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
@@ -68,7 +68,7 @@ public:
////////////////////////////////////////////////////////////
/// \brief Get the address of the connected peer
///
- /// It the socket is not connected, this function returns
+ /// If the socket is not connected, this function returns
/// sf::IpAddress::None.
///
/// \return Address of the remote peer
@@ -220,15 +220,15 @@ private:
{
PendingPacket();
- Uint32 Size; ///< Data of packet size
- std::size_t SizeReceived; ///< Number of size bytes received so far
- std::vector<char> Data; ///< Data of the packet
+ Uint32 Size; //!< Data of packet size
+ std::size_t SizeReceived; //!< Number of size bytes received so far
+ std::vector<char> Data; //!< Data of the packet
};
////////////////////////////////////////////////////////////
// Member data
////////////////////////////////////////////////////////////
- PendingPacket m_pendingPacket; ///< Temporary data of the packet currently being received
+ PendingPacket m_pendingPacket; //!< Temporary data of the packet currently being received
};
} // namespace sf