asynch.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * $Id$
  3. *
  4. * Oracle module interface
  5. *
  6. * Copyright (C) 2007,2008 TRUNK MOBILE
  7. *
  8. * This file is part of Kamailio, a free SIP server.
  9. *
  10. * Kamailio is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version
  14. *
  15. * Kamailio is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. *
  24. * History:
  25. * --------
  26. */
  27. #ifndef ASYNCH_H
  28. #define ASYNCH_H
  29. #include <oci.h>
  30. #include "ora_con.h"
  31. /*
  32. * parse timeout value for operation in syntax: nnn.mmm (sec/ms)
  33. */
  34. int set_timeout(unsigned type, const char* val);
  35. /*
  36. * parse timeout value for reconnect in syntax: nnn.mmm (sec/ms)
  37. */
  38. int set_reconnect(unsigned type, const char* val);
  39. /*
  40. * start timelimited operation (if work in synch mode return SUCCESS)
  41. */
  42. sword begin_timelimit(ora_con_t* con, int connect);
  43. /*
  44. * check completion of timelimited operation (if work in synch mode return 0)
  45. */
  46. int wait_timelimit(ora_con_t* con, sword status);
  47. /*
  48. * close current timelimited operation and disconnect if timeout occured
  49. * return true only if work in asynch mode and timeout detect
  50. */
  51. int done_timelimit(ora_con_t* con, sword status);
  52. #endif /* ASYNCH_H */