lwip-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-devel] [task #9032] Provide means to get Version of Stack and subm


From: Simon Goldschmidt
Subject: [lwip-devel] [task #9032] Provide means to get Version of Stack and submodules
Date: Thu, 12 Feb 2009 21:03:16 +0000
User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; de; rv:1.9.0.6) Gecko/2009011912 Firefox/3.0.6

Update of task #9032 (project lwip):

                  Status:                    None => Done                   
             Assigned to:                    None => goldsimon              
             Open/Closed:                    Open => Closed                 

    _______________________________________________________

Follow-up Comment #3:

I've checked this in to init.h (I thought that's the best place for it, since
we don't have an lwip.h file):

/** X.x.x: Major version of the stack */
#define LWIP_VERSION_MAJOR      1
/** x.X.x: Minor version of the stack */
#define LWIP_VERSION_MINOR      3
/** x.x.X: Revision of the stack */
#define LWIP_VERSION_REVISION   1
/** For release candidates, this is set to 0..255
  * For official releases, this is set to 255 (i.e. LWIP_RC_RELEASE) */
#define LWIP_VERSION_RC         0

/** LWIP_VERSION_RC is set to LWIP_RC_RELEASE for official releases */
#define LWIP_RC_RELEASE    255

/** Provides the version of the stack */
#define LWIP_VERSION   (LWIP_VERSION_MAJOR << 24   | LWIP_VERSION_MINOR << 16
|
                        LWIP_VERSION_REVISION << 8 | LWIP_VERSION_RC)


So I guess we can close this now. If someone thinks different, speak up! :-)

    _______________________________________________________

Reply to this item at:

  <http://savannah.nongnu.org/task/?9032>

_______________________________________________
  Nachricht geschickt von/durch Savannah
  http://savannah.nongnu.org/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]