OpenVAS Scanner  22.7.9
ftp_funcs.h
Go to the documentation of this file.
1 /* SPDX-FileCopyrightText: 2023 Greenbone AG
2  * SPDX-FileCopyrightText: 1998 Renaud Deraison
3  *
4  * SPDX-License-Identifier: GPL-2.0-or-later
5  */
6 
12 #ifndef MISC_FTP_FUNCS_H
13 #define MISC_FTP_FUNCS_H
14 
15 #include <arpa/inet.h>
16 #include <sys/param.h>
17 #include <sys/socket.h>
18 #ifdef __FreeBSD__
19 #include <netinet/in.h>
20 #endif
21 
22 int
23 ftp_log_in (int, char *, char *);
24 
25 int
26 ftp_get_pasv_address (int, struct sockaddr_in *);
27 
28 #endif
ftp_get_pasv_address
int ftp_get_pasv_address(int, struct sockaddr_in *)
Definition: ftp_funcs.c:101
ftp_log_in
int ftp_log_in(int, char *, char *)
Definition: ftp_funcs.c:17