Node.js  v8.x
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine
udp_wrap.h
Go to the documentation of this file.
1 // Copyright Joyent, Inc. and other Node contributors.
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining a
4 // copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to permit
8 // persons to whom the Software is furnished to do so, subject to the
9 // following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included
12 // in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18 // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 // USE OR OTHER DEALINGS IN THE SOFTWARE.
21 
22 #ifndef SRC_UDP_WRAP_H_
23 #define SRC_UDP_WRAP_H_
24 
25 #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
26 
27 #include "async-wrap.h"
28 #include "env.h"
29 #include "handle_wrap.h"
30 #include "req-wrap.h"
31 #include "req-wrap-inl.h"
32 #include "uv.h"
33 #include "v8.h"
34 
35 namespace node {
36 
37 class UDPWrap: public HandleWrap {
38  public:
39  static void Initialize(v8::Local<v8::Object> target,
40  v8::Local<v8::Value> unused,
41  v8::Local<v8::Context> context);
42  static void GetFD(v8::Local<v8::String>,
43  const v8::PropertyCallbackInfo<v8::Value>&);
44  static void New(const v8::FunctionCallbackInfo<v8::Value>& args);
45  static void Bind(const v8::FunctionCallbackInfo<v8::Value>& args);
46  static void Send(const v8::FunctionCallbackInfo<v8::Value>& args);
47  static void Bind6(const v8::FunctionCallbackInfo<v8::Value>& args);
48  static void Send6(const v8::FunctionCallbackInfo<v8::Value>& args);
49  static void RecvStart(const v8::FunctionCallbackInfo<v8::Value>& args);
50  static void RecvStop(const v8::FunctionCallbackInfo<v8::Value>& args);
51  static void AddMembership(const v8::FunctionCallbackInfo<v8::Value>& args);
52  static void DropMembership(const v8::FunctionCallbackInfo<v8::Value>& args);
53  static void SetMulticastTTL(const v8::FunctionCallbackInfo<v8::Value>& args);
54  static void SetMulticastLoopback(
55  const v8::FunctionCallbackInfo<v8::Value>& args);
56  static void SetBroadcast(const v8::FunctionCallbackInfo<v8::Value>& args);
57  static void SetTTL(const v8::FunctionCallbackInfo<v8::Value>& args);
58 
59  static v8::Local<v8::Object> Instantiate(Environment* env, AsyncWrap* parent);
60  uv_udp_t* UVHandle();
61 
62  size_t self_size() const override { return sizeof(*this); }
63 
64  private:
65  typedef uv_udp_t HandleType;
66 
67  template <typename T,
68  int (*F)(const typename T::HandleType*, sockaddr*, int*)>
69  friend void GetSockOrPeerName(const v8::FunctionCallbackInfo<v8::Value>&);
70 
71  UDPWrap(Environment* env, v8::Local<v8::Object> object);
72 
73  static void DoBind(const v8::FunctionCallbackInfo<v8::Value>& args,
74  int family);
75  static void DoSend(const v8::FunctionCallbackInfo<v8::Value>& args,
76  int family);
77  static void SetMembership(const v8::FunctionCallbackInfo<v8::Value>& args,
78  uv_membership membership);
79 
80  static void OnAlloc(uv_handle_t* handle,
81  size_t suggested_size,
82  uv_buf_t* buf);
83  static void OnSend(uv_udp_send_t* req, int status);
84  static void OnRecv(uv_udp_t* handle,
85  ssize_t nread,
86  const uv_buf_t* buf,
87  const struct sockaddr* addr,
88  unsigned int flags);
89 
90  uv_udp_t handle_;
91 };
92 
93 } // namespace node
94 
95 #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
96 
97 #endif // SRC_UDP_WRAP_H_
unsigned char * buf
Definition: cares_wrap.cc:483
int status
Definition: cares_wrap.cc:479
void Initialize(Local< Object > target, Local< Value > unused, Local< Context > context, void *priv)
Definition: node_http2.cc:1172
uv_fs_t req
Definition: node_file.cc:374
MaybeLocal< Object > New(Isolate *isolate, Local< String > string, enum encoding enc)
Definition: node_buffer.cc:241