32 lines
645 B
C
32 lines
645 B
C
#ifndef __PVS_H
|
|
#define __PVS_H
|
|
|
|
#include "BSlib.h"
|
|
|
|
#define PVS_RETRY_COUNT 4
|
|
#define PVS_TRANSFER_SIZE 1024
|
|
#define PVS_UDP 17
|
|
#define PVS_TCP 6
|
|
#define PVS_UDP_PORT 50298
|
|
#define PVS_TCP_PORT 50299
|
|
#define PVS_UDP_CPORT 50300
|
|
|
|
#define PVS_Data (BS_LAST_VERB+1)
|
|
#define PVS_Alive (BS_LAST_VERB+2)
|
|
#define PVS_RecList (BS_LAST_VERB+3)
|
|
#define PVS_AppList (BS_LAST_VERB+4)
|
|
#define PVS_RecDump (BS_LAST_VERB+5)
|
|
|
|
#define PVS_LAST_VERB PVS_RecDump
|
|
|
|
struct pvs_info_packet
|
|
{
|
|
unsigned short cmd;
|
|
char text[90];
|
|
};
|
|
typedef struct pvs_info_packet PVS_INFO_PACKET;
|
|
|
|
#define PVS_SET_CMD(pvs_info,command) (pvs_info)->cmd=htons(command)
|
|
|
|
#endif
|