mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
38 lines
746 B
C
38 lines
746 B
C
/*
|
|
* packet.h -- Packet structure
|
|
*
|
|
* This file is donated to the Tox Project.
|
|
* Copyright 2013 plutooo
|
|
*/
|
|
|
|
typedef struct {
|
|
uint8_t id[CLIENT_ID_SIZE];
|
|
|
|
} __attribute__((packed)) clientid_t;
|
|
|
|
typedef enum {
|
|
PACKET_PING_REQ = 0,
|
|
PACKET_PING_RES = 1
|
|
|
|
} packetid_t;
|
|
|
|
// Ping packet
|
|
typedef struct {
|
|
uint8_t magic;
|
|
clientid_t client_id;
|
|
uint8_t nonce[crypto_box_NONCEBYTES];
|
|
uint64_t ping_id;
|
|
uint8_t padding[ENCRYPTION_PADDING];
|
|
|
|
} __attribute__((packed)) pingreq_t;
|
|
|
|
// Pong packet
|
|
typedef struct {
|
|
uint8_t magic;
|
|
clientid_t client_id;
|
|
uint8_t nonce[crypto_box_NONCEBYTES];
|
|
uint64_t ping_id;
|
|
uint8_t padding[ENCRYPTION_PADDING];
|
|
|
|
} __attribute__((packed)) pingres_t;
|