Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: sf::Packet the packet data is mixed up  (Read 6897 times)

0 Members and 1 Guest are viewing this topic.

s1and1

  • Newbie
  • *
  • Posts: 6
    • View Profile
    • Email
sf::Packet the packet data is mixed up
« on: December 29, 2021, 08:29:33 pm »
Hello, I'm trying to create a thread that takes an instance of the sf::Packet class as an argument, but everything is mixed up there.



sf::UdpSocket sock;

void server(sf::Packet pack, sf::Address addr, sf::Packet packet){
    int a;
    pack >> a;
    std::cout<<a;
}

int main(){
    sf::Address addr;
    sf::Packet packet;
    unsigned short port;
    sock.bind(19132);
    sock.receive(packet, addr, port);
    std::thread thr(server, packet, addr, port);
    thr.detach();
}

G.

  • Hero Member
  • *****
  • Posts: 1599
    • View Profile
Re: sf::Packet the packet data is mixed up
« Reply #1 on: December 29, 2021, 08:42:13 pm »
French forums again.

>>> english <<<