mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
23 lines
606 B
C
23 lines
606 B
C
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef NET_BASE_IOVEC_H_
|
|
#define NET_BASE_IOVEC_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "build/build_config.h"
|
|
|
|
#if defined(OS_WIN) || defined(OS_NACL)
|
|
/* Structure for scatter/gather I/O. */
|
|
struct iovec {
|
|
void* iov_base; /* Pointer to data. */
|
|
size_t iov_len; /* Length of data. */
|
|
};
|
|
#elif defined(OS_POSIX) || defined(OS_FUCHSIA)
|
|
#include <sys/uio.h>
|
|
#endif // defined(OS_WIN) || defined(OS_NACL)
|
|
|
|
#endif // NET_BASE_IOVEC_H_
|