Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 603 Bytes

chapter08.md

File metadata and controls

27 lines (18 loc) · 603 Bytes

chapter 8: 도메인 이름과 인터넷 주소

  • DNS 가 왜 필요할까?
#include <netdb.h>

struct hostent * gethostbyname(const char * hostname);

결과

hostent

어떻게?

  • 그렇다면 DNS 서버의 IP 주소는 어떻게 알까?
  • IP 주소는 알아왔다고 치자, 어떻게 보내지?
  • 같은 subnet 인건 어떻게 알지?(gateway 주소)

MORE