libvisiontransfer  9.0.3
internalinformation.h
1 /*******************************************************************************
2  * Copyright (c) 2021 Nerian Vision GmbH
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *******************************************************************************/
14 
15 #ifndef VISIONTRANSFER_INTERNALINFORMATION_H
16 #define VISIONTRANSFER_INTERNALINFORMATION_H
17 
18 namespace visiontransfer {
19 namespace internal {
20 
26 #pragma pack(push,1)
28  unsigned char protocolVersion;
29  unsigned char model;
30  unsigned char useTcp;
31  char firmwareVersion[14];
32  };
34  // Extended device status / health info
35  double lastFps; // Most recent FPS report, or 0.0 if N/A
36  unsigned int jumboSize; // Jumbo MTU or 0 if disabled
37  char currentCaptureSource[8]; // For targeted debug instructions
38  };
39 #pragma pack(pop)
40 
41  static const char DISCOVERY_BROADCAST_MSG[16];
42 
43  static constexpr int DISCOVERY_BROADCAST_PORT = 7680;
44  static constexpr int IMAGEDATA_PORT = 7681;
45  static constexpr int WEBSOCKET_PORT = 7682;
46  static constexpr int PARAMETER_PORT = 7683;
47  static constexpr int DATACHANNELSERVICE_PORT = 7684;
48 
49  static constexpr unsigned char CURRENT_PROTOCOL_VERSION = 0x06;
50 };
51 
52 }} // namespace
53 
54 #endif
Information that is required internally by different program parts.
Nerian Vision Technologies