1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-10 03:30:39 +03:00
SoftEtherVPN/src/Cedar/VLan.h

33 lines
443 B
C
Raw Normal View History

2017-10-19 05:48:23 +03:00
// SoftEther VPN Source Code - Developer Edition Master Branch
2014-01-04 17:00:08 +04:00
// Cedar Communication Module
// VLan.h
// Header of VLan.c
#ifndef VLAN_H
#define VLAN_H
// Parameters related to VLAN
struct VLAN_PARAM
{
UCHAR MacAddress[6];
UCHAR Padding[2];
};
#ifdef OS_WIN32
// For Win32
#include <Cedar/VLanWin32.h>
#else // OS_WIN32
// For UNIX
#include <Cedar/VLanUnix.h>
#endif // OS_WIN32
#endif // VLAN_H