summaryrefslogtreecommitdiff
path: root/samples/net/http_client/src/http_client_rcv.h
blob: d75d9708e0447a5fec2768a738f217869de02d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2017 Intel Corporation
 *
 * SPDX-License-Identifier: Apache-2.0
 */

#ifndef _HTTP_CLIENT_RCV_H_
#define _HTTP_CLIENT_RCV_H_

#include "tcp_client.h"

/* HTTP reception callback */
void http_receive_cb(struct tcp_client_ctx *tcp_ctx, struct net_buf *rx);

#endif