Fix for newsserver authorisation

This commit is contained in:
Michiel Broek
2004-01-04 12:35:50 +00:00
parent 39dbfe3daa
commit 57868f7093
7 changed files with 186 additions and 109 deletions

View File

@@ -1,6 +1,7 @@
#ifndef _MBINET_H
#define _MBINET_H
/* $Id$ */
int smtp_connect(void);
int smtp_send(char *);
@@ -13,6 +14,7 @@ int nntp_send(char *);
char *nntp_receive(void);
int nntp_close(void);
int nntp_cmd(char *, int);
int nntp_auth(void);
int pop3_connect(void);
int pop3_send(char *);
@@ -21,4 +23,3 @@ int pop3_close(void);
int pop3_cmd(char *);
#endif

View File

@@ -4,7 +4,7 @@
* Purpose ...............: MBSE BBS Internet Library
*
*****************************************************************************
* Copyright (C) 1997-2002
* Copyright (C) 1997-2004
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
@@ -44,7 +44,6 @@ struct sockaddr_in nntp_loc; /* For local socket address */
struct sockaddr_in nntp_rem; /* For remote socket address */
int nntp_auth(void);
int nntp_connect(void)