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
e63a1e18
...
e63a1e18a5d16e9f41837c32f164c319992b3581
authored
2003-01-15 21:32:05 +0000
by
Wojciech Polak
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed
1 parent
854237f2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
pop3d/pop3d.c
pop3d/pop3d.h
pop3d/pop3d.c
View file @
e63a1e1
...
...
@@ -389,7 +389,9 @@ pop3d_mainloop (int fd, FILE *infile, FILE *outfile)
}
#ifdef WITH_TLS
if
(
tls_done
)
pop3d_deinit_tls_server
();
if
(
tls_available
)
mu_deinit_tls_libs
();
#endif
/* WITH_TLS */
...
...
pop3d/pop3d.h
View file @
e63a1e1
...
...
@@ -180,8 +180,10 @@ extern char *md5shared;
extern
volatile
size_t
children
;
extern
struct
daemon_param
daemon_param
;
extern
int
debug_mode
;
#ifdef WITH_TLS
extern
int
tls_available
;
extern
int
tls_done
;
#endif
/* WITH_TLS */
extern
int
pop3d_abquit
__P
((
int
));
extern
int
pop3d_apop
__P
((
const
char
*
));
...
...
@@ -216,4 +218,9 @@ extern void pop3d_flush_output __P ((void));
extern
int
pop3d_is_master
__P
((
void
));
#ifdef WITH_TLS
extern
int
pop3d_init_tls_server
__P
((
void
));
extern
void
pop3d_deinit_tls_server
__P
((
void
));
#endif
/* WITH_TLS */
#endif
/* _POP3D_H */
...
...
Please
register
or
sign in
to post a comment