dlg_request.h 341 B

12345678910
  1. #ifndef __DIALOG_REQUEST_H
  2. #define __DIALOG_REQUEST_H
  3. #include "dlg_mod.h"
  4. #include "../../modules/tm/t_hooks.h"
  5. int request_outside(str* method, str* headers, str* body, dlg_t* dialog, transaction_cb cb, void* cbp);
  6. int request_inside(str* method, str* headers, str* body, dlg_t* dialog, transaction_cb completion_cb, void* cbp);
  7. #endif