Mercurial > cabal
diff sources/headers/network.hpp @ 4:a7051ac7118b
added primary parser implementation
renamed some functions to well-formed format
bool => false, pointers => NULL
removed useless eTime()
| author | Vlad Glagolev <enqlave@gmail.com> |
|---|---|
| date | Thu, 24 Jan 2008 19:38:34 +0300 |
| parents | 19227b0b7cc1 |
| children | 0faceb076254 |
line wrap: on
line diff
--- a/sources/headers/network.hpp Mon Jan 21 01:17:06 2008 +0300 +++ b/sources/headers/network.hpp Thu Jan 24 19:38:34 2008 +0300 @@ -43,11 +43,11 @@ #endif } address; - bool socketClose(); + bool closeSocket(); - bool hostResolve(pchar, address_type *, int inet = 0); - bool tcpActivate(int, pchar host = 0); - bool hostOpen(); + bool openHost(); + bool resolveHost(pchar, address_type *, int inet = 0); + bool activateTCP(int, pchar host = 0); int canRead(int); int canWrite(int);
