mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:23:01 +00:00
Create a branch for header work.
svn path=/branches/header-work/; revision=45691
This commit is contained in:
parent
14fe274b1c
commit
9ea495ba33
19538 changed files with 0 additions and 1063950 deletions
166
base/services/dhcp/util.c
Normal file
166
base/services/dhcp/util.c
Normal file
|
@ -0,0 +1,166 @@
|
|||
#include <stdarg.h>
|
||||
#include "rosdhcp.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <reactos/debug.h>
|
||||
|
||||
char *piaddr( struct iaddr addr ) {
|
||||
struct sockaddr_in sa;
|
||||
memcpy(&sa.sin_addr,addr.iabuf,sizeof(sa.sin_addr));
|
||||
return inet_ntoa( sa.sin_addr );
|
||||
}
|
||||
|
||||
int note( char *format, ... ) {
|
||||
char buf[0x100];
|
||||
int ret;
|
||||
va_list arg_begin;
|
||||
va_start( arg_begin, format );
|
||||
|
||||
ret = _vsnprintf( buf, sizeof(buf), format, arg_begin );
|
||||
|
||||
DPRINT("NOTE: %s\n", buf);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int debug( char *format, ... ) {
|
||||
char buf[0x100];
|
||||
int ret;
|
||||
va_list arg_begin;
|
||||
va_start( arg_begin, format );
|
||||
|
||||
ret = _vsnprintf( buf, sizeof(buf), format, arg_begin );
|
||||
|
||||
DPRINT("DEBUG: %s\n", buf);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int warn( char *format, ... ) {
|
||||
char buf[0x100];
|
||||
int ret;
|
||||
va_list arg_begin;
|
||||
va_start( arg_begin, format );
|
||||
|
||||
ret = _vsnprintf( buf, sizeof(buf), format, arg_begin );
|
||||
|
||||
DPRINT("WARN: %s\n", buf);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int warning( char *format, ... ) {
|
||||
char buf[0x100];
|
||||
int ret;
|
||||
va_list arg_begin;
|
||||
va_start( arg_begin, format );
|
||||
|
||||
ret = _vsnprintf( buf, sizeof(buf), format, arg_begin );
|
||||
|
||||
DPRINT("WARNING: %s\n", buf);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
void error( char *format, ... ) {
|
||||
char buf[0x100];
|
||||
va_list arg_begin;
|
||||
va_start( arg_begin, format );
|
||||
|
||||
_vsnprintf( buf, sizeof(buf), format, arg_begin );
|
||||
|
||||
DPRINT1("ERROR: %s\n", buf);
|
||||
}
|
||||
|
||||
int16_t getShort( unsigned char *data ) {
|
||||
return (int16_t) ntohs(*(int16_t*) data);
|
||||
}
|
||||
|
||||
u_int16_t getUShort( unsigned char *data ) {
|
||||
return (u_int16_t) ntohs(*(u_int16_t*) data);
|
||||
}
|
||||
|
||||
int32_t getLong( unsigned char *data ) {
|
||||
return (int32_t) ntohl(*(u_int32_t*) data);
|
||||
}
|
||||
|
||||
u_int32_t getULong( unsigned char *data ) {
|
||||
return ntohl(*(u_int32_t*)data);
|
||||
}
|
||||
|
||||
int addr_eq( struct iaddr a, struct iaddr b ) {
|
||||
return a.len == b.len && !memcmp( a.iabuf, b.iabuf, a.len );
|
||||
}
|
||||
|
||||
void *dmalloc( int size, char *name ) { return malloc( size ); }
|
||||
|
||||
int read_client_conf(struct interface_info *ifi) {
|
||||
/* What a strange dance */
|
||||
struct client_config *config;
|
||||
char ComputerName [MAX_COMPUTERNAME_LENGTH + 1];
|
||||
LPSTR lpCompName;
|
||||
DWORD ComputerNameSize = sizeof ComputerName / sizeof ComputerName[0];
|
||||
|
||||
if ((ifi!= NULL) && (ifi->client->config != NULL))
|
||||
config = ifi->client->config;
|
||||
else
|
||||
{
|
||||
warn("util.c read_client_conf poorly implemented!");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
GetComputerName(ComputerName, & ComputerNameSize);
|
||||
debug("Hostname: %s, length: %lu",
|
||||
ComputerName, ComputerNameSize);
|
||||
/* This never gets freed since it's only called once */
|
||||
lpCompName =
|
||||
HeapAlloc(GetProcessHeap(), 0, ComputerNameSize + 1);
|
||||
if (lpCompName !=NULL) {
|
||||
memcpy(lpCompName, ComputerName, ComputerNameSize + 1);
|
||||
/* Send our hostname, some dhcpds use this to update DNS */
|
||||
config->send_options[DHO_HOST_NAME].data = (u_int8_t*)lpCompName;
|
||||
config->send_options[DHO_HOST_NAME].len = ComputerNameSize;
|
||||
debug("Hostname: %s, length: %d",
|
||||
config->send_options[DHO_HOST_NAME].data,
|
||||
config->send_options[DHO_HOST_NAME].len);
|
||||
} else {
|
||||
error("Failed to allocate heap for hostname");
|
||||
}
|
||||
/* Both Linux and Windows send this */
|
||||
config->send_options[DHO_DHCP_CLIENT_IDENTIFIER].data =
|
||||
ifi->hw_address.haddr;
|
||||
config->send_options[DHO_DHCP_CLIENT_IDENTIFIER].len =
|
||||
ifi->hw_address.hlen;
|
||||
|
||||
/* Setup the requested option list */
|
||||
config->requested_options
|
||||
[config->requested_option_count++] = DHO_SUBNET_MASK;
|
||||
config->requested_options
|
||||
[config->requested_option_count++] = DHO_BROADCAST_ADDRESS;
|
||||
config->requested_options
|
||||
[config->requested_option_count++] = DHO_TIME_OFFSET;
|
||||
config->requested_options
|
||||
[config->requested_option_count++] = DHO_ROUTERS;
|
||||
config->requested_options
|
||||
[config->requested_option_count++] = DHO_DOMAIN_NAME;
|
||||
config->requested_options
|
||||
[config->requested_option_count++] = DHO_DOMAIN_NAME_SERVERS;
|
||||
config->requested_options
|
||||
[config->requested_option_count++] = DHO_HOST_NAME;
|
||||
config->requested_options
|
||||
[config->requested_option_count++] = DHO_NTP_SERVERS;
|
||||
|
||||
warn("util.c read_client_conf poorly implemented!");
|
||||
return 0;
|
||||
}
|
||||
|
||||
struct iaddr broadcast_addr( struct iaddr addr, struct iaddr mask ) {
|
||||
struct iaddr bcast = { 0 };
|
||||
return bcast;
|
||||
}
|
||||
|
||||
struct iaddr subnet_number( struct iaddr addr, struct iaddr mask ) {
|
||||
struct iaddr bcast = { 0 };
|
||||
return bcast;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue