File: openssh.h

package info (click to toggle)
ncrack 0.6%2Bdebian-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 13,264 kB
  • sloc: xml: 82,826; ansic: 43,353; cpp: 15,984; sh: 4,458; makefile: 356
file content (22 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#ifndef OPENSSH_H
#define OPENSSH_H

#ifdef __cplusplus
extern "C" {
#endif

#include "kex.h"
#include "buffer.h"

u_int	 buffer_len(Buffer *);
void	*buffer_ptr(Buffer *);
Kex	*kex_setup(char *[PROPOSAL_MAX], Buffer ncrack_buf);



#ifdef __cplusplus
} /* End of 'extern "C"' */
#endif

#endif