frosix-httpd_seed.h (1232B)
1 /* 2 This file is part of Frosix 3 Copyright (C) 2022, 2023 Joel Urech 4 5 Frosix is free software; you can redistribute it and/or modify it under the 6 terms of the GNU Affero General Public License as published by the Free Software 7 Foundation; either version 3, or (at your option) any later version. 8 9 Frosix is distributed in the hope that it will be useful, but WITHOUT ANY 10 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 11 A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. 12 13 You should have received a copy of the GNU Affero General Public License along with 14 Frosix; see the file COPYING. If not, see <http://www.gnu.org/licenses/> 15 */ 16 /** 17 * @file backend/frosix-httpd_seed.h 18 * @brief function to handle incoming requests on /policy 19 * @author Joel Urech 20 */ 21 #ifndef FROSIX_HTTPD_SEED_H 22 #define FROSIX_HTTPD_SEED_H 23 #include "frosix-httpd.h" 24 #include <microhttpd.h> 25 26 #define FROSIX_SEED_SIZE 64 27 28 /** 29 * Manages a /seed call. 30 * 31 * @param rh context of the handler 32 * @param connection the MHD connection to handle 33 * @return MHD result code 34 */ 35 MHD_RESULT 36 FH_seed_get (struct FH_RequestHandler *rh, 37 struct MHD_Connection *connection); 38 39 #endif