mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
de88a69286
protocols underlying the Web.
211 lines
3.6 KiB
C
211 lines
3.6 KiB
C
/*
|
|
* The contents of this file are subject to the Mozilla Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is Web Sniffer.
|
|
*
|
|
* The Initial Developer of the Original Code is Erik van der Poel.
|
|
* Portions created by Erik van der Poel are
|
|
* Copyright (C) 1998,1999,2000 Erik van der Poel.
|
|
* All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
#include "main.h"
|
|
#include "net.h"
|
|
|
|
#define server "host.domain.com"
|
|
|
|
#define QR 0 /* query */
|
|
#define OPCODE 0 /* standard query */
|
|
#define AA 0 /* authoritative answer */
|
|
#define TC 0 /* truncation */
|
|
#define RD 1 /* recursion desired */
|
|
|
|
#define RA 0 /* recursion available */
|
|
#define Z 0 /* reserved */
|
|
#define RCODE 0 /* response code */
|
|
|
|
static unsigned short ID = 0xbeef;
|
|
|
|
mutex_t mainMutex;
|
|
|
|
void
|
|
reportContentType(void *a, char *contentType)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTML(void *a, Input *input)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTMLAttributeName(void *a, HTML *html, Input *input)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTMLAttributeValue(void *a, HTML *html, Input *input)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTMLTag(void *a, HTML *html, Input *input)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTMLText(void *a, Input *input)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTTP(void *a, Input *input)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTTPBody(void *a, Input *input)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTTPCharSet(void *a, char *charset)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTTPHeaderName(void *a, Input *input)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTTPHeaderValue(void *a, Input *input)
|
|
{
|
|
}
|
|
|
|
static char *
|
|
putDomainName(char *p, char *name)
|
|
{
|
|
char *begin;
|
|
char *q;
|
|
|
|
q = name;
|
|
while (*q)
|
|
{
|
|
begin = q;
|
|
while (*q && (*q != '.'))
|
|
{
|
|
q++;
|
|
}
|
|
if (q - begin > 0)
|
|
{
|
|
*p++ = q - begin;
|
|
q = begin;
|
|
while (*q && (*q != '.'))
|
|
{
|
|
*p++ = *q++;
|
|
}
|
|
if (*q == '.')
|
|
{
|
|
q++;
|
|
}
|
|
}
|
|
}
|
|
*p++ = 0;
|
|
|
|
return p;
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
unsigned char buf[1024];
|
|
int bytesTransferred;
|
|
int c;
|
|
int fd;
|
|
int i;
|
|
int len;
|
|
unsigned char *p;
|
|
|
|
fd = netConnect(NULL, server, 53);
|
|
if (fd < 0)
|
|
{
|
|
fprintf(stderr, "netConnect failed\n");
|
|
return 1;
|
|
}
|
|
|
|
p = buf + 2;
|
|
p[0] = (ID >> 8);
|
|
p[1] = (ID & 0xff);
|
|
p[2] = (QR | OPCODE | AA | TC | RD);
|
|
p[3] = (RA | Z | RCODE);
|
|
p[4] = 0; /* QDCOUNT */
|
|
p[5] = 1; /* QDCOUNT */
|
|
p[6] = 0; /* ANCOUNT */
|
|
p[7] = 0; /* ANCOUNT */
|
|
p[8] = 0; /* NSCOUNT */
|
|
p[9] = 0; /* NSCOUNT */
|
|
p[10] = 0; /* ARCOUNT */
|
|
p[11] = 0; /* ARCOUNT */
|
|
|
|
p = putDomainName(&p[12], "w3.org");
|
|
|
|
/* A = 1 = host address */
|
|
|
|
p[0] = 0;
|
|
p[1] = 15; /* MX = mail exchange */
|
|
p[2] = 0;
|
|
p[3] = 1; /* IN = Internet */
|
|
|
|
len = (p + 4) - buf;
|
|
|
|
buf[0] = 0;
|
|
buf[1] = len - 2;
|
|
|
|
bytesTransferred = write(fd, buf, len);
|
|
if (bytesTransferred != len)
|
|
{
|
|
fprintf(stderr, "wrong number of bytes written\n");
|
|
return 1;
|
|
}
|
|
|
|
bytesTransferred = read(fd, buf, sizeof(buf));
|
|
|
|
for (i = 0; i < bytesTransferred; i++)
|
|
{
|
|
c = buf[i];
|
|
if ((0x20 <= c) && (c <= 0x7e))
|
|
{
|
|
printf("%02d: 0x%02x = '%c'\n", i, c, c);
|
|
}
|
|
else
|
|
{
|
|
printf("%02d: 0x%02x\n", i, c);
|
|
}
|
|
}
|
|
|
|
printf("%d bytes read\n", bytesTransferred);
|
|
printf("ID 0x%04x\n", (buf[2] << 8) | buf[3]);
|
|
printf("QR %d\n", buf[4] >> 7);
|
|
printf("RCODE %d\n", buf[5] & 0xf);
|
|
printf("QDCOUNT %d\n", (buf[ 6] << 8) | buf[ 7]);
|
|
printf("ANCOUNT %d\n", (buf[ 8] << 8) | buf[ 9]);
|
|
printf("NSCOUNT %d\n", (buf[10] << 8) | buf[11]);
|
|
printf("ARCOUNT %d\n", (buf[12] << 8) | buf[13]);
|
|
|
|
return 0;
|
|
}
|