Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
508bfd59
...
508bfd590ed2b146ac356306a4a8c6220fd8d090
authored
2003-10-08 02:03:26 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
new field mu_debug_t in structure,
we reuse the object mu_debug_t for tracing.
1 parent
27fab5ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
include/mailutils/pop3.h
include/mailutils/sys/pop3.h
include/mailutils/pop3.h
View file @
508bfd5
...
...
@@ -19,6 +19,7 @@
#define _MAILUTILS_POP3_H
#include <mailutils/list.h>
#include <mailutils/debug.h>
#include <mailutils/stream.h>
#ifdef __cplusplus
...
...
@@ -40,7 +41,7 @@ extern int mu_pop3_disconnect (mu_pop3_t pop3);
extern
int
mu_pop3_set_timeout
(
mu_pop3_t
pop3
,
int
timeout
);
extern
int
mu_pop3_get_timeout
(
mu_pop3_t
pop3
,
int
*
timeout
);
extern
int
mu_pop3_set_debug
(
mu_pop3_t
pop3
,
void
(
*
print
)
__P
((
const
char
*
buffer
))
);
extern
int
mu_pop3_set_debug
(
mu_pop3_t
pop3
,
mu_debug_t
debug
);
extern
int
mu_pop3_apop
(
mu_pop3_t
pop3
,
const
char
*
name
,
const
char
*
digest
);
...
...
include/mailutils/sys/pop3.h
View file @
508bfd5
...
...
@@ -82,7 +82,7 @@ struct _mu_pop3
char
*
timestamp
;
/* For apop, if supported. */
unsigned
timeout
;
/* Default is 10 minutes. */
void
(
*
debug
)(
const
char
*
log
);
/* function to print debug long
. */
mu_debug_t
debug
;
/* debugging trace
. */
enum
mu_pop3_state
state
;
/* Indicate the state of the running command. */
...
...
Please
register
or
sign in
to post a comment