mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 09:31:55 +00:00
net/filter-mirror: Follow CODING_STYLE
Signed-off-by: Zhang Chen <zhangchen.fnst@cn.fujitsu.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
1723a7f7cf
commit
f0aabd5c4a
1 changed files with 4 additions and 3 deletions
|
@ -49,7 +49,7 @@ static int filter_mirror_send(CharBackend *chr_out,
|
|||
{
|
||||
int ret = 0;
|
||||
ssize_t size = 0;
|
||||
uint32_t len = 0;
|
||||
uint32_t len = 0;
|
||||
char *buf;
|
||||
|
||||
size = iov_size(iov, iovcnt);
|
||||
|
@ -77,8 +77,9 @@ err:
|
|||
return ret < 0 ? ret : -EIO;
|
||||
}
|
||||
|
||||
static void
|
||||
redirector_to_filter(NetFilterState *nf, const uint8_t *buf, int len)
|
||||
static void redirector_to_filter(NetFilterState *nf,
|
||||
const uint8_t *buf,
|
||||
int len)
|
||||
{
|
||||
struct iovec iov = {
|
||||
.iov_base = (void *)buf,
|
||||
|
|
Loading…
Reference in a new issue