tcp_util.h 1011 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * tcp_util.h
  3. *
  4. * Created on: 2024年7月18日
  5. * Author: m
  6. */
  7. #ifndef JNI_NET_TCP_UTIL_H_
  8. #define JNI_NET_TCP_UTIL_H_
  9. void sendAuthLogin(std::string clerkNfc);
  10. void sendAuthLogout(std::string authItId);
  11. void sendSignIn(std::string clerkNfc);
  12. void sendPostionStart(std::string clerkNfc);
  13. void sendRoomCheckStart(std::string clerkNfc);
  14. void sendNursing();
  15. void sendNursingEnd();
  16. void sendReinforceCall();
  17. void sendBlueCodeCall();
  18. void sendBlueCodeResponse(std::string tid, std::string blueCodeId);
  19. void sendCallByDoor();
  20. std::string sendVoiceCall(int toId);
  21. std::string sendVoiceCall(Json::Value data);
  22. void sendVoiceTcp(std::string action, TcpModel model, int toId);
  23. void sendVoiceCancel(int fromId, int toId);
  24. void sendVoiceCancel(int toId);
  25. std::string sendVoiceHCall(int id);
  26. void sendVoiceGainCall(std::string tid, Json::Value it);
  27. void sendSosCall(std::string sosMsg);
  28. void sendSosCancel(std::string sosId);
  29. void sendDataRemindOhter(std::string msg);
  30. #endif /* JNI_NET_TCP_UTIL_H_ */