search for: udp_io

Displaying 3 results from an estimated 3 matches for "udp_io".

2016 Feb 28
0
[PATCH 0/1] UEFI UDP/TFTP
...0600 +++ b/core/fs/pxe/pxe.h 2016-02-28 08:44:47.127996962 -0700 @@ -130,6 +130,7 @@ union net_private { struct net_private_efi { struct efi_binding *binding; /* EFI binding for protocol */ uint16_t localport; /* Local port number (0=not in use) */ + void* context; /* Holds the UDP_IO Instance (used in the new efi UDP codebase) */ } efi; }; diff -uprN a/efi/udp.c b/efi/udp.c --- a/efi/udp.c 2014-10-06 10:27:44.000000000 -0600 +++ b/efi/udp.c 2016-02-28 08:41:29.867226806 -0700 @@ -1,5 +1,6 @@ /* - * Copyright 2013-2014 Intel Corporation - All Rights Reserved + * Serva (c) 20...
2016 Feb 24
6
[PATCH 2/5] ntfs: remove unused variable and have ntfssect use char API calls
The variable 'ok' is never used and generates a warning. Remove it. Also ntfssect.c is designed to be compiled in non Unicode mode when using MSVC compilers, so remove all ambiguity about it (LPCTSTR -> LPCSTR, use of 'A' API calls) so that it doesn't break when compiled in Unicode mode, which is what Rufus uses with MSVC. -------------- next part --------------
2016 Feb 28
2
[PATCH 0/1] UEFI UDP/TFTP
...e.h 2016-02-28 08:44:47.127996962 -0700 > @@ -130,6 +130,7 @@ union net_private { > struct net_private_efi { > struct efi_binding *binding; /* EFI binding for protocol */ > uint16_t localport; /* Local port number (0=not in use) */ > + void* context; /* Holds the UDP_IO Instance (used in the new efi UDP codebase) */ > } efi; > }; > > diff -uprN a/efi/udp.c b/efi/udp.c > --- a/efi/udp.c 2014-10-06 10:27:44.000000000 -0600 > +++ b/efi/udp.c 2016-02-28 08:41:29.867226806 -0700 > @@ -1,5 +1,6 @@ > /* > - * Copyright 2013-2014 Intel Corpora...