1 /* $OpenBSD: monitor.h,v 1.5 2007/03/01 20:06:27 otto Exp $ */ 2 3 /* 4 * Copyright (c) 2004 Moritz Jodeit <moritz@openbsd.org> 5 * 6 * Permission to use, copy, modify, and distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 */ 18 19 #ifndef _MONITOR_H 20 #define _MONITOR_H 21 22 #define FTPD_PRIVSEP_USER "_ftp" 23 24 enum auth_ret { 25 AUTH_FAILED, 26 AUTH_SLAVE, 27 AUTH_MONITOR 28 }; 29 30 int monitor_init(void); 31 int monitor_post_auth(void); 32 void monitor_user(char *); 33 int monitor_pass(char *); 34 int monitor_socket(int); 35 int monitor_bind(int, struct sockaddr *, socklen_t); 36 37 void kill_slave(char *); 38 39 void send_fd(int, int); 40 int recv_fd(int); 41 42 #endif /* _MONITOR_H */ 43