일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- rpg server
- Digital Ocean
- Unity Editor
- draganddrop
- docker
- Google Refund
- Camera Movement
- --watch
- express
- critical rendering path
- css framework
- Unity IAP
- Packet Network
- Google Developer API
- screencapture
- mongoDB
- server
- MySQL
- react
- OverTheWire
- unity
- nodejs
- Camera Zoom
- Git
- linux
- SDK upgrade
- springboot
- java
- spread 연산자
- Spring Boot
- Today
- Total
목록server (2)
우당탕탕 개발일지
서버와 클라이언트 연결은 성공했다 (Connection) 이제 해야 할 것은 세션을 생성하여 데이터를 주고받는 것, 이 데이터를 타입별로 받아서 처리하는 작업이 필요하다.abstract class 인 Session.cs 에서 데이터를 전송/수신하는 툴을 만든 다음, Session을 상속받은 자식 클래스에서는 딱 ArraySegment 형식의 데이터를 받아볼수 있도록 하였다 ( OnReceivePacket 함수) Session더보기 using System;using System.Net;using System.Net.Sockets;namespace ServerCore{ public abstract class Session { Socket _socket; SocketAsyn..
깃허브 주소 : https://github.com/devchop2/myFirstServer 1. github에 테스트로 올려놓은 서버 프로젝트 (visual studio) 를 커밋해놓은 상태임. 현재는 리스너만 부착한 상태임. 2. Digital Ocean을 사용중. 진짜 무작정 돈주고 빌림 ㅋ-ㅋ 임대한 서버에 ssh를 이용하여 접근해보자. private key 는 로컬에 저장되어있다. ## root : 유저이름, 뒤에는 ip 주소 ssh root@~.~.~.~ ## git clone ## git clone git clone https://github.com/devchop2/myFirstServer.git #이슈1 userName 과 password를 입력하라하는데 authentication fail ..