Skip to content

Commit 1bd9b12

Browse files
committed
Update yasio to v4.3.1
1 parent 273f4ff commit 1bd9b12

30 files changed

+4425
-155
lines changed

Assets/NSM2/NetworkServiceManager.cs Assets/NSM2/NetworkManager.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public enum NetworkEvent
5656
}
5757

5858

59-
public class NetworkServiceManager : Singleton<NetworkServiceManager>
59+
public class NetworkManager : Singleton<NetworkManager>
6060
{
6161
IntPtr _service = IntPtr.Zero;
6262
IntPtr[] _sessions = new IntPtr[1];
@@ -327,7 +327,7 @@ static void HandleNativeConsolePrint(int level, string msg)
327327
[MonoPInvokeCallback(typeof(YASIO_NI.YNIEventDelegate))]
328328
static void HandleNativeNetworkIoEvent(ref YASIO_NI.IOEvent ev)
329329
{
330-
var nsm = NetworkServiceManager.Instance;
330+
var nsm = NetworkManager.Instance;
331331
Debug.LogFormat("The channel connect_id={0}, bytes_transferred={1}", YASIO_NI.yasio_connect_id(nsm._service, ev.channel),
332332
YASIO_NI.yasio_bytes_transferred(nsm._service, ev.channel));
333333
switch ((YASIO_NI.YEnums)ev.kind)
File renamed without changes.

Assets/Scripts/SampleNetworkPacketHandler.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public void HandleEvent(NetworkEvent ev, int cmd, Span<byte> ud, int channel)
139139
reply.uid = msg.uid;
140140
reply.status = 200; // 200 表示success
141141
Span<byte> udReply = reply.encode();
142-
NetworkServiceManager.Instance.SendSerializedMsg(AppProtocol.CMD_LOGIN_RESP, udReply, AppProtocol.SERVER_CHANNEL);
142+
NetworkManager.Instance.SendSerializedMsg(AppProtocol.CMD_LOGIN_RESP, udReply, AppProtocol.SERVER_CHANNEL);
143143
}
144144
else if(cmd == AppProtocol.CMD_LOGIN_RESP)
145145
{ // SampelScene应该是 channel:0 收到

Assets/Scripts/SampleScene.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3131

3232
public class SampleScene : MonoBehaviour, NetworkEventListener
3333
{
34-
NetworkServiceManager nsm;
34+
NetworkManager nsm;
3535

3636
// Start is called before the first frame update
3737
void Start()
3838
{
3939
Debug.Log("Start Game!");
40-
nsm = NetworkServiceManager.Instance;
40+
nsm = NetworkManager.Instance;
4141
nsm.Start(AppProtocol.MAX_CHANNELS, new SampleNetworkPacketHandler());
4242
nsm.ListenAt("127.0.0.1", AppProtocol.PORT, AppProtocol.SERVER_CHANNEL); // 启动本地TCP服务
4343
nsm.AddEventListener(this);

0 commit comments

Comments
 (0)