Is it possible to make first argument type const Packet& in future releases?
It doesn't look like it can be modified.
Socket::Status UdpSocket::send(Packet& packet, const IpAddress& remoteAddress, unsigned short remotePort)
Ok, it's not a big problem, my workaround works fine :)
void MySocket::send(const Address& address, const sf::Packet& packet)
{
_socket.send(packet.getData(), packet.getDataSize(), address._ip, address._port);
}