Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  *    DIAGNOSE X'2C4' instruction based SE/HMC FTP Services, useable on z/VM
0004  *
0005  *    Notice that all functions exported here are not reentrant.
0006  *    So usage should be exclusive, ensured by the caller (e.g. using a
0007  *    mutex).
0008  *
0009  *    Copyright IBM Corp. 2013
0010  *    Author(s): Ralf Hoppe (rhoppe@de.ibm.com)
0011  */
0012 
0013 #ifndef __DIAG_FTP_H__
0014 #define __DIAG_FTP_H__
0015 
0016 #include "hmcdrv_ftp.h"
0017 
0018 int diag_ftp_startup(void);
0019 void diag_ftp_shutdown(void);
0020 ssize_t diag_ftp_cmd(const struct hmcdrv_ftp_cmdspec *ftp, size_t *fsize);
0021 
0022 #endif   /* __DIAG_FTP_H__ */