You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi ,
Very much impressed by the implementation and performance of this library. I was looking for a API like r3_tree_insert_routel_ex that can take Content-Type as part of arguments while insert the route.
Let me know if we have any such API for my requirements :
Hi ,
Very much impressed by the implementation and performance of this library. I was looking for a API like r3_tree_insert_routel_ex that can take Content-Type as part of arguments while insert the route.
Let me know if we have any such API for my requirements :
For Ex:
tree.insert_routel(METHOD_GET | METHOD_POST, "/blog/post", "application/json",
sizeof("/blog/post") - 1, &route_data);
... find the route :
r3::MatchEntry entry("/blog/post");
entry.set_request_method(METHOD_GET);
entry.set_content_type("application/json");
Regards,
Badari
The text was updated successfully, but these errors were encountered: