9df1e54cdf
FossilOrigin-Name: 4dad40a89c3a003bfda76a128f22df56bdab086313a822eee967add8d3a1820a
43 lines
1.4 KiB
C
43 lines
1.4 KiB
C
/*
|
|
* This program is free software: you can redistribute it and/or modify it under
|
|
* the terms of the GNU Lesser General Public License as published by the Free
|
|
* Software Foundation, either version 3 of the License, or (at your option) any
|
|
* later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef MASTODONT_REQUEST_H
|
|
#define MASTODONT_REQUEST_H
|
|
#include <cjson/cJSON.h>
|
|
#include "mastodont_types.h"
|
|
#include "mastodont_fetch.h"
|
|
#include "mastodont_query.h"
|
|
|
|
struct mstdnt_request_args
|
|
{
|
|
struct mstdnt_storage* storage;
|
|
char* url;
|
|
struct _mstdnt_query_param* params_query;
|
|
size_t params_query_len;
|
|
struct _mstdnt_query_param* params_post;
|
|
size_t params_post_len;
|
|
CURLoption request_type;
|
|
char* request_type_custom;
|
|
void* args;
|
|
int (*callback)(cJSON*, void*);
|
|
};
|
|
|
|
int mstdnt_request(mastodont_t* data,
|
|
struct mstdnt_args* m_args,
|
|
mstdnt_request_cb_t cb_request,
|
|
void* cb_args,
|
|
struct mstdnt_request_args* args);
|
|
|
|
#endif /* MASTODONT_REQUEST_H */
|