File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / inc / mqtt.h
Revision 1.1.2.3: download - view: text, annotated - select for diffs - revision graph
Tue Dec 13 08:43:51 2011 UTC (12 years, 6 months ago) by misho
Branches: mqtt1_0
add new files

    1: #ifndef __MQTT_H
    2: #define __MQTT_H
    3: 
    4: 
    5: struct tagArgs {
    6: 	io_sockaddr_t	addr;
    7: 
    8: 	char		Dup;
    9: 	char		Retain;
   10: 	char		QoS;
   11: 	char		isFile;
   12: 	ait_val_t	Value;
   13: 
   14: 	ait_val_t	Publish;
   15: 
   16: 	array_t		*Subscribes;
   17: 
   18: 	void		(*free)(struct tagArgs*);
   19: };
   20: 
   21: extern struct tagArgs *args;
   22: 
   23: 
   24: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>