Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xgenericeventcookie(3) [centos man page]

XGetEventData(3)						  XLIB FUNCTIONS						  XGetEventData(3)

NAME
XGetEventData, XFreeEventData, XGenericEventCookie - retrieve and free additional event data through cookies. SYNTAX
Bool XGetEventData(Display *display, XGenericEventCookie *cookie); void XFreeEventData(Display *display, XGenericEventCookie *cookie); ARGUMENTS
display Specifies the connection to the X server. cookie Specifies the cookie to free or retrieve the data for. STRUCTURES
typedef struct { int type; unsigned long serial; Bool send_event; Display *display; int extension; int evtype; unsigned int cookie; void *data; } XGenericEventCookie; DESCRIPTION
Some extension XGenericEvents require additional memory to store information. For these events, the library returns a XGenericEventCookie with a token ('cookie') unique to this event. The XGenericEventCookie's data pointer is undefined until XGetEventData is called. The XGetEventData function retrieves this extra data for the given cookie. No round-trip to the server is required. If the cookie is invalid or the event is not an event handled by cookie handlers, False is returned. If XGetEventData returns True, the cookie's data pointer points to the memory containing the event information. A client must call XFreeEventData to free this memory. XGetEventData returns False for multiple calls for the same event cookie. The XFreeEventData function frees the data associated with a cookie. A client must call XFreeEventData for each cookie claimed with XGetEventData. EXAMPLE CODE
XEvent event; XGenericEventCookie *cookie = &ev; XNextEvent(display, &event); if (XGetEventData(display, cookie)) { handle_cookie_event(cookie->data); } else handle_event(&event); } XFreeEventData(display, cookie); NOTES
A cookie is defined as unclaimed if it has been returned to the client through XNextEvent but its data has not been retrieved via XGetEventData. Subsequent calls to XNextEvent may free memory associated with unclaimed cookies. Multi-threaded X clients must ensure that XGetEventData is called before the next call to XNextEvent. SEE ALSO
XNextEvent(3), Xlib - C Language X Interface X Version 11 libX11 1.6.0 XGetEventData(3)

Check Out this Related Man Page

Mojo::Cookie::Response(3pm)				User Contributed Perl Documentation			       Mojo::Cookie::Response(3pm)

NAME
Mojo::Cookie::Response - HTTP 1.1 response cookie container SYNOPSIS
use Mojo::Cookie::Response; my $cookie = Mojo::Cookie::Response->new; $cookie->name('foo'); $cookie->value('bar'); say $cookie; DESCRIPTION
Mojo::Cookie::Response is a container for HTTP 1.1 response cookies. ATTRIBUTES
Mojo::Cookie::Response inherits all attributes from Mojo::Cookie and implements the followign new ones. "domain" my $domain = $cookie->domain; $cookie = $cookie->domain('localhost'); Cookie domain. "httponly" my $httponly = $cookie->httponly; $cookie = $cookie->httponly(1); HttpOnly flag, which can prevent client side scripts from accessing this cookie. "max_age" my $max_age = $cookie->max_age; $cookie = $cookie->max_age(60); Max age for cookie in seconds. "path" my $path = $cookie->path; $cookie = $cookie->path('/test'); Cookie path. "secure" my $secure = $cookie->secure; $cookie = $cookie->secure(1); Secure flag, which instructs browsers to only send this cookie over HTTPS connections. METHODS
Mojo::Cookie::Response inherits all methods from Mojo::Cookie and implements the following new ones. "expires" my $expires = $cookie->expires; $cookie = $cookie->expires(time + 60); $cookie = $cookie->expires(Mojo::Date->new(time + 60)); Expiration for cookie in seconds. "parse" my $cookies = $cookie->parse('f=b; path=/'); Parse cookies. "to_string" my $string = $cookie->to_string; Render cookie. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::Cookie::Response(3pm)
Man Page