From 543818327614646edb9dc432832f75057fda63f7 Mon Sep 17 00:00:00 2001 From: Eric Salama Date: Wed, 15 Nov 2017 14:14:30 +0100 Subject: [PATCH] CONTRIB: spoa_example: remove SPOE enums that are useless for clients --- contrib/spoa_example/include/spoe_types.h | 25 ----------------------- 1 file changed, 25 deletions(-) diff --git a/contrib/spoa_example/include/spoe_types.h b/contrib/spoa_example/include/spoe_types.h index c3b297f83..8f93edd21 100644 --- a/contrib/spoa_example/include/spoe_types.h +++ b/contrib/spoa_example/include/spoe_types.h @@ -63,31 +63,6 @@ #define SPOE_FRM_FL_FIN 0x00000001 #define SPOE_FRM_FL_ABRT 0x00000002 -/* All possible states for a SPOE context */ -enum spoe_ctx_state { - SPOE_CTX_ST_NONE = 0, - SPOE_CTX_ST_READY, - SPOE_CTX_ST_ENCODING_MSGS, - SPOE_CTX_ST_SENDING_MSGS, - SPOE_CTX_ST_WAITING_ACK, - SPOE_CTX_ST_DONE, - SPOE_CTX_ST_ERROR, -}; - -/* All possible states for a SPOE applet */ -enum spoe_appctx_state { - SPOE_APPCTX_ST_CONNECT = 0, - SPOE_APPCTX_ST_CONNECTING, - SPOE_APPCTX_ST_IDLE, - SPOE_APPCTX_ST_PROCESSING, - SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY, - SPOE_APPCTX_ST_WAITING_SYNC_ACK, - SPOE_APPCTX_ST_DISCONNECT, - SPOE_APPCTX_ST_DISCONNECTING, - SPOE_APPCTX_ST_EXIT, - SPOE_APPCTX_ST_END, -}; - /* All supported SPOE actions */ enum spoe_action_type { SPOE_ACT_T_SET_VAR = 1,