Guest User

Untitled

a guest
Oct 23rd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. /* requestPtr->path = "/user/123" */
  2.  
  3. if(strstr(requestPtr->path, "/user/123") != NULL)
  4. {
  5. /* process the request */
  6. }
  7. else if(strstr(requestPtr->path, "/config/settings") != NULL)
  8. {
  9. /* process the request */
  10. }
Add Comment
Please, Sign In to add comment