cmogstored.git  about / heads / tags
alternative mogstored implementation for MogileFS
blob 33307606994063113e3fbb1a00fe2ef53950e97e 409 bytes (raw)
$ git show HEAD:http.h	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
 
/*
 * Copyright (C) 2012-2020 all contributors <cmogstored-public@yhbt.net>
 * License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 */
#include "iov_str.h"
void mog_http_resp0(struct mog_fd *, struct iovec *status, bool alive);

#define mog_http_resp(mfd,conststr,alive) do { \
	struct iovec statustmp; \
	IOV_STR(&statustmp, (conststr)); \
	mog_http_resp0((mfd), &statustmp, (alive)); \
} while (0)

git clone https://yhbt.net/cmogstored.git