usr0sess.ic
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Sessions
  3. (c) 1996 Innobase Oy
  4. Created 6/25/1996 Heikki Tuuri
  5. *******************************************************/
  6. /***************************************************************************
  7. Sets the message type of a message from the client. */
  8. UNIV_INLINE
  9. void
  10. sess_cli_msg_set_type(
  11. /*==================*/
  12. byte* str, /* in: message string */
  13. ulint type) /* in: message type */
  14. {
  15. mach_write_to_4(str + SESS_CLI_MSG_TYPE, type);
  16. }
  17. /***************************************************************************
  18. Gets the message type of a message from the server. */
  19. UNIV_INLINE
  20. ulint
  21. sess_srv_msg_get_type(
  22. /*==================*/
  23. /* out: message type */
  24. byte* str) /* in: message string */
  25. {
  26. return(mach_read_from_4(str + SESS_SRV_MSG_TYPE));
  27. }