- Timestamp:
- 08/11/03 09:51:33 (5 years ago)
- Location:
- releases/openct-0.1.0/src/include/openct
- Files:
-
- 13 modified
-
apdu.h (modified) (2 diffs)
-
buffer.h (modified) (2 diffs)
-
conf.h (modified) (2 diffs)
-
device.h (modified) (2 diffs)
-
driver.h (modified) (2 diffs)
-
error.h (modified) (2 diffs)
-
ifd.h (modified) (2 diffs)
-
logging.h (modified) (2 diffs)
-
openct.h (modified) (2 diffs)
-
pathnames.h (modified) (2 diffs)
-
protocol.h (modified) (2 diffs)
-
socket.h (modified) (2 diffs)
-
tlv.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
releases/openct-0.1.0/src/include/openct/apdu.h
r144 r313 5 5 */ 6 6 7 #ifndef IFD_APDU_H8 #define IFD_APDU_H7 #ifndef OPENCT_APDU_H 8 #define OPENCT_APDU_H 9 9 10 10 typedef struct ifd_iso_apdu { … … 37 37 extern int ifd_apdu_case(const void *, size_t); 38 38 39 #endif /* IFD_APDU_H */39 #endif /* OPENCT_APDU_H */ -
releases/openct-0.1.0/src/include/openct/buffer.h
r249 r313 5 5 */ 6 6 7 #ifndef IFD_BUFFER_H8 #define IFD_BUFFER_H7 #ifndef OPENCT_BUFFER_H 8 #define OPENCT_BUFFER_H 9 9 10 10 #include <sys/types.h> … … 34 34 35 35 36 #endif /* IFD_BUFFER_H */36 #endif /* OPENCT_BUFFER_H */ -
releases/openct-0.1.0/src/include/openct/conf.h
r164 r313 5 5 */ 6 6 7 #ifndef IFD_CONFIG_H8 #define IFD_CONFIG_H7 #ifndef OPENCT_CONF_H 8 #define OPENCT_CONF_H 9 9 10 10 #define IFD_DEFAULT_MODULES_DIR "/usr/lib/ifd" … … 46 46 const char *, ifd_conf_node_t **, size_t); 47 47 48 #endif /* IFD_CONFIG_H */48 #endif /* OPENCT_CONF_H */ -
releases/openct-0.1.0/src/include/openct/device.h
r287 r313 5 5 */ 6 6 7 #ifndef IFD_DEVICE_H8 #define IFD_DEVICE_H7 #ifndef OPENCT_DEVICE_H 8 #define OPENCT_DEVICE_H 9 9 10 10 #include <openct/ifd.h> … … 104 104 extern int ifd_serial_get_dtr(ifd_device_t *); 105 105 106 #endif /* IFD_DEVICE_H */106 #endif /* OPENCT_DEVICE_H */ -
releases/openct-0.1.0/src/include/openct/driver.h
r250 r313 5 5 */ 6 6 7 #ifndef IFD_DRIVER_H8 #define IFD_DRIVER_H7 #ifndef OPENCT_DRIVER_H 8 #define OPENCT_DRIVER_H 9 9 10 10 #include <openct/device.h> … … 69 69 70 70 71 #endif /* IFD_DRIVER_H */71 #endif /* OPENCT_DRIVER_H */ -
releases/openct-0.1.0/src/include/openct/error.h
r247 r313 5 5 */ 6 6 7 #ifndef IFD_ERROR_H8 #define IFD_ERROR_H7 #ifndef OPENCT_ERROR_H 8 #define OPENCT_ERROR_H 9 9 10 10 #define IFD_SUCCESS 0 … … 32 32 extern const char * ct_hexdump(const unsigned char *, size_t); 33 33 34 #endif /* IFD_ERROR_H */34 #endif /* OPENCT_ERROR_H */ -
releases/openct-0.1.0/src/include/openct/ifd.h
r250 r313 5 5 */ 6 6 7 #ifndef IFD_CORE_H8 #define IFD_CORE_H7 #ifndef OPENCT_IFD_H 8 #define OPENCT_IFD_H 9 9 10 10 #include <sys/types.h> … … 166 166 167 167 168 #endif /* IFD_CORE_H */168 #endif /* OPENCT_IFD_H */ -
releases/openct-0.1.0/src/include/openct/logging.h
r158 r313 5 5 */ 6 6 7 #ifndef IFD_LOGGING_H8 #define IFD_LOGGING_H7 #ifndef OPENCT_LOGGING_H 8 #define OPENCT_LOGGING_H 9 9 10 10 extern void ct_error(const char *, ...); … … 13 13 extern void ct_log_destination(const char *); 14 14 15 #endif /* IFD_LOGGING_H */15 #endif /* OPENCT_LOGGING_H */ -
releases/openct-0.1.0/src/include/openct/openct.h
r250 r313 5 5 */ 6 6 7 #ifndef OPENCT_ H8 #define OPENCT_ H7 #ifndef OPENCT_OPENCT_H 8 #define OPENCT_OPENCT_H 9 9 10 10 #include <sys/types.h> … … 89 89 extern int ct_status_update(ct_info_t *); 90 90 91 #endif /* OPENCT_H */ 92 91 #endif /* OPENCT_OPENCT_H */ -
releases/openct-0.1.0/src/include/openct/pathnames.h
r184 r313 6 6 */ 7 7 8 #ifndef OPENCT_ CONFIG_H9 #define OPENCT_ CONFIG_H8 #ifndef OPENCT_PATHNAMES_H 9 #define OPENCT_PATHNAMES_H 10 10 11 11 #define OPENCT_CONFIG_PATH "/etc/openct.conf" … … 15 15 #define OPENCT_IFDHANDLER_PATH "/usr/sbin/openct-ifdhandler" 16 16 17 #endif /* OPENCT_ CONFIG_H */17 #endif /* OPENCT_PATHNAMES_H */ -
releases/openct-0.1.0/src/include/openct/protocol.h
r250 r313 6 6 */ 7 7 8 #ifndef IFDMGR_PROTOCOL_H9 #define IFDMGR_PROTOCOL_H8 #ifndef OPENCT_PROTOCOL_H 9 #define OPENCT_PROTOCOL_H 10 10 11 11 /* … … 51 51 52 52 53 #endif /* IFDMGR_PROTOCOL_H */53 #endif /* OPENCT_PROTOCOL_H */ -
releases/openct-0.1.0/src/include/openct/socket.h
r160 r313 5 5 */ 6 6 7 #ifndef IFDD_SOCKET_H8 #define IFDD_SOCKET_H7 #ifndef OPENCT_SOCKET_H 8 #define OPENCT_SOCKET_H 9 9 10 10 #include <sys/types.h> … … 61 61 extern void ct_socket_unlink(ct_socket_t *); 62 62 63 #endif /* IFDD_SOCKET_H */63 #endif /* OPENCT_SOCKET_H */ -
releases/openct-0.1.0/src/include/openct/tlv.h
r128 r313 5 5 */ 6 6 7 #ifndef IFD_TLV_H8 #define IFD_TLV_H7 #ifndef OPENCT_TLV_H 8 #define OPENCT_TLV_H 9 9 10 10 #include <openct/protocol.h> … … 43 43 const unsigned char *, size_t); 44 44 45 #endif /* IFD_TLV_H */45 #endif /* OPENCT_TLV_H */
