SO_LINGER test
[corutils.git] / test_listen.c
blob0239d158b0ab3663f10692e4402acf3f1bf3a26b
1 /**
2 * Connection oriented routing user space utils
3 * Copyright (C) 2009-2011
4 * Authors:
5 * Michael Blizek
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 * 02110-1301, USA.
23 #include <sys/socket.h>
24 #include <stdio.h>
25 #include <string.h>
27 #include "libcor.h"
29 int main(void)
31 int fd, rc, fd2;
33 struct cor_sockaddr addr;
34 memset(&addr, 0, sizeof(struct cor_sockaddr));
35 addr.sin_family = AF_COR;
36 addr.port = htons(1);
38 fd = socket(PF_COR, SOCK_STREAM, 0);
39 printf("socket\n");
40 if(fd < 0) {
41 perror("socket");
42 goto early_out;
45 rc = bind(fd, (struct sockaddr*)&addr, sizeof(addr));
46 printf("bind\n");
47 if(rc < 0) {
48 perror("bind");
49 goto out;
52 rc = listen(fd, 10);
53 printf("listen\n");
54 if(rc < 0) {
55 perror("listen");
56 goto out;
60 fd2 = accept(fd, 0, 0);
61 printf("accept\n");
63 sleep(2);
65 close(fd2);
66 printf("success\n");
68 out:
69 close(fd);
71 early_out:
72 //sleep(10);
74 return 0;