I'm trying to serialize some data with protobuf and send it over socket (winsock2), but wathever i do, i can't do it. I would be realy thankfull if someone could give me a simple example how to do it. I have already check the Google documentation, but there is no useful examples and explanation is for me as a beginner ununderstandable. Thanks in advance for some help! So what i'm trying to do is:
Client side:
printf("Sporočilo: ");
getline(cin, line);
if(line == "exit") break;
printf("ID odjemalca: ");
cin >> id;
message::Message sporocilo;
sporocilo.set_bodytext(line);
sporocilo.set_uniqueid(id);
//... some usefull code for serializing data and send it over socket
send(sClient, Message, sizeof(Message), 0);
Server side:
WSARecv(Socket, &(DataBuf), 1, &RecvBytes, &Flags, NULL, NULL);
//... some usefull code for deserializing data and getting out bodytext and uniqueid
cout << sporocilo.bodytext();
cout << sporocilo.uniqueid();