12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * tcp_util.h
- *
- * Created on: 2024年7月18日
- * Author: m
- */
- #ifndef JNI_NET_TCP_UTIL_H_
- #define JNI_NET_TCP_UTIL_H_
- void sendAuthLogin(std::string clerkNfc);
- void sendAuthLogout(std::string authItId);
- void sendSignIn(std::string clerkNfc);
- void sendPostionStart(std::string clerkNfc);
- void sendRoomCheckStart(std::string clerkNfc);
- void sendNursing();
- void sendNursingEnd();
- void sendReinforceCall();
- void sendCallByDoor();
- std::string sendVoiceCall(int toId);
- std::string sendVoiceCall(Json::Value json);
- void sendVoiceTcp(std::string action, TcpModel model, int toId);
- void sendVoiceCancel(int fromId, int toId);
- void sendVoiceCancel(int toId);
- void sendVoiceGainCall(std::string tid, Json::Value it);
- void sendSosCall(std::string sosMsg);
- void sendSosCancel(std::string sosId);
- void sendDataRemindOhter(std::string msg);
- #endif /* JNI_NET_TCP_UTIL_H_ */
|