patchlwIP - A Lightweight TCP/IP stack - Patches: patch #10181, adedd initialization of custom...

 
 

You are not allowed to post comments on this tracker with your current authentication level.

patch #10181: adedd initialization of custom data in pbuf struct

Submitter:  Max <mastupristi>
Submitted:  Wed 23 Feb 2022 04:40:30 PM UTC
   
 
Category:  pbufs Priority:  7 - High
Status:  Duplicate Privacy:  Public
Assigned to:  goldsimon Open/Closed:  Closed
Planned Release:  2.2.1

Fri 13 Oct 2023 07:09:23 PM UTC, comment #1: 

Already fixed with patch #10072

Simon Goldschmidt <goldsimon>
Group administrator
Wed 23 Feb 2022 04:40:30 PM UTC, original submission:  

Implemented a way to initialize custom data in pbuf structure.

for example in the file lwipopts.h


#define LWIP_PBUF_CUSTOM_DATA        \
    bool     rxTimestamp_valid;      \
    uint32_t rxTimestamp;            \
    bool     txRequestToTimestamp;

#define LWIP_PBUF_INIT_CUSTOM_DATA(p)    \
    (p)->rxTimestamp_valid = false;      \
    (p)->rxTimestamp = 0;                \
    (p)->txRequestToTimestamp = false;


Max <mastupristi>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attached Files
file #52913:  patch1.patch added by mastupristi (933B - text/x-patch)

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by goldsimon (Posted a comment)
  • -email is unavailable- added by mastupristi (Submitted the item)
  • -email is unavailable- added by mastupristi
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

     

    Follow 6 latest changes.

    Date Changed by Updated Field Previous Value => Replaced by
    2023-10-13 goldsimon StatusNone Duplicate
        Assigned toNone goldsimon
        Open/ClosedOpen Closed
        Planned ReleaseNone 2.2.1
    2022-02-23 mastupristi Attached File- Added patch1.patch, #52913
        Carbon-Copy- Added -email is unavailable-

    Back to the top

    Powered by Savane 3.13-4448.
    Corresponding source code