[c5808b41] | 1 | /*
|
---|
| 2 | * Copyright (c) 2011 Jiri Svoboda
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup tcp
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 |
|
---|
| 33 | /**
|
---|
[032bbe7] | 34 | * @file Internal TCP test
|
---|
[c5808b41] | 35 | */
|
---|
| 36 |
|
---|
| 37 | #include <async.h>
|
---|
| 38 | #include <errno.h>
|
---|
| 39 | #include <stdio.h>
|
---|
| 40 | #include <thread.h>
|
---|
[32105348] | 41 | #include <str.h>
|
---|
[c5808b41] | 42 | #include "state.h"
|
---|
| 43 | #include "tcp_type.h"
|
---|
| 44 |
|
---|
| 45 | #include "test.h"
|
---|
| 46 |
|
---|
[d9ce049] | 47 | #define RCV_BUF_SIZE 64
|
---|
| 48 |
|
---|
[c5808b41] | 49 | static void test_srv(void *arg)
|
---|
| 50 | {
|
---|
| 51 | tcp_conn_t *conn;
|
---|
| 52 | tcp_sock_t sock;
|
---|
[d9ce049] | 53 | char rcv_buf[RCV_BUF_SIZE + 1];
|
---|
| 54 | size_t rcvd;
|
---|
| 55 | xflags_t xflags;
|
---|
[c5808b41] | 56 |
|
---|
| 57 | printf("test_srv()\n");
|
---|
| 58 | sock.port = 1024;
|
---|
| 59 | sock.addr.ipv4 = 0x7f000001;
|
---|
| 60 | tcp_uc_open(80, &sock, ap_passive, &conn);
|
---|
[7cf7ded] | 61 | conn->name = (char *) "S";
|
---|
[d9ce049] | 62 |
|
---|
| 63 | while (true) {
|
---|
| 64 | printf("User receive...\n");
|
---|
| 65 | tcp_uc_receive(conn, rcv_buf, RCV_BUF_SIZE, &rcvd, &xflags);
|
---|
[8c7a054] | 66 | if (rcvd == 0) {
|
---|
| 67 | printf("End of data reached.\n");
|
---|
| 68 | break;
|
---|
| 69 | }
|
---|
[d9ce049] | 70 | rcv_buf[rcvd] = '\0';
|
---|
| 71 | printf("User received %zu bytes '%s'.\n", rcvd, rcv_buf);
|
---|
| 72 |
|
---|
| 73 | async_usleep(1000*1000*2);
|
---|
| 74 | }
|
---|
[8c7a054] | 75 |
|
---|
[7cf7ded] | 76 | async_usleep(/*10**/1000*1000);
|
---|
[6e88fea] | 77 |
|
---|
| 78 | printf("test_srv() close connection\n");
|
---|
| 79 | tcp_uc_close(conn);
|
---|
| 80 |
|
---|
[8c7a054] | 81 | printf("test_srv() terminating\n");
|
---|
[c5808b41] | 82 | }
|
---|
| 83 |
|
---|
| 84 | static void test_cli(void *arg)
|
---|
| 85 | {
|
---|
| 86 | tcp_conn_t *conn;
|
---|
| 87 | tcp_sock_t sock;
|
---|
[32105348] | 88 | const char *msg = "Hello World!";
|
---|
[c5808b41] | 89 |
|
---|
| 90 | printf("test_cli()\n");
|
---|
| 91 |
|
---|
| 92 | sock.port = 80;
|
---|
| 93 | sock.addr.ipv4 = 0x7f000001;
|
---|
[8c7a054] | 94 |
|
---|
[c5808b41] | 95 | async_usleep(1000*1000*3);
|
---|
| 96 | tcp_uc_open(1024, &sock, ap_active, &conn);
|
---|
[7cf7ded] | 97 | conn->name = (char *) "C";
|
---|
[32105348] | 98 |
|
---|
| 99 | async_usleep(1000*1000*10);
|
---|
| 100 | tcp_uc_send(conn, (void *)msg, str_size(msg), 0);
|
---|
[8c7a054] | 101 |
|
---|
[7cf7ded] | 102 | async_usleep(1000*1000*3/**20*2*/);
|
---|
[8c7a054] | 103 | tcp_uc_close(conn);
|
---|
[c5808b41] | 104 | }
|
---|
| 105 |
|
---|
| 106 | void tcp_test(void)
|
---|
| 107 | {
|
---|
| 108 | thread_id_t srv_tid;
|
---|
| 109 | thread_id_t cli_tid;
|
---|
| 110 | int rc;
|
---|
| 111 |
|
---|
| 112 | printf("tcp_test()\n");
|
---|
| 113 |
|
---|
| 114 | rc = thread_create(test_srv, NULL, "test_srv", &srv_tid);
|
---|
| 115 | if (rc != EOK) {
|
---|
| 116 | printf("Failed to create server thread.\n");
|
---|
| 117 | return;
|
---|
| 118 | }
|
---|
| 119 |
|
---|
| 120 | rc = thread_create(test_cli, NULL, "test_cli", &cli_tid);
|
---|
| 121 | if (rc != EOK) {
|
---|
| 122 | printf("Failed to create client thread.\n");
|
---|
| 123 | return;
|
---|
| 124 | }
|
---|
| 125 | }
|
---|
| 126 |
|
---|
| 127 | /**
|
---|
| 128 | * @}
|
---|
| 129 | */
|
---|