local_socket: set lc_peer when accept() instead of connect()

Signed-off-by: ligd <liguiding1@xiaomi.com>
This commit is contained in:
ligd 2021-10-15 18:36:30 +08:00 committed by Alin Jerpelea
parent dbaf8a92b4
commit 1970ce5116
3 changed files with 2 additions and 3 deletions

View File

@ -170,6 +170,7 @@ int local_accept(FAR struct socket *psock, FAR struct sockaddr *addr,
conn->lc_psock = psock;
#ifdef CONFIG_NET_LOCAL_SCM
conn->lc_peer = client;
client->lc_peer = conn;
#endif /* CONFIG_NET_LOCAL_SCM */
strncpy(conn->lc_path, client->lc_path, UNIX_PATH_MAX - 1);

View File

@ -176,6 +176,7 @@ void local_free(FAR struct local_conn_s *conn)
if (local_peerconn(conn) && conn->lc_peer)
{
conn->lc_peer->lc_peer = NULL;
conn->lc_peer = NULL;
}
#endif /* CONFIG_NET_LOCAL_SCM */

View File

@ -301,9 +301,6 @@ int psock_local_connect(FAR struct socket *psock,
UNIX_PATH_MAX - 1);
client->lc_path[UNIX_PATH_MAX - 1] = '\0';
client->lc_instance_id = local_generate_instance_id();
#ifdef CONFIG_NET_LOCAL_SCM
client->lc_peer = conn;
#endif /* CONFIG_NET_LOCAL_SCM */
/* The client is now bound to an address */