aarch64 어셈블리로 만든 macOS 정적 HTTP 서버 소개.
이 글에서는 aarch64 어셈블리 언어로 작성된 macOS용 소형 정적 HTTP 서버에 대해 다룹니다. 이 서버는 libc 래퍼 없이 Darwin 원시 시스템 호출만을 사용하여 구현되었습니다. HTTP 메서드인 GET, HEAD, PUT, OPTIONS, DELETE를 지원하며, 소스 코드는 GitHub에서 확인할 수 있습니다.
Introduction to a small static HTTP server built with aarch64 assembly for macOS.
This article discusses a small static HTTP server for macOS written entirely in aarch64 assembly language. The server is implemented using only raw system calls from Darwin without any libc wrapper. It supports various HTTP methods including GET, HEAD, PUT, OPTIONS, and DELETE, and the source code is available on GitHub.