libvisiontransfer
6.5.0
visiontransfer
internalinformation.h
1
/*******************************************************************************
2
* Copyright (c) 2019 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
25
struct
InternalInformation
{
26
#pragma pack(push,1)
27
struct
DiscoveryMessage
{
28
unsigned
char
protocolVersion;
29
unsigned
char
proVersion;
30
unsigned
char
useTcp;
31
char
firmwareVersion[14];
32
};
33
#pragma pack(pop)
34
35
static
const
char
DISCOVERY_BROADCAST_MSG[16];
36
static
constexpr
int
DISCOVERY_BROADCAST_PORT = 7680;
37
static
constexpr
unsigned
char
CURRENT_PROTOCOL_VERSION = 0x06;
38
};
39
40
}}
// namespace
41
42
#endif
visiontransfer
Definition:
alignedallocator.h:22
visiontransfer::internal::InternalInformation
Information that is required internally by different program parts.
Definition:
internalinformation.h:25
visiontransfer::internal::InternalInformation::DiscoveryMessage
Definition:
internalinformation.h:27