1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#ifndef _SEATD_CONSTANTS_H
#define _SEATD_CONSTANTS_H
#define MAX_PATH_LEN 256
#define MAX_SEAT_LEN 64
#define MAX_SEAT_DEVICES 128
#define MAX_SESSION_LEN 64
#define CLIENT_EVENT(opcode) (opcode)
#define SERVER_EVENT(opcode) ((opcode) + (1 << 15))
#define CLIENT_OPEN_SEAT CLIENT_EVENT(1)
#define CLIENT_CLOSE_SEAT CLIENT_EVENT(2)
#define CLIENT_OPEN_DEVICE CLIENT_EVENT(3)
#define CLIENT_CLOSE_DEVICE CLIENT_EVENT(4)
#define CLIENT_DISABLE_SEAT CLIENT_EVENT(5)
#define CLIENT_SWITCH_SESSION CLIENT_EVENT(6)
#define CLIENT_PING CLIENT_EVENT(7)
#define SERVER_SEAT_OPENED SERVER_EVENT(1)
#define SERVER_SEAT_CLOSED SERVER_EVENT(2)
#define SERVER_DEVICE_OPENED SERVER_EVENT(3)
#define SERVER_DEVICE_CLOSED SERVER_EVENT(4)
#define SERVER_DISABLE_SEAT SERVER_EVENT(5)
#define SERVER_ENABLE_SEAT SERVER_EVENT(6)
#define SERVER_PONG SERVER_EVENT(7)
#define SERVER_SESSION_SWITCHED SERVER_EVENT(8)
#define SERVER_SEAT_DISABLED SERVER_EVENT(9)
#define SERVER_ERROR SERVER_EVENT(0x7FFF)
#include <stdint.h>
struct proto_header {
uint16_t opcode;
uint16_t size;
};
struct proto_client_open_device {
uint16_t path_len;
// NULL-terminated byte-sequence path_len long follows
};
struct proto_client_close_device {
int device_id;
};
struct proto_client_switch_session {
int session;
};
struct proto_server_seat_opened {
uint16_t seat_name_len;
// NULL-terminated byte-sequence seat_name_len long follows
};
struct proto_server_device_opened {
int device_id;
// One fd in auxillary data
};
struct proto_server_error {
int error_code;
};
#endif
|