File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / inc / global.h
Revision 1.2.2.4: download - view: text, annotated - select for diffs - revision graph
Tue Jun 19 08:32:17 2012 UTC (12 years ago) by misho
Branches: mqtt1_1
add qos=0 publishing

    1: #ifndef __GLOBAL_H
    2: #define __GLOBAL_H
    3: 
    4: 
    5: #include <stdio.h>
    6: #include <stdlib.h>
    7: #include <stdarg.h>
    8: #include <string.h>
    9: #include <unistd.h>
   10: #include <fcntl.h>
   11: #include <errno.h>
   12: #include <assert.h>
   13: #include <syslog.h>
   14: #include <dlfcn.h>
   15: #include <time.h>
   16: #include <netdb.h>
   17: #include <signal.h>
   18: #include <pwd.h>
   19: #include <pthread.h>
   20: #include <poll.h>
   21: #include <regex.h>
   22: #include <sys/types.h>
   23: #include <sys/param.h>
   24: #include <sys/stat.h>
   25: #include <sys/wait.h>
   26: #include <sys/mman.h>
   27: #include <sys/socket.h>
   28: #include <netinet/in.h>
   29: #include <arpa/inet.h>
   30: #include <aitio.h>
   31: #include <aitcfg.h>
   32: #include <aitsched.h>
   33: #include <aitmqtt.h>
   34: #include <sqlite3.h>
   35: 
   36: #include "defs.h"
   37: 
   38: 
   39: #endif

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