Packets sent out through net_tx_fiber go through psock_send() where they wait for data_is_sent_and_acked() to process them. data_is_sent_and_acked() looks at the underlying connection's MSS (maximum segment size) before putting them on the wire through uip_send(). The trouble is that that linkage between the outgoing buffer and the connection hasn't been established at the point data_is_sent_and_acked() is called--this normally happens through a call to uip_set_conn(). So data_is_sent_and_acked() fetches an invalid connection handle and makes its choice using an arbitrary MSS. In my particular case, this arbitrary value was 0, and so packets weren't being sent out. Change-Id: I42e8ae104ac20f8df8780c8aee6964ed37113ba0 Signed-off-by: Rohit Grover <rohit.grover@arm.com>
29 lines
880 B
C
29 lines
880 B
C
/** @file
|
|
* @brief Network context definitions
|
|
*
|
|
* An API for applications to define a network connection.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2015 Intel Corporation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef __NET_CONTEXT_H
|
|
#define __NET_CONTEXT_H
|
|
|
|
void *net_context_get_internal_connection(struct net_context *context);
|
|
|
|
#endif /* #ifndef __NET_CONTEXT_H */
|