Home  >  Article  >  Backend Development  >  haskell实现多线程服务器实例代码

haskell实现多线程服务器实例代码

WBOY
WBOYOriginal
2016-06-06 11:28:161091browse

代码如下:


module Main where

import Network.Socket
import Control.Concurrent

main :: IO ()
main = do
    sock     bindSocket sock (SockAddrInet 4242 iNADDR_ANY)
    listen sock 10240
    mainLoop sock

mainLoop :: Socket -> IO ()
mainLoop sock = do
    conn     forkIO $ runConn conn
    mainLoop sock

runConn :: (Socket, SockAddr) -> IO ()
runConn (sock, tcp) = do
    sms    peeraddr     putStrLn sms
    runConn (sock, tcp)

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn