mirror of
https://github.com/Brychan22/Simple-DHCP-Server.git
synced 2025-02-13 00:08:55 +13:00
Created a C++ port of the C# project. Needs some tidying
This commit is contained in:
parent
5bb94e798a
commit
a1fbe62327
537
Simple DHCP Server (C++)/Simple DHCP Server (C++).cpp
Normal file
537
Simple DHCP Server (C++)/Simple DHCP Server (C++).cpp
Normal file
@ -0,0 +1,537 @@
|
|||||||
|
// Simple DHCP Server (C++).cpp : This file contains the 'main' function. Program execution begins and ends there.
|
||||||
|
//
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
#include <WinSock2.h>
|
||||||
|
#include <Ws2tcpip.h>
|
||||||
|
#include <vector>
|
||||||
|
#include <string>
|
||||||
|
#pragma comment(lib, "WS2_32.lib")
|
||||||
|
|
||||||
|
const unsigned char MAGIC_COOKIE[] = { 0x63, 0x82, 0x53, 0x63 };
|
||||||
|
const short STANDARD_MTU = 1480;
|
||||||
|
|
||||||
|
static unsigned int DHCPLeaseTime = 900;
|
||||||
|
|
||||||
|
static std::vector<unsigned int> DNSServers = {16843009};
|
||||||
|
|
||||||
|
static unsigned char maxLeases = 32;
|
||||||
|
|
||||||
|
static unsigned char localAddress1 = 192;
|
||||||
|
static unsigned char localAddress2 = 168;
|
||||||
|
static unsigned char localAddress3 = 250;
|
||||||
|
static unsigned char deviceIP = 1;
|
||||||
|
|
||||||
|
static unsigned char leaseStart = 2;
|
||||||
|
|
||||||
|
static unsigned char localSubnet1 = 255;
|
||||||
|
static unsigned char localSubnet2 = 255;
|
||||||
|
static unsigned char localSubnet3 = 255;
|
||||||
|
static unsigned char localSubnet4 = 0;
|
||||||
|
|
||||||
|
struct MACAddress {
|
||||||
|
private:
|
||||||
|
char MACSize;
|
||||||
|
std::vector<unsigned char> MACBytes;
|
||||||
|
public:
|
||||||
|
MACAddress(unsigned char c1, unsigned char c2, unsigned char c3, unsigned char c4, unsigned char c5, unsigned char c6)
|
||||||
|
{
|
||||||
|
MACBytes = std::vector<unsigned char>{c1,c2,c3,c4,c5,c6};
|
||||||
|
MACSize = 6;
|
||||||
|
}
|
||||||
|
MACAddress(unsigned char *byteArray, char length) {
|
||||||
|
MACBytes = std::vector<unsigned char>(length);
|
||||||
|
for (char i = 0; i < length; i++)
|
||||||
|
{
|
||||||
|
MACBytes[i] = *byteArray;
|
||||||
|
byteArray++;
|
||||||
|
}
|
||||||
|
MACSize = length;
|
||||||
|
}
|
||||||
|
MACAddress(std::vector<unsigned char> bytes) {
|
||||||
|
MACBytes = bytes;
|
||||||
|
MACSize = bytes.size();
|
||||||
|
}
|
||||||
|
char getMACSize() {
|
||||||
|
return MACSize;
|
||||||
|
}
|
||||||
|
std::vector<unsigned char> getMACBytes() {
|
||||||
|
return MACBytes;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool equals(MACAddress other) {
|
||||||
|
if (MACSize != other.getMACSize()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
for (unsigned char i = 0; i < MACSize; i++)
|
||||||
|
{
|
||||||
|
if (MACBytes[i] != other.getMACBytes()[i]) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
static MACAddress GetEmpty() {
|
||||||
|
return MACAddress(0, 0, 0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
struct DHCPOption {
|
||||||
|
unsigned char option = 0;
|
||||||
|
std::vector<unsigned char> DHCPData;
|
||||||
|
unsigned char dataLength = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
class DHCPEntry {
|
||||||
|
public:
|
||||||
|
MACAddress MAC = MACAddress::GetEmpty();
|
||||||
|
unsigned int expiry = 0;
|
||||||
|
std::vector<unsigned char> requestedItems;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
static std::vector<DHCPEntry> DHCPEntries(maxLeases);
|
||||||
|
|
||||||
|
// Maintain a C#-esque network client for simple handling
|
||||||
|
// As per https://stackoverflow.com/questions/14665543/how-do-i-receive-udp-packets-with-winsock-in-c
|
||||||
|
// A handler class is helpful. This implementation is based on the implementation in .NET
|
||||||
|
struct IPAddress {
|
||||||
|
private:
|
||||||
|
u_char address[4];
|
||||||
|
public:
|
||||||
|
IPAddress()
|
||||||
|
{
|
||||||
|
address[0] = 0;
|
||||||
|
address[1] = 0;
|
||||||
|
address[2] = 0;
|
||||||
|
address[3] = 0;
|
||||||
|
}
|
||||||
|
IPAddress(u_char c1, u_char c2, u_char c3, u_char c4) {
|
||||||
|
address[0] = c1;
|
||||||
|
address[1] = c2;
|
||||||
|
address[2] = c3;
|
||||||
|
address[3] = c4;
|
||||||
|
}
|
||||||
|
|
||||||
|
IPAddress(u_char* IP) {
|
||||||
|
address[0] = *IP;
|
||||||
|
address[1] = *(IP+1);
|
||||||
|
address[2] = *(IP+2);
|
||||||
|
address[3] = *(IP+3);
|
||||||
|
}
|
||||||
|
|
||||||
|
static IPAddress Empty() {
|
||||||
|
return IPAddress();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Equals(IPAddress other) {
|
||||||
|
for (byte i = 0; i < 4; i++)
|
||||||
|
{
|
||||||
|
if (address[i] != other.address[i]) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
struct IPEndPoint {
|
||||||
|
struct sockaddr_in socks;
|
||||||
|
IPAddress Address;
|
||||||
|
|
||||||
|
IPEndPoint(u_char* IP, u_short Port) {
|
||||||
|
Address = IPAddress(IP);
|
||||||
|
//std::string strIP = std::to_string(IP[0]) + std::to_string('.') + std::to_string(IP[1]) + std::to_string('.') + std::to_string(IP[2]) + std::to_string('.') + std::to_string(IP[3]);
|
||||||
|
socks.sin_family = AF_INET;
|
||||||
|
u_char c1 = IP[0];
|
||||||
|
u_char c2 = IP[1];
|
||||||
|
u_char c3 = IP[2];
|
||||||
|
u_char c4 = IP[3];
|
||||||
|
u_long r = (c4 << 24) | (c3 << 16) | (c2 << 8) | c1; // Are these swapped?
|
||||||
|
socks.sin_addr.S_un.S_addr = r;// inet_pton(AF_INET, strIP, );//inet_addr(IP);
|
||||||
|
socks.sin_port = htons(Port);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
class UdpClient {
|
||||||
|
struct Socket {
|
||||||
|
struct sockaddr_in socks;
|
||||||
|
SOCKET sock;
|
||||||
|
void Bind(IPEndPoint ep) {
|
||||||
|
int r = bind(sock, (SOCKADDR*)&ep.socks, sizeof(ep.socks));
|
||||||
|
int reslt = WSAGetLastError();
|
||||||
|
if (r < 0) {
|
||||||
|
|
||||||
|
throw std::system_error(reslt, std::system_category(), "Could not bind socket");
|
||||||
|
}
|
||||||
|
int broadcast = 1;
|
||||||
|
setsockopt(sock, SOL_SOCKET, SO_BROADCAST, (char*)&broadcast, sizeof broadcast);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Bind(u_char *IP, u_short Port) {
|
||||||
|
IPEndPoint ep = IPEndPoint(IP, Port);
|
||||||
|
Bind(ep);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
public:
|
||||||
|
Socket Client;
|
||||||
|
UdpClient() {
|
||||||
|
// We're a UDP Client; set socket mode to IPv4 UDP Datagrams
|
||||||
|
this->Client.sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::vector<u_char> Recieve(IPEndPoint* remote) {
|
||||||
|
std::vector<u_char> recievedBytes;
|
||||||
|
char buffer[1024];
|
||||||
|
int remoteSize = sizeof(remote->socks);
|
||||||
|
int r = recvfrom(Client.sock, buffer, 1024, 0, (SOCKADDR*)&remote->socks, &remoteSize);
|
||||||
|
if (r > 0) {
|
||||||
|
recievedBytes.resize(r);
|
||||||
|
for (int i = 0; i < r; i++)
|
||||||
|
{
|
||||||
|
recievedBytes[i] = buffer[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return recievedBytes;
|
||||||
|
}
|
||||||
|
void Send(std::vector<u_char> Datagram, int dGramSize, IPEndPoint ep) {
|
||||||
|
char dgData[STANDARD_MTU];
|
||||||
|
for (size_t i = 0; i < dGramSize; i++)
|
||||||
|
{
|
||||||
|
dgData[i] = Datagram[i];
|
||||||
|
}
|
||||||
|
int result = sendto(Client.sock, dgData, dGramSize, 0, (SOCKADDR*)&ep.socks, sizeof (ep.socks));
|
||||||
|
int reslt = WSAGetLastError();
|
||||||
|
int g = 200;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Send(std::vector<u_char> Datagram, int dGramSize, std::vector<u_char> DestinationIP, int DestPort) {
|
||||||
|
IPEndPoint ep = IPEndPoint(DestinationIP.data(), (u_short)DestPort);
|
||||||
|
Send(Datagram, dGramSize, ep);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
static u_int millis() {
|
||||||
|
return (u_int)(GetTickCount64() % UINT32_MAX);
|
||||||
|
}
|
||||||
|
|
||||||
|
static u_char FindPosByMac(MACAddress MAC, std::vector<DHCPEntry> entries, u_char entries_size) {
|
||||||
|
for (size_t i = 0; i < entries_size; i++)
|
||||||
|
{
|
||||||
|
if (entries[i].MAC.equals(MAC)) {
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 255;
|
||||||
|
}
|
||||||
|
|
||||||
|
static std::vector<u_char> Generate_DHCP_Option(u_char option, u_char clientIP) {
|
||||||
|
std::vector<u_char> s;
|
||||||
|
s.push_back(option);
|
||||||
|
s.push_back(0);
|
||||||
|
u_char length = 0;
|
||||||
|
// Subnet
|
||||||
|
if (option == 1) {
|
||||||
|
s.push_back(localSubnet1);
|
||||||
|
s.push_back(localSubnet2);
|
||||||
|
s.push_back(localSubnet3);
|
||||||
|
s.push_back(localSubnet4);
|
||||||
|
length = 4;
|
||||||
|
}
|
||||||
|
else if (option == 3) {
|
||||||
|
s.push_back(localAddress1);
|
||||||
|
s.push_back(localAddress2);
|
||||||
|
s.push_back(localAddress3);
|
||||||
|
s.push_back(deviceIP);
|
||||||
|
length = 4;
|
||||||
|
}
|
||||||
|
else if (option == 6) {
|
||||||
|
if (DNSServers.size() > 0) {
|
||||||
|
for (size_t i = 0; i < DNSServers.size(); i++)
|
||||||
|
{
|
||||||
|
if (DNSServers[i] != 0)
|
||||||
|
{
|
||||||
|
s.push_back((size_t)(DNSServers[i] >> 24));
|
||||||
|
s.push_back((size_t)(DNSServers[i] >> 16));
|
||||||
|
s.push_back((size_t)(DNSServers[i] >> 8));
|
||||||
|
s.push_back((size_t)DNSServers[i]);
|
||||||
|
length += 4;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else return std::vector<u_char>(0);
|
||||||
|
}
|
||||||
|
else if (option == 51) {
|
||||||
|
long time = 0;
|
||||||
|
if (clientIP == 255) {
|
||||||
|
time = DHCPLeaseTime;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
time = DHCPEntries[clientIP - leaseStart].expiry - (millis() / 1000);
|
||||||
|
}
|
||||||
|
s.push_back((u_char)(time >> 24));
|
||||||
|
s.push_back((u_char)(time >> 16));
|
||||||
|
s.push_back((u_char)(time >> 8));
|
||||||
|
s.push_back((u_char)time);
|
||||||
|
length = 4;
|
||||||
|
}
|
||||||
|
else if (option == 54) {
|
||||||
|
s.push_back(localAddress1);
|
||||||
|
s.push_back(localAddress2);
|
||||||
|
s.push_back(localAddress3);
|
||||||
|
s.push_back(deviceIP);
|
||||||
|
length = 4;
|
||||||
|
}
|
||||||
|
else return std::vector<u_char>(0);
|
||||||
|
s[1] = length;
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::vector<std::vector<u_char>> ProcessDHCP(std::vector<u_char> rxBuffer) {
|
||||||
|
u_char txBuffer[STANDARD_MTU] = {}; // ensure we have base zeros
|
||||||
|
u_long destAddress = ULLONG_MAX;
|
||||||
|
if (rxBuffer[236] == MAGIC_COOKIE[0] && rxBuffer[237] == MAGIC_COOKIE[1] && rxBuffer[238] == MAGIC_COOKIE[2] && rxBuffer[239] == MAGIC_COOKIE[3]) {
|
||||||
|
u_int position = 240;
|
||||||
|
// Find all options
|
||||||
|
std::vector<DHCPOption> RXOptions;
|
||||||
|
while (rxBuffer[position] != 0xFF && position < STANDARD_MTU) {
|
||||||
|
u_char option = rxBuffer[position++];
|
||||||
|
u_char dataLength = rxBuffer[position++];
|
||||||
|
DHCPOption newOption = DHCPOption();
|
||||||
|
newOption.option = option;
|
||||||
|
newOption.dataLength = dataLength;
|
||||||
|
|
||||||
|
while (dataLength > 0) {
|
||||||
|
newOption.DHCPData.push_back(rxBuffer[position++]);
|
||||||
|
dataLength--;
|
||||||
|
}
|
||||||
|
RXOptions.push_back(newOption);
|
||||||
|
}
|
||||||
|
// Check first option is DHCP
|
||||||
|
if (RXOptions[0].option == 53) {
|
||||||
|
MACAddress clientMAC = MACAddress((rxBuffer.data()+28), 6);
|
||||||
|
u_char leaseIndex = FindPosByMac(clientMAC, DHCPEntries, maxLeases);
|
||||||
|
u_char clientIP;
|
||||||
|
if (leaseIndex == 255) {
|
||||||
|
leaseIndex = FindPosByMac(MACAddress::GetEmpty(), DHCPEntries, maxLeases);
|
||||||
|
if (leaseIndex == 255) {
|
||||||
|
return std::vector<std::vector<u_char>>(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
clientIP = leaseIndex + leaseStart;
|
||||||
|
txBuffer[0] = 2;
|
||||||
|
for (u_char i = 1; i < 240; i++)
|
||||||
|
{
|
||||||
|
if (i == 12) {
|
||||||
|
i = 28;
|
||||||
|
}
|
||||||
|
else if (i == 44) {
|
||||||
|
i = 236;
|
||||||
|
}
|
||||||
|
txBuffer[i] = rxBuffer[i];
|
||||||
|
}
|
||||||
|
txBuffer[16] = localAddress1;
|
||||||
|
txBuffer[17] = localAddress2;
|
||||||
|
txBuffer[18] = localAddress3;
|
||||||
|
txBuffer[19] = clientIP;
|
||||||
|
txBuffer[20] = localAddress1;
|
||||||
|
txBuffer[21] = localAddress2;
|
||||||
|
txBuffer[22] = localAddress3;
|
||||||
|
txBuffer[23] = deviceIP;
|
||||||
|
|
||||||
|
position = 240;
|
||||||
|
// DHCP option
|
||||||
|
if (RXOptions[0].DHCPData[0] == 1) {
|
||||||
|
std::cout << "D";
|
||||||
|
std::vector<u_char> prl;
|
||||||
|
for (size_t i = 0; i < RXOptions.size(); i++)
|
||||||
|
{
|
||||||
|
if (RXOptions[i].option == 50) {
|
||||||
|
u_char requestSuffix = RXOptions[i].DHCPData[RXOptions[i].dataLength - 1];
|
||||||
|
if (DHCPEntries[requestSuffix - leaseStart].MAC.equals(MACAddress::GetEmpty())) {
|
||||||
|
clientIP = requestSuffix;
|
||||||
|
txBuffer[19] = clientIP;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (RXOptions[i].option == 55) {
|
||||||
|
prl.resize(RXOptions[i].dataLength);
|
||||||
|
for (size_t r = 0; r < RXOptions[i].dataLength; r++)
|
||||||
|
{
|
||||||
|
prl[r] = RXOptions[i].DHCPData[r];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
DHCPEntries[clientIP - leaseStart].MAC = clientMAC;
|
||||||
|
DHCPEntries[clientIP - leaseStart].requestedItems = prl;
|
||||||
|
DHCPEntries[clientIP - leaseStart].expiry = (millis() / 1000) + 30;
|
||||||
|
|
||||||
|
txBuffer[position++] = 53;
|
||||||
|
txBuffer[position++] = 1;
|
||||||
|
txBuffer[position++] = 2;
|
||||||
|
std::vector<u_char> r = Generate_DHCP_Option(54, clientIP);
|
||||||
|
for (size_t i = 0; i < r.size(); i++)
|
||||||
|
{
|
||||||
|
txBuffer[position++] = r[i];
|
||||||
|
}
|
||||||
|
r = Generate_DHCP_Option(51, clientIP);
|
||||||
|
for (size_t i = 0; i < r.size(); i++)
|
||||||
|
{
|
||||||
|
txBuffer[position++] = r[i];
|
||||||
|
}
|
||||||
|
for (size_t i = 0; i < prl.size(); i++)
|
||||||
|
{
|
||||||
|
r = Generate_DHCP_Option(prl[i], clientIP);
|
||||||
|
if (r.size() > 0) {
|
||||||
|
for (size_t b = 0; b < r.size(); b++)
|
||||||
|
{
|
||||||
|
txBuffer[position++] = r[b];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
std::cout << "O";
|
||||||
|
}
|
||||||
|
else if (RXOptions[0].DHCPData[0] == 3) {
|
||||||
|
std::cout << "R";
|
||||||
|
bool optionsMatch = true;
|
||||||
|
for (size_t i = 0; i < RXOptions.size(); i++)
|
||||||
|
{
|
||||||
|
if (RXOptions[i].option == 50) {
|
||||||
|
if (clientIP != RXOptions[i].DHCPData[RXOptions[i].dataLength - 1] && !DHCPEntries[clientIP - 2].MAC.equals(MACAddress::GetEmpty())) {
|
||||||
|
optionsMatch = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (RXOptions[i].option == 54) {
|
||||||
|
if (deviceIP != RXOptions[i].DHCPData[RXOptions[i].dataLength - 1]) {
|
||||||
|
optionsMatch = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (RXOptions[i].option == 55) {
|
||||||
|
DHCPEntries[clientIP - leaseStart].requestedItems.clear();
|
||||||
|
DHCPEntries[clientIP - leaseStart].requestedItems.resize(RXOptions[i].dataLength);
|
||||||
|
for (size_t r = 0; r < RXOptions[i].dataLength; r++) {
|
||||||
|
DHCPEntries[clientIP - leaseStart].requestedItems[r] = RXOptions[i].DHCPData[r];
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (optionsMatch) {
|
||||||
|
// Ack
|
||||||
|
DHCPEntries[clientIP - leaseStart].expiry = (millis() / 1000) + DHCPLeaseTime;
|
||||||
|
|
||||||
|
txBuffer[position++] = 53;
|
||||||
|
txBuffer[position++] = 1;
|
||||||
|
txBuffer[position++] = 5; // ACK
|
||||||
|
std::vector<u_char> r = Generate_DHCP_Option(54, clientIP);
|
||||||
|
for (size_t i = 0; i < r.size(); i++)
|
||||||
|
{
|
||||||
|
txBuffer[position++] = r[i];
|
||||||
|
}
|
||||||
|
r = Generate_DHCP_Option(51, clientIP);
|
||||||
|
for (size_t i = 0; i < r.size(); i++)
|
||||||
|
{
|
||||||
|
txBuffer[position++] = r[i];
|
||||||
|
}
|
||||||
|
for (size_t i = 0; i < DHCPEntries[clientIP-leaseStart].requestedItems.size(); i++)
|
||||||
|
{
|
||||||
|
r = Generate_DHCP_Option(DHCPEntries[clientIP - leaseStart].requestedItems[i], clientIP);
|
||||||
|
if (r.size() > 0) {
|
||||||
|
for (size_t b = 0; b < r.size(); b++)
|
||||||
|
{
|
||||||
|
txBuffer[position++] = r[b];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
std::cout << "A\n";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
txBuffer[position++] = 53;
|
||||||
|
txBuffer[position++] = 1;
|
||||||
|
txBuffer[position++] = 5; // ACK
|
||||||
|
std::vector<u_char> r = Generate_DHCP_Option(54, clientIP);
|
||||||
|
for (size_t i = 0; i < r.size(); i++)
|
||||||
|
{
|
||||||
|
txBuffer[position++] = r[i];
|
||||||
|
}
|
||||||
|
r = Generate_DHCP_Option(51, clientIP);
|
||||||
|
for (size_t i = 0; i < r.size(); i++)
|
||||||
|
{
|
||||||
|
txBuffer[position++] = r[i];
|
||||||
|
}
|
||||||
|
for (size_t i = 0; i < DHCPEntries[clientIP - leaseStart].requestedItems.size(); i++)
|
||||||
|
{
|
||||||
|
r = Generate_DHCP_Option(DHCPEntries[clientIP - leaseStart].requestedItems[i], clientIP);
|
||||||
|
if (r.size() > 0) {
|
||||||
|
for (size_t b = 0; b < r.size(); b++)
|
||||||
|
{
|
||||||
|
txBuffer[position++] = r[b];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
std::cout << "N\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
std::cout << " " << RXOptions[0].DHCPData[0] << "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
txBuffer[position++] = 255;
|
||||||
|
std::vector<u_char> returnBuffer(position);
|
||||||
|
for (size_t i = 0; i < position; i++)
|
||||||
|
{
|
||||||
|
returnBuffer[i] = txBuffer[i];
|
||||||
|
}
|
||||||
|
return std::vector<std::vector<u_char>> {std::vector<u_char> {(u_char)(destAddress >> 24), (u_char)(destAddress >> 16), (u_char)(destAddress >> 8), (u_char)destAddress}, returnBuffer};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::cout << "Creating DHCP Server...\n";
|
||||||
|
WORD wVersionRequested;
|
||||||
|
WSADATA wsaData;
|
||||||
|
|
||||||
|
/* Use the MAKEWORD(lowbyte, highbyte) macro declared in Windef.h */
|
||||||
|
wVersionRequested = MAKEWORD(2, 2);
|
||||||
|
|
||||||
|
int err = WSAStartup(wVersionRequested, &wsaData);
|
||||||
|
// Does a vector need the items to be instanced?
|
||||||
|
/*for (unsigned char i = 0; i < maxLeases; i++)
|
||||||
|
{
|
||||||
|
DHCPEntries[i] = new
|
||||||
|
} */
|
||||||
|
// This is platform-dependant; it opens a UDP socket and sends the packet data through
|
||||||
|
// Create an IPv4 UDP Datagram socket
|
||||||
|
UdpClient udpClient = UdpClient();
|
||||||
|
udpClient.Client.Bind(IPEndPoint(new u_char[] {localAddress1, localAddress2, localAddress3, deviceIP}, 67));
|
||||||
|
IPEndPoint remote = IPEndPoint(new u_char[] {0, 0, 0, 0}, 0);
|
||||||
|
while (true) {
|
||||||
|
std::vector<u_char> buffer = udpClient.Recieve(&remote);
|
||||||
|
std::vector<std::vector<u_char>> result = ProcessDHCP(buffer);
|
||||||
|
if (result.size() == 2) {
|
||||||
|
if (remote.Address.Equals(IPAddress::Empty())) {
|
||||||
|
udpClient.Send(result[1], result[1].size(), result[0], 68);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
udpClient.Send(result[1], result[1].size(), remote);
|
||||||
|
// Reply via return address
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|
||||||
|
// Debug program: F5 or Debug > Start Debugging menu
|
||||||
|
|
||||||
|
// Tips for Getting Started:
|
||||||
|
// 1. Use the Solution Explorer window to add/manage files
|
||||||
|
// 2. Use the Team Explorer window to connect to source control
|
||||||
|
// 3. Use the Output window to see build output and other messages
|
||||||
|
// 4. Use the Error List window to view errors
|
||||||
|
// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
|
||||||
|
// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
|
148
Simple DHCP Server (C++)/Simple DHCP Server (C++).vcxproj
Normal file
148
Simple DHCP Server (C++)/Simple DHCP Server (C++).vcxproj
Normal file
@ -0,0 +1,148 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<VCProjectVersion>16.0</VCProjectVersion>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<ProjectGuid>{d121556a-e4e2-4bd4-967a-9811c7927f10}</ProjectGuid>
|
||||||
|
<RootNamespace>SimpleDHCPServerC</RootNamespace>
|
||||||
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="Shared">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
<TargetName>DHCPServerCPP</TargetName>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="Simple DHCP Server (C++).cpp" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Filter Include="Source Files">
|
||||||
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
|
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Header Files">
|
||||||
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
|
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Resource Files">
|
||||||
|
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||||
|
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="Simple DHCP Server (C++).cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
@ -3,18 +3,42 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
|||||||
# Visual Studio Version 16
|
# Visual Studio Version 16
|
||||||
VisualStudioVersion = 16.0.30611.23
|
VisualStudioVersion = 16.0.30611.23
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Simple DHCP Server", "Simple DHCP Server\Simple DHCP Server.csproj", "{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Simple DHCP Server", "Simple DHCP Server\Simple DHCP Server.csproj", "{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}"
|
||||||
|
EndProject
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Simple DHCP Server (C++)", "Simple DHCP Server (C++)\Simple DHCP Server (C++).vcxproj", "{D121556A-E4E2-4BD4-967A-9811C7927F10}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Debug|x64 = Debug|x64
|
||||||
|
Debug|x86 = Debug|x86
|
||||||
Release|Any CPU = Release|Any CPU
|
Release|Any CPU = Release|Any CPU
|
||||||
|
Release|x64 = Release|x64
|
||||||
|
Release|x86 = Release|x86
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Release|Any CPU.Build.0 = Release|Any CPU
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Release|x64.Build.0 = Release|Any CPU
|
||||||
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{B516FEAF-2AB5-494E-BAE7-2F1A85B9C228}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
{D121556A-E4E2-4BD4-967A-9811C7927F10}.Debug|Any CPU.ActiveCfg = Debug|Win32
|
||||||
|
{D121556A-E4E2-4BD4-967A-9811C7927F10}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
|
{D121556A-E4E2-4BD4-967A-9811C7927F10}.Debug|x64.Build.0 = Debug|x64
|
||||||
|
{D121556A-E4E2-4BD4-967A-9811C7927F10}.Debug|x86.ActiveCfg = Debug|Win32
|
||||||
|
{D121556A-E4E2-4BD4-967A-9811C7927F10}.Debug|x86.Build.0 = Debug|Win32
|
||||||
|
{D121556A-E4E2-4BD4-967A-9811C7927F10}.Release|Any CPU.ActiveCfg = Release|Win32
|
||||||
|
{D121556A-E4E2-4BD4-967A-9811C7927F10}.Release|x64.ActiveCfg = Release|x64
|
||||||
|
{D121556A-E4E2-4BD4-967A-9811C7927F10}.Release|x64.Build.0 = Release|x64
|
||||||
|
{D121556A-E4E2-4BD4-967A-9811C7927F10}.Release|x86.ActiveCfg = Release|Win32
|
||||||
|
{D121556A-E4E2-4BD4-967A-9811C7927F10}.Release|x86.Build.0 = Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
@ -21,7 +21,7 @@ namespace Simple_DHCP_Server
|
|||||||
static byte localAddress2 = 168;
|
static byte localAddress2 = 168;
|
||||||
static byte localAddress3 = 250;
|
static byte localAddress3 = 250;
|
||||||
static byte deviceIP = 1;
|
static byte deviceIP = 1;
|
||||||
|
// Starting address for leases
|
||||||
static byte leaseStart = 2;
|
static byte leaseStart = 2;
|
||||||
|
|
||||||
// Local Subnet Address
|
// Local Subnet Address
|
||||||
@ -127,13 +127,8 @@ namespace Simple_DHCP_Server
|
|||||||
MACAddress clientMAC = new MACAddress(rxBuffer[28..34]); // take the range of values from 28 (inclusive) to 34 (exclusive) i.e. 6 bytes of MAC address
|
MACAddress clientMAC = new MACAddress(rxBuffer[28..34]); // take the range of values from 28 (inclusive) to 34 (exclusive) i.e. 6 bytes of MAC address
|
||||||
// Find if the item already exists, and/or determine its IP now
|
// Find if the item already exists, and/or determine its IP now
|
||||||
byte leaseIndex = FindPosByMac(clientMAC, DHCPEntries, maxLeases);
|
byte leaseIndex = FindPosByMac(clientMAC, DHCPEntries, maxLeases);
|
||||||
byte clientIP = 0;
|
byte clientIP;
|
||||||
if (leaseIndex < 255)
|
if (leaseIndex == 255)
|
||||||
{
|
|
||||||
// If found, use the client's assigned IP address
|
|
||||||
clientIP =(byte)(leaseIndex + leaseStart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
// Not found; search for the next empty MAC and assign
|
// Not found; search for the next empty MAC and assign
|
||||||
leaseIndex = FindPosByMac(MACAddress.Empty, DHCPEntries, maxLeases);
|
leaseIndex = FindPosByMac(MACAddress.Empty, DHCPEntries, maxLeases);
|
||||||
@ -141,8 +136,8 @@ namespace Simple_DHCP_Server
|
|||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
clientIP = (byte)(leaseIndex + leaseStart);
|
|
||||||
}
|
}
|
||||||
|
clientIP = (byte)(leaseIndex + leaseStart);
|
||||||
// The same basic packet structure occurs to all responses:
|
// The same basic packet structure occurs to all responses:
|
||||||
// In context, we're always responding
|
// In context, we're always responding
|
||||||
txBuffer[0] = 2;
|
txBuffer[0] = 2;
|
||||||
@ -272,10 +267,10 @@ namespace Simple_DHCP_Server
|
|||||||
else if (option.option == 55)
|
else if (option.option == 55)
|
||||||
{
|
{
|
||||||
// Parameter request list
|
// Parameter request list
|
||||||
DHCPEntries[clientIP-2].requestedItems = new byte[option.dataLength];
|
DHCPEntries[clientIP-leaseStart].requestedItems = new byte[option.dataLength];
|
||||||
for (int i = 0; i < option.dataLength; i++)
|
for (int i = 0; i < option.dataLength; i++)
|
||||||
{
|
{
|
||||||
DHCPEntries[clientIP - 2].requestedItems[i] = option.DHCPData[i];
|
DHCPEntries[clientIP - leaseStart].requestedItems[i] = option.DHCPData[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -374,7 +369,6 @@ namespace Simple_DHCP_Server
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static uint millis()
|
public static uint millis()
|
||||||
{
|
{
|
||||||
TimeSpan elapsed = DateTime.Now.Subtract(Process.GetCurrentProcess().StartTime);
|
|
||||||
return (uint)(GetTickCount64() % uint.MaxValue);
|
return (uint)(GetTickCount64() % uint.MaxValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -471,7 +465,6 @@ namespace Simple_DHCP_Server
|
|||||||
s.Add((byte)(DNSServers[i] >> 8));
|
s.Add((byte)(DNSServers[i] >> 8));
|
||||||
s.Add((byte)DNSServers[i]);
|
s.Add((byte)DNSServers[i]);
|
||||||
length += 4;
|
length += 4;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -488,7 +481,7 @@ namespace Simple_DHCP_Server
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
// As the time stored in DHCPEntries is in seconds, subtracting the current millis() in seconds
|
// As the time stored in DHCPEntries is in seconds, subtracting the current millis() in seconds
|
||||||
time = DHCPEntries[clientIP - 2].expiry - (millis()/1000);
|
time = DHCPEntries[clientIP - leaseStart].expiry - (millis()/1000);
|
||||||
}
|
}
|
||||||
s.Add((byte)(time >> 24));
|
s.Add((byte)(time >> 24));
|
||||||
s.Add((byte)(time >> 16));
|
s.Add((byte)(time >> 16));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user