[w3m-dev 03022] SSL certificates of frame body

* frame.h (frame_body): add ssl_certificate
* frame.c (frame_download_source): save ssl_certificate
* map.c (append_frame_info): display ssl_certificate of frame_body
From: Fumitoshi UKAI  <ukai@debian.or.jp>
This commit is contained in:
Fumitoshi UKAI
2002-02-08 11:45:07 +00:00
parent 589c1c0211
commit 5c83eb8404
4 changed files with 24 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: frame.h,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
/* $Id: frame.h,v 1.4 2002/02/08 11:45:07 ukai Exp $ */
/*
* frame support
*/
@@ -26,6 +26,9 @@ struct frame_body {
char *referer;
struct _anchorList *nameList;
FormList *request;
#ifdef USE_SSL
char *ssl_certificate;
#endif
};
union frameset_element {