mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-09 08:17:53 -06:00
net: Rename send_queue to incoming_queue
Each networking client has a queue for packets that could not yet be delivered to that client. Calling this queue "send_queue" is highly confusing as it has nothing to to with packets send from this client but to it. Avoid this confusing by renaming it to "incoming_queue". Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
aa4f082f75
commit
067404be62
3 changed files with 9 additions and 9 deletions
|
@ -69,7 +69,7 @@ struct NetClientState {
|
|||
int link_down;
|
||||
QTAILQ_ENTRY(NetClientState) next;
|
||||
NetClientState *peer;
|
||||
NetQueue *send_queue;
|
||||
NetQueue *incoming_queue;
|
||||
char *model;
|
||||
char *name;
|
||||
char info_str[256];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue