/usr/include/tilp2/nsp_vpkt.h is in libticalcs-dev 1.1.8+dfsg2-3.
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 | /* Hey EMACS -*- linux-c -*- */
/* $Id$ */
/* libticalcs - Ti Calculator library, a part of the TiLP project
* Copyright (C) 1999-2005 Romain LiƩvin
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
// /!\ NOTE: for this file, backwards compatibility will not necessarily be maintained as strongly as it is for ticalcs.h !
#ifndef __NSP_VPKT__
#define __NSP_VPKT__
// Convenients structures
typedef struct
{
uint16_t src_addr;
uint16_t src_port;
uint16_t dst_addr;
uint16_t dst_port;
uint8_t cmd;
uint32_t size;
uint8_t *data;
} NSPVirtualPacket;
typedef struct
{
uint16_t id;
const char *name;
} NSPServiceName;
// Constants
#define NSP_SRC_ADDR 0x6400
#define NSP_DEV_ADDR 0x6401
#define NSP_PORT_PKT_NACK 0x00D3
#define NSP_PORT_PKT_ACK1 0x00FE
#define NSP_PORT_PKT_ACK2 0x00FF
#define NSP_PORT_NULL 0x4001
#define NSP_PORT_ECHO 0x4002
#define NSP_PORT_ADDR_REQUEST 0x4003
#define NSP_PORT_ADDR_ASSIGN 0x4003
#define NSP_PORT_DEV_INFOS 0x4020
#define NSP_PORT_SCREENSHOT 0x4021
#define NSP_PORT_SCREEN_RLE 0x4024
#define NSP_PORT_KEYPRESSES 0x4042
#define NSP_PORT_LOGIN 0x4050
#define NSP_PORT_FILE_MGMT 0x4060
#define NSP_PORT_OS_INSTALL 0x4080
#define NSP_PORT_DISCONNECT 0x40DE
// Functions
TIEXPORT3 NSPVirtualPacket* TICALL nsp_vtl_pkt_new(void);
TIEXPORT3 NSPVirtualPacket* TICALL nsp_vtl_pkt_new_ex(uint32_t size, uint16_t src_addr, uint16_t src_port, uint16_t dst_addr, uint16_t dst_port);
TIEXPORT3 void TICALL nsp_vtl_pkt_del(NSPVirtualPacket* pkt);
TIEXPORT3 int TICALL nsp_session_open(CalcHandle *h, uint16_t port);
TIEXPORT3 int TICALL nsp_session_close(CalcHandle *h);
TIEXPORT3 int TICALL nsp_addr_request(CalcHandle *h);
TIEXPORT3 int TICALL nsp_addr_assign(CalcHandle *h, uint16_t dev_addr);
TIEXPORT3 int TICALL nsp_send_ack(CalcHandle *h);
TIEXPORT3 int TICALL nsp_recv_ack(CalcHandle *h);
TIEXPORT3 int TICALL nsp_send_nack(CalcHandle *h);
TIEXPORT3 int TICALL nsp_send_nack_ex(CalcHandle *h, uint16_t port);
TIEXPORT3 int TICALL nsp_send_data(CalcHandle* h, NSPVirtualPacket* pkt);
TIEXPORT3 int TICALL nsp_recv_data(CalcHandle* h, NSPVirtualPacket* pkt);
TIEXPORT3 int TICALL nsp_send_disconnect(CalcHandle *h);
TIEXPORT3 int TICALL nsp_recv_disconnect(CalcHandle *h);
TIEXPORT3 const char* TICALL nsp_sid2name(uint16_t id);
#endif
|