Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(298)

Side by Side Diff: native_client_sdk/src/libraries/nacl_io/packet.h

Issue 23498015: [NaCl SDK] Support non blocking TCP/UDP (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef LIBRARIES_NACL_IO_PACKET_H_
6 #define LIBRARIES_NACL_IO_PACKET_H_
7
8 #include "nacl_io/fifo_interface.h"
9 #include "ppapi/c/pp_resource.h"
10
11 #include "sdk_util/macros.h"
12
13 namespace nacl_io {
14
15 class PepperInterface;
16
17 // NOTE: The Packet class always owns the buffer and address, either by 'Copy'
18 // or by 'Take' ownership.
19 class Packet {
20 public:
21 explicit Packet(PepperInterface* ppapi);
22 ~Packet();
23
24 // Copy the buffer, and address reference
25 void Copy(const void *buffer, size_t len, PP_Resource addr);
26
27 // Take ownership the buffer, and address reference
28 void Take(const void *buffer, size_t len, PP_Resource addr);
29
30 char* buffer() { return buffer_; }
31 PP_Resource addr() { return addr_; }
32 size_t len() { return len_; }
33
34 private:
35 PepperInterface* ppapi_;
36 PP_Resource addr_;
37 char* buffer_;
38 size_t len_;
39
40 DISALLOW_COPY_AND_ASSIGN(Packet);
41 };
42
43 } // namespace nacl_io
44
45 #endif // LIBRARIES_NACL_IO_PACKET_H_
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/nacl_io/mount_stream.cc ('k') | native_client_sdk/src/libraries/nacl_io/packet.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698