Skip to content

Commit

Permalink
src: remove unimplemented method in node_http2.h
Browse files Browse the repository at this point in the history
Signed-off-by: gengjiawen <technicalcute@gmail.com>

PR-URL: #25732
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
gengjiawen authored and danbev committed Feb 4, 2019
1 parent 66f08fd commit c6ecbd3
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/node_http2.h
Original file line number Diff line number Diff line change
Expand Up @@ -693,12 +693,9 @@ class Http2Session : public AsyncWrap, public StreamListener {
return static_cast<StreamBase*>(stream_);
}

void Start();
void Stop();
void Close(uint32_t code = NGHTTP2_NO_ERROR,
bool socket_closed = false);
void Consume(Local<External> external);
void Unconsume();
void Goaway(uint32_t code, int32_t lastStreamID, uint8_t* data, size_t len);
void AltSvc(int32_t id,
uint8_t* origin,
Expand All @@ -707,9 +704,6 @@ class Http2Session : public AsyncWrap, public StreamListener {
size_t value_len);
void Origin(nghttp2_origin_entry* ov, size_t count);


bool Ping(v8::Local<v8::Function> function);

uint8_t SendPendingData();

// Submits a new request. If the request is a success, assigned
Expand Down Expand Up @@ -792,8 +786,6 @@ class Http2Session : public AsyncWrap, public StreamListener {
// The JavaScript API
static void New(const FunctionCallbackInfo<Value>& args);
static void Consume(const FunctionCallbackInfo<Value>& args);
static void Unconsume(const FunctionCallbackInfo<Value>& args);
static void Destroying(const FunctionCallbackInfo<Value>& args);
static void Destroy(const FunctionCallbackInfo<Value>& args);
static void Settings(const FunctionCallbackInfo<Value>& args);
static void Request(const FunctionCallbackInfo<Value>& args);
Expand All @@ -808,9 +800,6 @@ class Http2Session : public AsyncWrap, public StreamListener {
template <get_setting fn>
static void RefreshSettings(const FunctionCallbackInfo<Value>& args);

template <get_setting fn>
static void GetSettings(const FunctionCallbackInfo<Value>& args);

uv_loop_t* event_loop() const {
return env()->event_loop();
}
Expand Down

0 comments on commit c6ecbd3

Please sign in to comment.