lua-users home
lua-l archive

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


On Thu, May 6, 2010 at 10:55 AM, Aurora <bravefly@gmail.com> wrote:
> struct cookie
> {
>  struct cookie *next;
>  char *name;
>  char *value;
>  char *domain;
>  char *path;
>  long expire;
>  unsigned int version;
>  short secure;
>  [
>  short session;        /* transient: do not (de)serialize */
>  short env;            /* transient: do not (de)serialize */
>  short modified;       /* transient: do not (de)serialize */
>  ]
> };

That's definitely not C!  What's the system/context/etc ?

steve d.