File: openssh.h

package info (click to toggle)
ncrack 0.5-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 17,580 kB
  • ctags: 22,084
  • sloc: xml: 82,756; ansic: 67,501; cpp: 13,599; sh: 4,467; makefile: 438
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