mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-23 18:09:53 +03:00
21 lines
310 B
C
21 lines
310 B
C
// SoftEther VPN Source Code - Developer Edition Master Branch
|
|
// Cedar Communication Module
|
|
|
|
|
|
// VLan.h
|
|
// Header of VLan.c
|
|
|
|
#ifndef VLAN_H
|
|
#define VLAN_H
|
|
|
|
#include "Mayaqua/MayaType.h"
|
|
|
|
// Parameters related to VLAN
|
|
struct VLAN_PARAM
|
|
{
|
|
UCHAR MacAddress[6];
|
|
UCHAR Padding[2];
|
|
};
|
|
|
|
#endif
|