| 229 | } |
| 230 | |
| 231 | static void SetStatusCode(Local<String> property, Local<Value> value, const PropertyCallbackInfo<void>& info) { |
| 232 | MNS::SocketData *data = (MNS::SocketData *) info.Holder()->GetAlignedPointerFromInternalField(0); |
| 233 | |
| 234 | data->response->statusCode = value->Int32Value(); |
| 235 | } |
| 236 | |
| 237 | static void WriteHead(const FunctionCallbackInfo<Value> &args) { |
| 238 | printf("Writing Head\n"); |
nothing calls this directly
no outgoing calls
no test coverage detected