Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  *    SCLP Event Type (ET) 7 - Diagnostic Test FTP Services, useable on LPAR
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 __SCLP_FTP_H__
0014 #define __SCLP_FTP_H__
0015 
0016 #include "hmcdrv_ftp.h"
0017 
0018 int sclp_ftp_startup(void);
0019 void sclp_ftp_shutdown(void);
0020 ssize_t sclp_ftp_cmd(const struct hmcdrv_ftp_cmdspec *ftp, size_t *fsize);
0021 
0022 #endif   /* __SCLP_FTP_H__ */