diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-11-01 16:31:59 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-11-01 16:31:59 -0300 |
commit | e769c45c8c5559c5ad9cea2e3038f6a5da968b01 (patch) | |
tree | d1a9aa73f8104c5f023fd164232b3f9996800785 /dpi/cookies.c | |
parent | f22fea661d0755029173a21fa72f7c131ee884e7 (diff) |
Introduced the new tokenizing dsh API to DPIP
The new DPIP sock handler API returns tokens, taking care to assemble token
splits, wait if necessary, or indicate EAGAIN in case of nonblocking mode.
This is a mayor simplification because the details are transparent to the
API user (i.e. dpi developer).
Diffstat (limited to 'dpi/cookies.c')
-rw-r--r-- | dpi/cookies.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpi/cookies.c b/dpi/cookies.c index 21f4c1dc..f5cfc188 100644 --- a/dpi/cookies.c +++ b/dpi/cookies.c @@ -1432,7 +1432,7 @@ static void termination_handler(int signum) /* * -- MAIN ------------------------------------------------------------------- */ -int main (void) { +int main(void) { struct sockaddr_un spun; int temp_sock_descriptor; socklen_t address_size; |