Code: Select all
// Send and receive the DNSRequest message
void Send_Receive_DNSRequest(struct DNS_BEGIN* bmsg, unsigned char* buffer, char* argvone)
{
int res, size, sockfd, sizeof_serv_addr;
struct sockaddr_in serv_addr;
struct hostent* server;
unsigned char* url;
// allocate memory for the buffer
buffer = (unsigned char*) malloc( sizeof(unsigned char) * BUFFER_SIZE);
// clear buffer
bzero(buffer, BUFFER_SIZE);
// set bmsg to point to the beginning of the buffer
bmsg = (struct DNS_BEGIN*)buffer;
// add to size
// The size of the struct DNS_BEGIN is 24
size = sizeof(struct DNS_BEGIN);
// set the url to point to the correct spot in the buffer
// This sets the url to point 12 bytes into buffer
url = (unsigned char*)(buffer + size/2);
// The size of the struct DNS_BEGIN is 24
...
}
Code: Select all
// Convert the address the user provided to the format expected by DNS protocol.
ConvertHostName_DNSFormat(argvone, (char*)url);
It seems that having bmsg pointing to the beginning of buffer prevents any other write operations (to the first 24 bytes of buffer) from executing using any other pointer then bmsg.
Anyone see anything I'm missing?
edit: I did figure out a workaround, but this was particularily strange to me