Category카테고리 :
NoticeBorad게시판 / linux리눅스 / php / nodejs /website웹사이트
/ ReactNative / Kotlin / Swift / Cubase / QT / ServerApps
react-native-freelifemakers-ui
-
[Basic]Socket
👉🏻 기본적인 소켓에 대한 설명입니다.This is an explanation of basic sockets. 👉🏻 Echo Server는 클라이언트에서 보낸 메세지를 서버가 다시 클라이언트로 보내는 간단한 코드입니다.Echo Server is simple code that sends a message sent from a client back to the client. 👉🏻 Thread Server는 아주 기본적인 채팅 서버 구조를 가지고 있습니다.Thread Server has a very basic chat…
-
[Webserver]miniWebserver + routing (4)
👉🏻 웹서버 라우트 기능을 추가했습니다.Added web server routing functionality. 👉🏻 기존 코드에서 추가하거나 변경된 부분은 ❗️로 표시되어 있습니다.Parts added or changed from the existing code are marked with ❗️. 👉🏻 설명은 코드 주석을 참고하세요Please refer to the code comments for the explanation. 👉🏻 코드 / Code ✔️ Main.cpp ✔️ Server.cpp ✔️ Server.h 👉🏻 컴파일 /…
-
[Basic]명령어로 루프탈출/Escape loop using commands
👉🏻 아래는 터미널에서 몇가지 명령어로 while루프를 탈출하는 로직입니다.Below is the logic to exit a while loop using a few commands in the terminal. 👉🏻 run_cmd() 함수 내에서 /exit 명령어가 들어오면 running플래그를 false로 바꿔서 루프를 탈출합니다.If the /exit command is encountered inside the run_cmd() function, the running flag is changed to false to exit the loop.…