mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
de88a69286
protocols underlying the Web.
177 lines
2.8 KiB
C
177 lines
2.8 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 <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "main.h"
|
|
#include "net.h"
|
|
|
|
mutex_t mainMutex;
|
|
|
|
static int
|
|
readReply(int fd, unsigned char *buf, int size)
|
|
{
|
|
int bytesRead;
|
|
|
|
bytesRead = read(fd, buf, size - 1);
|
|
if (bytesRead < 0)
|
|
{
|
|
buf[0] = 0;
|
|
}
|
|
else
|
|
{
|
|
buf[bytesRead] = 0;
|
|
}
|
|
if (bytesRead < 3)
|
|
{
|
|
fprintf(stderr, "bytesRead %d at line %d\n", bytesRead,
|
|
__LINE__);
|
|
}
|
|
if (strncmp(buf, "+OK", 3))
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
writeRequest(int fd, char *command, char *argument)
|
|
{
|
|
char buf[1024];
|
|
int bytesWritten;
|
|
int len;
|
|
|
|
strcpy(buf, command);
|
|
if (argument)
|
|
{
|
|
strcat(buf, argument);
|
|
}
|
|
strcat(buf, "\r\n");
|
|
len = strlen(buf);
|
|
bytesWritten = write(fd, buf, len);
|
|
if (bytesWritten != len)
|
|
{
|
|
fprintf(stderr, "bytesWritten at line %d\n", __LINE__);
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
pop(char *host, char *user, char *password)
|
|
{
|
|
unsigned char buf[4096];
|
|
int fd;
|
|
|
|
fd = netConnect(NULL, host, 110);
|
|
if (fd < 0)
|
|
{
|
|
fprintf(stderr, "netConnect failed\n");
|
|
return;
|
|
}
|
|
if (readReply(fd, buf, sizeof(buf)))
|
|
{
|
|
fprintf(stderr, "not OK: \"%s\"\n", buf);
|
|
return;
|
|
}
|
|
printf("\"%s\"\n", buf);
|
|
if (writeRequest(fd, "USER ", user))
|
|
{
|
|
return;
|
|
}
|
|
if (readReply(fd, buf, sizeof(buf)))
|
|
{
|
|
fprintf(stderr, "not OK: \"%s\"\n", buf);
|
|
return;
|
|
}
|
|
printf("\"%s\"\n", buf);
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv)
|
|
{
|
|
unsigned char *password;
|
|
|
|
password = NULL;
|
|
pop("nsmail-2", "erik", password);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
reportContentType(void *a, unsigned 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, unsigned char *charset)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTTPHeaderName(void *a, Input *input)
|
|
{
|
|
}
|
|
|
|
void
|
|
reportHTTPHeaderValue(void *a, Input *input)
|
|
{
|
|
}
|