wsServer
wsServer - a tiny WebSocket server library written in C
파일 탐색기
최종 버전 다운로드 (.zip)- bug_report.md
- feature_request.md
- question.md
- c-cpp.yml
- mingw-w64-x86_64.cmake
- pull_request_template.md
- annotated.html
- base-class-reference.html
- base-index.html
- base-reference.html
- base.html
- class.html
- details-define.html
- details-enum.html
- details-func.html
- details-typedef.html
- details-var.html
- dir.html
- entry-class.html
- entry-define.html
- entry-dir.html
- entry-enum.html
- entry-file.html
- entry-func.html
- entry-module.html
- entry-namespace.html
- entry-typedef.html
- entry-var.html
- example.html
- file.html
- files.html
- group.html
- modules.html
- namespace.html
- namespaces.html
- opensearch.xml
- page.html
- pages.html
- struct.html
- union.html
- doxy.conf
- Doxyfile-mcss
- ws_close_client.3
- ws_get_state.3
- ws_getaddress.3
- ws_getport.3
- ws_ping.3
- ws_sendframe.3
- ws_sendframe_bcast.3
- ws_sendframe_bin.3
- ws_sendframe_bin_bcast.3
- ws_sendframe_txt.3
- ws_sendframe_txt_bcast.3
- ws_socket.3
- AUTOBAHN.md
- BUILD_WINDOWS.md
- CODING_STYLE.md
- FUZZING.md
- TLS.md
- CMakeLists.txt
- echo.c
- echo.html
- CMakeLists.txt
- ping.c
- CMakeLists.txt
- mouse_win.c
- mouse_x11.c
- README.md
- vtouchpad.c
- vtouchpad.h
- vtouchpad.html
- CMakeLists.txt
- README.md
- README.md
- toyws.c
- toyws.h
- tws_test.c
- base64.h
- sha1.h
- utf8.h
- ws.h
- base64.c
- handshake.c
- sha1.c
- utf8.c
- ws.c
- ch_1b_1b_508b_close
- ch_1b_close
- close
- ping
- req_chrome
- req_firefox
- req_websocat
- msg_1byte
- msg_384kB_cont
- msg_508bytes
- msg_98305bytes
- ch_508b_close
- ch_close
- ff_1b_close
- ff_384kB_close
- ff_ping_ping_close
- ws_1b_close
- ws_508b_ping_close
- ws_98305b_close
- Makefile
- run-fuzzy.sh
- ws_file.c
- fuzzingclient.json
- CMakeLists.txt
- Makefile
- run-autobahn.sh
- validate_output.py
- .clang-format
- .gitignore
- CMakeLists.txt
- LICENSE
- Makefile
- README.md
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/Theldus/wsServer
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd wsServer
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. CMake
보통 추천사전 준비물
cmake ..
소스코드를 분석해 빌드 설정 파일을 생성합니다 (build 폴더 안에서 실행해야 함).
build 폴더 안에 실행 파일이 생성됐는지 확인하고, 직접 실행해보세요 (예: ./build/앱이름).
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
3. Make
보통사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Make Linux/macOS는 보통 기본 설치되어 있습니다. Windows는 별도 설치(예: MSYS2, WSL)가 필요합니다.
make
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
make install # Or make install DESTDIR=/my/folder/
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
에러 없이 끝나면 성공입니다. 생성된 실행 파일을 직접 실행해보세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
