iPhone HTTP Server

前端 未结 4 1866
北荒
北荒 2021-02-03 15:39

Can someone give me simple code to help with creating an HTTP server for the iPhone. Something simple with much documentation would be appreciated. Anything you have please shar

4条回答
  •  被撕碎了的回忆
    2021-02-03 16:21

    If you're unfamiliar with network programming your best bet is to first read Beej's Guide to Network Programming and then read the HTTP 1.1 spec before you look at source code (as you should have an understanding of the protocol before you start looking at implementations).

    A simple Google search turned up cocoahttpserver and iSpit. Otherwise, you could download Apache and look at its source code, but that's not exactly a simple implementation.

提交回复
热议问题