| 1 |
struct connection;
|
| 2 |
|
| 3 |
/* status info */
|
| 4 |
extern void kernel_alg_show_status(void);
|
| 5 |
void kernel_alg_show_connection(struct connection *c, const char *instance);
|
| 6 |
|
| 7 |
struct ike_info;
|
| 8 |
#define IKEALGBUF_LEN strlen("00000_000-00000_000-00000")
|
| 9 |
extern char *alg_info_snprint_ike1(struct ike_info *ike_info
|
| 10 |
, int eklen, int aklen
|
| 11 |
, char *buf, int buflen);
|
| 12 |
|
| 13 |
extern struct alg_info_ike *
|
| 14 |
alg_info_ike_create_from_str (const char *alg_str, const char **err_p);
|
| 15 |
|
| 16 |
extern int alg_info_snprint_ah(char *buf, int buflen
|
| 17 |
, struct alg_info_esp *alg_info);
|
| 18 |
|
| 19 |
extern int alg_info_snprint_phase2(char *buf, int buflen
|
| 20 |
, struct alg_info_esp *alg_info);
|
| 21 |
|