diff --git a/apps/sam/c/inc/sam.h b/apps/sam/c/inc/sam.h index eaa90d6c55d098c46d32b596ac545980808bdfdf..1b9d0eec4d0da912213f924f4d124271f8f9c017 100644 --- a/apps/sam/c/inc/sam.h +++ b/apps/sam/c/inc/sam.h @@ -97,7 +97,8 @@ typedef enum { /* see sam_strerror() for detailed descriptions of these */ SAM_INVALID_KEY, SAM_KEY_NOT_FOUND, SAM_PEER_NOT_FOUND, SAM_TIMEOUT, SAM_UNKNOWN, /* error codes from LibSAM */ - SAM_BAD_VERSION, SAM_CALLBACKS_UNSET, SAM_SOCKET_ERROR, SAM_TOO_BIG + SAM_BAD_STYLE, SAM_BAD_VERSION, SAM_CALLBACKS_UNSET, SAM_SOCKET_ERROR, + SAM_TOO_BIG } samerr_t; /* diff --git a/apps/sam/c/src/sam.c b/apps/sam/c/src/sam.c index e413dac6c784690f29c22beec7a33c449a23b3ad..9f2902f5bcd227593a4d96b184f60da27928e2a8 100644 --- a/apps/sam/c/src/sam.c +++ b/apps/sam/c/src/sam.c @@ -118,6 +118,7 @@ bool sam_close(sam_sess_t *session) * samport - SAM port * destname - destination name for this program, or "TRANSIENT" for a random * dest + * style - the connection style (stream, datagram, or raw) * tunneldepth - length of the I2P tunnels created by this program (longer is * more anonymous, but slower) * @@ -145,9 +146,10 @@ samerr_t sam_connect(sam_sess_t *session, const char *samhost, uint16_t samport, return SAM_CALLBACKS_UNSET; } } else if (style == SAM_RAW) { - assert(false); /* not implemented yet */ + abort(); /* not implemented yet */ } else { - assert(false); /* unknown style */ + SAMLOGS("Unknown connection style"); + return SAM_BAD_STYLE; } #ifdef WINSOCK @@ -857,7 +859,7 @@ static samerr_t sam_session_create(sam_sess_t *session, const char *destname, "tunnels.depthOutbound=%u\n", destname, tunneldepth, tunneldepth); } else { /* SAM_RAW */ - assert(false); /* unimplemented */ + abort(); /* unimplemented */ } sam_write(session, cmd, strlen(cmd)); @@ -1115,6 +1117,8 @@ const char *sam_strerror(samerr_t code) /* * SAM_UNKNOWN deliberately left out (goes to default) */ + case SAM_BAD_STYLE: /* Style must be stream, datagram, or raw */ + return "Bad connection style"; case SAM_BAD_VERSION: /* sam_hello() had an unexpected reply */ return "Bad SAM version"; case SAM_CALLBACKS_UNSET: /* Some callbacks are still set to NULL */