aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2022-05-30ncsitest: Fix build with msvcSamuel Thibault1-7/+9
2022-05-28Do not use ssize_t on WindowsSamuel Thibault2-2/+2
It doesn't have it.
2022-05-18ncsi: Add Mellanox Get Mac Address handlerPeter Delevoryas1-0/+54
Attempted to mirror the upstream Linux driver[1] as closely as reasonably possible. [1] https://github.com/torvalds/linux/blob/42226c989789d8da4af1de0c31070c96726d990c/net/ncsi/ncsi-rsp.c#L614-L638 Signed-off-by: Peter Delevoryas <pdel@fb.com>
2022-05-18ncsi: Add OEM command handlerPeter Delevoryas1-2/+48
This commit just sets up the OEM command handler to respond with "unsupported" for now, as verified in the test. Signed-off-by: Peter Delevoryas <pdel@fb.com>
2022-05-18ncsi: Add basic test for Get Version ID responsePeter Delevoryas1-0/+74
Signed-off-by: Peter Delevoryas <pdel@fb.com>
2022-05-04win32: declare some local functions as staticPaolo Bonzini1-1/+1
These functions do not have a prototype and are not meant to be public. Declare them as static. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2022-05-02Merge branch 'inet6_bsd' into 'master'Samuel Thibault1-1/+3
Include <sys/socket.h> and <arpa/inet.h> for AF_INET6 and inet_pton Closes #58 See merge request slirp/libslirp!120
2022-05-01Include <sys/socket.h> and <arpa/inet.h> for AF_INET6 and inet_ptonSamuel Thibault1-1/+3
Fixes #58
2022-04-10pingtest: port to timer_new_opaquePaolo Bonzini1-8/+8
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2021-06-07pingtest: Add a trivial ping testSamuel Thibault1-0/+488
This is a simple working example. Fixes #30 Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>