FearL0rd
13 years agoVisitor
authentication using sockets
I have a code in C that send a structure pointer with user and password thought sockets and receives a message.
How do I send a structure similar to the server using sockets for authentication?
is there any way to do the same using roByteArray?
struct Message
{
uint16_t User;
uint16_t Pass;
uint16_t msg;
}
Send(socks, &message)
How do I send a structure similar to the server using sockets for authentication?
is there any way to do the same using roByteArray?
struct Message
{
uint16_t User;
uint16_t Pass;
uint16_t msg;
}
Send(socks, &message)