search for: udpioondgramsent

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

2016 Feb 28
2
[PATCH 0/1] UEFI UDP/TFTP
...and 'src_port'. However: 'src_ip' and 'src_port' are not in } + * @param:ip, the source ip address } + * @param:port, the source port number, host-byte order <snip/> > -static EFIAPI void udp4_cb(EFI_EVENT event, void *context) > +VOID > +EFIAPI > +UdpIoOnDgramSent ( > + IN EFI_EVENT event, > + IN VOID* context > + ) Such coding style change did me really stop removing this unified patch. Groeten Geert Stappers -- Leven en laten leven ------------- volgend deel ------------ Een niet-tekst bijlage is gescrubt... Naam: signature.asc Type: appli...
2016 Feb 28
0
[PATCH 0/1] UEFI UDP/TFTP
...e cb_status = -1; -static EFIAPI void udp4_cb(EFI_EVENT event, void *context) -{ - (void)event; - - EFI_UDP4_COMPLETION_TOKEN *token = context; - if (token->Status == EFI_SUCCESS) - cb_status = 0; - else - cb_status = 1; +/** + * + * Send callback function + * + */ +VOID +EFIAPI +UdpIoOnDgramSent ( + IN EFI_EVENT event, + IN VOID* context + ) +{ + UDP_IO* udp_io; + EFI_UDP4_COMPLETION_TOKEN* token; + + udp_io = (UDP_IO*) context; + if( udp_io && + (token = udp_io->Token) && + token->Status == EFI_SUCCESS + ) + uefi_call_wrapper(BS->Signa...
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 --------------