/usr/include/brlapi_protocol.h is in libbrlapi-dev 5.3.1-2ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | /*
* libbrlapi - A library providing access to braille terminals for applications.
*
* Copyright (C) 2002-2015 by
* Samuel Thibault <Samuel.Thibault@ens-lyon.org>
* Sébastien Hinderer <Sebastien.Hinderer@ens-lyon.org>
*
* libbrlapi comes with ABSOLUTELY NO WARRANTY.
*
* This is free software, placed under the terms of the
* GNU Lesser General Public License, as published by the Free Software
* Foundation; either version 2.1 of the License, or (at your option) any
* later version. Please see the file LICENSE-LGPL for details.
*
* Web Page: http://brltty.com/
*
* This software is maintained by Dave Mielke <dave@mielke.cc>.
*/
/** \file
* \brief types and constants for \e BrlAPI's protocol
*/
#ifndef BRLAPI_INCLUDED_PROTOCOL
#define BRLAPI_INCLUDED_PROTOCOL
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include "brlapi.h"
/* this is for UINT32_MAX */
#include <inttypes.h>
#ifndef UINT32_MAX
#define UINT32_MAX (4294967295U)
#endif /* UINT32_MAX */
/* The type size_t is defined there! */
#include <unistd.h>
/** \defgroup brlapi_protocol BrlAPI's protocol
* \brief Instructions and constants for \e BrlAPI 's protocol
*
* These are defines for the protocol between \e BrlAPI 's server and clients.
* Understanding is not needed to use the \e BrlAPI library, so reading this
* is not needed unless really wanting to connect to \e BrlAPI without
* \e BrlAPI 's library.
*
* @{ */
#define BRLAPI_PROTOCOL_VERSION ((uint32_t) 8) /** Communication protocol version */
/** Maximum packet size for packets exchanged on sockets and with braille
* terminal */
#define BRLAPI_MAXPACKETSIZE 512
#define BRLAPI_PACKET_VERSION 'v' /**< Version */
#define BRLAPI_PACKET_AUTH 'a' /**< Authorization */
#define BRLAPI_PACKET_GETDRIVERNAME 'n' /**< Ask which driver is used */
#define BRLAPI_PACKET_GETDISPLAYSIZE 's' /**< Dimensions of brl display */
#define BRLAPI_PACKET_ENTERTTYMODE 't' /**< Asks for a specified tty */
#define BRLAPI_PACKET_SETFOCUS 'F' /**< Set current tty focus */
#define BRLAPI_PACKET_LEAVETTYMODE 'L' /**< Release the tty */
#define BRLAPI_PACKET_KEY 'k' /**< Braille key */
#define BRLAPI_PACKET_IGNOREKEYRANGES 'm' /**< Mask key ranges */
#define BRLAPI_PACKET_ACCEPTKEYRANGES 'u' /**< Unmask key ranges */
#define BRLAPI_PACKET_WRITE 'w' /**< Write */
#define BRLAPI_PACKET_ENTERRAWMODE '*' /**< Enter in raw mode */
#define BRLAPI_PACKET_LEAVERAWMODE '#' /**< Leave raw mode */
#define BRLAPI_PACKET_PACKET 'p' /**< Raw packets */
#define BRLAPI_PACKET_ACK 'A' /**< Acknowledgement */
#define BRLAPI_PACKET_ERROR 'e' /**< non-fatal error */
#define BRLAPI_PACKET_EXCEPTION 'E' /**< Exception */
#define BRLAPI_PACKET_SUSPENDDRIVER 'S' /**< Suspend driver */
#define BRLAPI_PACKET_RESUMEDRIVER 'R' /**< Resume driver */
/** Magic number to give when sending a BRLPACKET_ENTERRAWMODE or BRLPACKET_SUSPEND packet */
#define BRLAPI_DEVICE_MAGIC (0xdeadbeefL)
/** Structure of packets headers */
typedef struct {
uint32_t size;
brlapi_packetType_t type;
} brlapi_header_t;
/** Size of packet headers */
#define BRLAPI_HEADERSIZE sizeof(brlapi_header_t)
/** Structure of version packets */
typedef struct {
uint32_t protocolVersion;
} brlapi_versionPacket_t;
/** Structure of authorization packets */
typedef struct {
uint32_t type;
unsigned char key;
} brlapi_authClientPacket_t;
typedef struct {
uint32_t type[1];
} brlapi_authServerPacket_t;
#define BRLAPI_AUTH_NONE 'N' /**< No or implicit authorization */
#define BRLAPI_AUTH_KEY 'K' /**< Key authorization */
#define BRLAPI_AUTH_CRED 'C' /**< Explicit socket credentials authorization */
/** Structure of error packets */
typedef struct {
uint32_t code;
brlapi_packetType_t type;
unsigned char packet;
} brlapi_errorPacket_t;
/** Structure of enterRawMode / suspend packets */
typedef struct {
uint32_t magic;
unsigned char nameLength;
char name;
} brlapi_getDriverSpecificModePacket_t;
/** Flags for writing */
#define BRLAPI_WF_DISPLAYNUMBER 0X01 /**< Display number */
#define BRLAPI_WF_REGION 0X02 /**< Region parameter */
#define BRLAPI_WF_TEXT 0X04 /**< Contains some text */
#define BRLAPI_WF_ATTR_AND 0X08 /**< And attributes */
#define BRLAPI_WF_ATTR_OR 0X10 /**< Or attributes */
#define BRLAPI_WF_CURSOR 0X20 /**< Cursor position */
#define BRLAPI_WF_CHARSET 0X40 /**< Charset */
/** Structure of extended write packets */
typedef struct {
uint32_t flags; /** Flags to tell which fields are present */
unsigned char data; /** Fields in the same order as flag weight */
} brlapi_writeArgumentsPacket_t;
/** Type for packets. Should be used instead of a mere char[], since it has
* correct alignment requirements. */
typedef union {
unsigned char data[BRLAPI_MAXPACKETSIZE];
brlapi_versionPacket_t version;
brlapi_authClientPacket_t authClient;
brlapi_authServerPacket_t authServer;
brlapi_errorPacket_t error;
brlapi_getDriverSpecificModePacket_t getDriverSpecificMode;
brlapi_writeArgumentsPacket_t writeArguments;
uint32_t uint32;
} brlapi_packet_t;
/* brlapi_writePacket */
/** Send a packet to \e BrlAPI server
*
* This function is for internal use, but one might use it if one really knows
* what one is doing...
*
* \e type should only be one of the above defined BRLPACKET_*.
*
* The syntax is the same as write()'s.
*
* \return 0 on success, -1 on failure.
*
* \sa brlapi_readPacketHeader()
* brlapi_readPacketContent()
* brlapi_readPacket()
*/
ssize_t brlapi_writePacket(brlapi_fileDescriptor fd, brlapi_packetType_t type, const void *buf, size_t size);
/* brlapi_readPacketHeader */
/** Read the header (type+size) of a packet from \e BrlAPI server
*
* This function is for internal use, but one might use it if one really knows
* what one is doing...
*
* \e type is where the function will store the packet type; it should always
* be one of the above defined BRLPACKET_* (or else something very nasty must
* have happened :/).
*
* \return packet's size, -2 if \c EOF occurred, -1 on error or signal
* interruption.
*
* \sa brlapi_writePacket()
* brlapi_readPacketContent
* brlapi_readPacket
*/
ssize_t brlapi_readPacketHeader(brlapi_fileDescriptor fd, brlapi_packetType_t *packetType);
/* brlapi_readPacketContent */
/** Read the content of a packet from \e BrlAPI server
*
* This function is for internal use, but one might use it if one really knows
* what one is doing...
*
* \e packetSize is the size announced by \e brlapi_readPacketHeader()
*
* \e bufSize is the size of \e buf
*
* \return packetSize, -2 if \c EOF occurred, -1 on error.
*
* If the packet is larger than the supplied buffer, the buffer will be
* filled with the beginning of the packet, the rest of the packet being
* discarded. This follows the semantics of the recv system call when the
* MSG_TRUNC option is given.
*
* \sa brlapi_writePacket()
* brlapi_readPacketHeader()
* brlapi_readPacket()
*/
ssize_t brlapi_readPacketContent(brlapi_fileDescriptor fd, size_t packetSize, void *buf, size_t bufSize);
/* brlapi_readPacket */
/** Read a packet from \e BrlAPI server
*
* This function is for internal use, but one might use it if one really knows
* what one is doing...
*
* \e type is where the function will store the packet type; it should always
* be one of the above defined BRLPACKET_* (or else something very nasty must
* have happened :/).
*
* The syntax is the same as read()'s.
*
* \return packet's size, -2 if \c EOF occurred, -1 on error or signal
* interruption.
*
* If the packet is larger than the supplied buffer, the buffer will be
* filled with the beginning of the packet, the rest of the packet being
* discarded. This follows the semantics of the recv system call when the
* MSG_TRUNC option is given.
*
* \sa brlapi_writePacket()
*/
ssize_t brlapi_readPacket(brlapi_fileDescriptor fd, brlapi_packetType_t *type, void *buf, size_t size);
/* brlapi_fd_mutex */
/** Mutex for protecting concurrent fd access
*
* In order to regulate concurrent access to the library's file descriptor and
* requests to / answers from \e BrlAPI server, every function of the library
* locks this mutex, namely
*
* - brlapi_openConnection()
* - brlapi_closeConnection()
* - brlapi_enterRawMode()
* - brlapi_leaveRawMode()
* - brlapi_sendRaw()
* - brlapi_recvRaw()
* - brlapi_getDriverId()
* - brlapi_getDriverName()
* - brlapi_getDisplaySize()
* - brlapi_enterTtyMode()
* - brlapi_enterTtyModeWithPath()
* - brlapi_leaveTtyMode()
* - brlapi_*write*()
* - brlapi_(un)?ignorekey(Range|Set)()
* - brlapi_readKey()
*
* If both these functions and brlapi_writePacket() or brlapi_readPacket() are
* used in a multithreaded application, this mutex must be locked before calling
* brlapi_writePacket() or brlapi_readPacket(), and unlocked afterwards.
*/
#ifdef __MINGW32__
#include <windows.h>
extern HANDLE brlapi_fd_mutex;
#else /* __MINGW32__ */
#include <pthread.h>
extern pthread_mutex_t brlapi_fd_mutex;
#endif /* __MINGW32__ */
/* @} */
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* BRLAPI_INCLUDED_PROTOCOL */
|