theLink 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard
c - tcl - cs - py - rb - jv - cc
Loading...
Searching...
No Matches
MqContextC_ConfigApi_Set_PY_API

MqContextC - various function to 'set' the configuration-data in a contextMore...

+ Collaboration diagram for MqContextC_ConfigApi_Set_PY_API:

Functions

static OT_ProcRet pymqmsgque_MqContextC_ConfigCheckStartAs (MqContextC_ARGS)
  Python: bool ctx.ConfigCheckStartAs(data:MqStartE) C-API
check if MqConfigS::startAs can be set to data
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetAllDebug (MqContextC_ARGS)
  Python: ctx.ConfigSetAllDebug(data:int32) C-API
set the MkRuntimeS::debug value
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetBuffersize (MqContextC_ARGS)
  Python: ctx.ConfigSetBuffersize(data:int32) C-API
set the MqIoConfigS::buffersize value
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetDaemon (MqContextC_ARGS)
  Python: ctx.ConfigSetDaemon(pidfile:string) C-API
start the server-context as daemon …
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIdentFrom (MqContextC_ARGS)
  Python: ctx.ConfigSetIdentFrom(data:MqIdentE) C-API
set the MqConfigS::identFrom value
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIgnoreExit (MqContextC_ARGS)
  Python: ctx.ConfigSetIgnoreExit(data:bool) C-API
set the MqSetupS::ignoreExit value
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIoPipe (MqContextC_ARGS)
  Python: ctx.ConfigSetIoPipe(fh:int32) C-API
set the pipe configuration data …
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIoTcp (MqContextC_ARGS)
  Python: ctx.ConfigSetIoTcp(?host:string="None"?, ?port:string="None"?, ?myhost:string="None"?, ?myport:string="None"?) C-API
configure a context to use a tcp-client-server-link
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIoTcpL (MqContextC_ARGS)
  Python: ctx.ConfigSetIoTcpL(vals:MkBufferListC) C-API
configure a context to use a tcp-client-server-link
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIoUds (MqContextC_ARGS)
  Python: ctx.ConfigSetIoUds(file:string) C-API
configure a context to use a uds-client-server-link
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIsServer (MqContextC_ARGS)
  Python: ctx.ConfigSetIsServer(data:bool) C-API
set the MqSetupS::isServer value
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIsString (MqContextC_ARGS)
  Python: ctx.ConfigSetIsString(data:bool) C-API
set the MqConfigS::native value 'S'string or 'L'owEndian or 'B'igEndian
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetName (MqContextC_ARGS)
  Python: ctx.ConfigSetName(data:string) C-API
set the MqConfigS::dispName value and cleanup old value
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetPkgsize (MqContextC_ARGS)
  Python: ctx.ConfigSetPkgsize(data:int32) C-API
set the MqIoConfigS::pkgsize value
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetPostfix (MqContextC_ARGS)
  Python: ctx.ConfigSetPostfix(data:string) C-API
set the client-part (2) of the application-identifer MqConfigS::dispName
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetPrefix (MqContextC_ARGS)
  Python: ctx.ConfigSetPrefix(data:string) C-API
set the server-part (1) of the application-identifer MqConfigS::dispName
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetStartAs (MqContextC_ARGS)
  Python: ctx.ConfigSetStartAs(data:MqStartE) C-API
set the MqConfigS::startAs value
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetStartAsString (MqContextC_ARGS)
  Python: ctx.ConfigSetStartAsString(data:string) C-API
set the MqConfigS::startAs value using string default, thread, fork or spawn
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetStorage (MqContextC_ARGS)
  Python: ctx.ConfigSetStorage(data:string) C-API
set the Storage value and cleanup old value
 
static OT_ProcRet pymqmsgque_MqContextC_ConfigSetTimeout (MqContextC_ARGS)
  Python: ctx.ConfigSetTimeout(data:MkTimeoutE|int32) C-API
set the MqIoConfigS::timeout value
 

Detailed Description

MqContextC - various function to 'set' the configuration-data in a context

Function Documentation

◆ pymqmsgque_MqContextC_ConfigCheckStartAs()

static OT_ProcRet pymqmsgque_MqContextC_ConfigCheckStartAs ( MqContextC_ARGS )
static

Python: bool ctx.ConfigCheckStartAs(data:MqStartE) C-API
check if MqConfigS::startAs can be set to data

Definition at line 1008 of file MqContextC_py.c.

1008 {
1010 OT_SETUP_ONEARG(ConfigCheckStartAs_doc)
1011 enum MqStartE data = 0;
1012 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqStartE,data))
1013 OT_CHECK_NOARGS
1014 OT_retObj_SET_BOL(MqConfigCheckStartAs (hdl, data))
1015 goto end;
1016 error:
1017 OT_retObj_SET_Error
1018 end:
1020}
#define ConfigCheckStartAs_doc
#define OT_SETUP_hdl
#define OT_retObj_RETURN
#define error
bool MqConfigCheckStartAs(MQ_CTX const ctx, enum MqStartE data)
check if MqConfigS::startAs can be set to data
MqStartE
User preferences on HOWTO start a new entity.

◆ pymqmsgque_MqContextC_ConfigSetAllDebug()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetAllDebug ( MqContextC_ARGS )
static

Python: ctx.ConfigSetAllDebug(data:int32) C-API
set the MkRuntimeS::debug value

Definition at line 1023 of file MqContextC_py.c.

1023 {
1025 OT_SETUP_ONEARG(ConfigSetAllDebug_doc)
1026 MK_I32 data = 0;
1027 OT_CHECK_REQUIRED(OT_CHECK_NI4 (data))
1028 OT_CHECK_NOARGS
1029 MkErrorC_Check(hdl,MqConfigSetAllDebug (hdl, data));
1030 OT_retObj_SET_None
1031 goto end;
1032 error:
1033 OT_retObj_SET_Error
1034 end:
1036}
#define ConfigSetAllDebug_doc
signed int MK_I32
#define MqConfigSetAllDebug(...)

◆ pymqmsgque_MqContextC_ConfigSetBuffersize()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetBuffersize ( MqContextC_ARGS )
static

Python: ctx.ConfigSetBuffersize(data:int32) C-API
set the MqIoConfigS::buffersize value

Definition at line 1039 of file MqContextC_py.c.

1039 {
1041 OT_SETUP_ONEARG(ConfigSetBuffersize_doc)
1042 MK_I32 data = 0;
1043 OT_CHECK_REQUIRED(OT_CHECK_NI4 (data))
1044 OT_CHECK_NOARGS
1045 MqConfigSetBuffersize (hdl, data);
1046 OT_retObj_SET_None
1047 goto end;
1048 error:
1049 OT_retObj_SET_Error
1050 end:
1052}
#define ConfigSetBuffersize_doc
void MqConfigSetBuffersize(MQ_CTX const ctx, MK_I32 data)
set the MqIoConfigS::buffersize value

◆ pymqmsgque_MqContextC_ConfigSetDaemon()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetDaemon ( MqContextC_ARGS )
static

Python: ctx.ConfigSetDaemon(pidfile:string) C-API
start the server-context as daemon …

Definition at line 1055 of file MqContextC_py.c.

1055 {
1057 OT_SETUP_ONEARG(ConfigSetDaemon_doc)
1058 MK_STRN pidfile = 0;
1059 OT_CHECK_REQUIRED(OT_CHECK_STRN (pidfile))
1060 OT_CHECK_NOARGS
1061 MkErrorC_Check(hdl,MqConfigSetDaemon (hdl, pidfile));
1062 OT_retObj_SET_None
1063 goto end;
1064 error:
1065 OT_retObj_SET_Error
1066 end:
1068}
#define ConfigSetDaemon_doc
const MK_STRB * MK_STRN
#define MqConfigSetDaemon(...)

◆ pymqmsgque_MqContextC_ConfigSetIdentFrom()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIdentFrom ( MqContextC_ARGS )
static

Python: ctx.ConfigSetIdentFrom(data:MqIdentE) C-API
set the MqConfigS::identFrom value

Definition at line 1071 of file MqContextC_py.c.

1071 {
1073 OT_SETUP_ONEARG(ConfigSetIdentFrom_doc)
1074 enum MqIdentE data = 0;
1075 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqIdentE,data))
1076 OT_CHECK_NOARGS
1077 MqConfigSetIdentFrom (hdl, data);
1078 OT_retObj_SET_None
1079 goto end;
1080 error:
1081 OT_retObj_SET_Error
1082 end:
1084}
#define ConfigSetIdentFrom_doc
void MqConfigSetIdentFrom(MQ_CTX const ctx, enum MqIdentE data)
set the MqConfigS::identFrom value
MqIdentE
identify the application using prefix (default) or factory …

◆ pymqmsgque_MqContextC_ConfigSetIgnoreExit()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIgnoreExit ( MqContextC_ARGS )
static

Python: ctx.ConfigSetIgnoreExit(data:bool) C-API
set the MqSetupS::ignoreExit value

Definition at line 1087 of file MqContextC_py.c.

1087 {
1089 OT_SETUP_ONEARG(ConfigSetIgnoreExit_doc)
1090 MK_BOOL data = 0;
1091 OT_CHECK_REQUIRED(OT_CHECK_bool (data))
1092 OT_CHECK_NOARGS
1093 MqConfigSetIgnoreExit (hdl, data);
1094 OT_retObj_SET_None
1095 goto end;
1096 error:
1097 OT_retObj_SET_Error
1098 end:
1100}
#define ConfigSetIgnoreExit_doc
bool MK_BOOL
void MqConfigSetIgnoreExit(MQ_CTX const ctx, bool data)
set the MqSetupS::ignoreExit value

◆ pymqmsgque_MqContextC_ConfigSetIoPipe()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIoPipe ( MqContextC_ARGS )
static

Python: ctx.ConfigSetIoPipe(fh:int32) C-API
set the pipe configuration data …

Definition at line 1103 of file MqContextC_py.c.

1103 {
1105 OT_SETUP_ONEARG(ConfigSetIoPipe_doc)
1106 MQ_SOCK_HDL fh = 0;
1107 OT_CHECK_REQUIRED(OT_CHECK_NI4 (fh))
1108 OT_CHECK_NOARGS
1109 MkErrorC_Check(hdl,MqConfigSetIoPipe (hdl, fh));
1110 OT_retObj_SET_None
1111 goto end;
1112 error:
1113 OT_retObj_SET_Error
1114 end:
1116}
#define ConfigSetIoPipe_doc
#define MqConfigSetIoPipe(...)
int MQ_SOCK_HDL

◆ pymqmsgque_MqContextC_ConfigSetIoTcp()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIoTcp ( MqContextC_ARGS )
static

Python: ctx.ConfigSetIoTcp(?host:string="None"?, ?port:string="None"?, ?myhost:string="None"?, ?myport:string="None"?) C-API
configure a context to use a tcp-client-server-link

Definition at line 1119 of file MqContextC_py.c.

1119 {
1121 OT_SETUP_VARARGS(0,4,ConfigSetIoTcp_doc)
1122 MK_STRN host = NULL;
1123 OT_CHECK_OPTIONAL(OT_CHECK_STRN (host))
1124 MK_STRN port = NULL;
1125 OT_CHECK_OPTIONAL(OT_CHECK_STRN (port))
1126 MK_STRN myhost = NULL;
1127 OT_CHECK_OPTIONAL(OT_CHECK_STRN (myhost))
1128 MK_STRN myport = NULL;
1129 OT_CHECK_OPTIONAL(OT_CHECK_STRN (myport))
1130 OT_CHECK_NOARGS
1131 MkErrorC_Check(hdl,MqConfigSetIoTcp (hdl, host, port, myhost, myport));
1132 OT_retObj_SET_None
1133 goto end;
1134 error:
1135 OT_retObj_SET_Error
1136 end:
1138}
#define ConfigSetIoTcp_doc
#define MqConfigSetIoTcp(...)

◆ pymqmsgque_MqContextC_ConfigSetIoTcpL()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIoTcpL ( MqContextC_ARGS )
static

Python: ctx.ConfigSetIoTcpL(vals:MkBufferListC) C-API
configure a context to use a tcp-client-server-link

Definition at line 1141 of file MqContextC_py.c.

1141 {
1143 OT_SETUP_ONEARG(ConfigSetIoTcpL_doc)
1144 MkBufferListCreateTLS_T(vals,10);
1145 OT_CHECK_REQUIRED(OT_CHECK_BFL (vals,MK_NULL_NO))
1146 OT_CHECK_NOARGS
1147 MkErrorC_Check(hdl,MqConfigSetIoTcpL (hdl, vals));
1148 OT_retObj_SET_None
1149 goto end;
1150 error:
1151 OT_retObj_SET_Error
1152 end:
1154}
#define ConfigSetIoTcpL_doc
#define MkBufferListCreateTLS_T(name, num)
#define MK_NULL_NO
#define MqConfigSetIoTcpL(...)

◆ pymqmsgque_MqContextC_ConfigSetIoUds()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIoUds ( MqContextC_ARGS )
static

Python: ctx.ConfigSetIoUds(file:string) C-API
configure a context to use a uds-client-server-link

Definition at line 1157 of file MqContextC_py.c.

1157 {
1159 OT_SETUP_ONEARG(ConfigSetIoUds_doc)
1160 MK_STRN file = 0;
1161 OT_CHECK_REQUIRED(OT_CHECK_STRN (file))
1162 OT_CHECK_NOARGS
1163 MkErrorC_Check(hdl,MqConfigSetIoUds (hdl, file));
1164 OT_retObj_SET_None
1165 goto end;
1166 error:
1167 OT_retObj_SET_Error
1168 end:
1170}
#define ConfigSetIoUds_doc
#define MqConfigSetIoUds(...)

◆ pymqmsgque_MqContextC_ConfigSetIsServer()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIsServer ( MqContextC_ARGS )
static

Python: ctx.ConfigSetIsServer(data:bool) C-API
set the MqSetupS::isServer value

Definition at line 1173 of file MqContextC_py.c.

1173 {
1175 OT_SETUP_ONEARG(ConfigSetIsServer_doc)
1176 MK_BOOL data = 0;
1177 OT_CHECK_REQUIRED(OT_CHECK_bool (data))
1178 OT_CHECK_NOARGS
1179 MqConfigSetIsServer (hdl, data);
1180 OT_retObj_SET_None
1181 goto end;
1182 error:
1183 OT_retObj_SET_Error
1184 end:
1186}
#define ConfigSetIsServer_doc
void MqConfigSetIsServer(MQ_CTX const ctx, bool data)
set the MqSetupS::isServer value

◆ pymqmsgque_MqContextC_ConfigSetIsString()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetIsString ( MqContextC_ARGS )
static

Python: ctx.ConfigSetIsString(data:bool) C-API
set the MqConfigS::native value 'S'string or 'L'owEndian or 'B'igEndian

Definition at line 1189 of file MqContextC_py.c.

1189 {
1191 OT_SETUP_ONEARG(ConfigSetIsString_doc)
1192 MK_BOOL data = 0;
1193 OT_CHECK_REQUIRED(OT_CHECK_bool (data))
1194 OT_CHECK_NOARGS
1195 MqConfigSetIsString (hdl, data);
1196 OT_retObj_SET_None
1197 goto end;
1198 error:
1199 OT_retObj_SET_Error
1200 end:
1202}
#define ConfigSetIsString_doc
void MqConfigSetIsString(MQ_CTX const ctx, bool data)
set the MqConfigS::native value 'S'string or 'L'owEndian or 'B'igEndian

◆ pymqmsgque_MqContextC_ConfigSetName()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetName ( MqContextC_ARGS )
static

Python: ctx.ConfigSetName(data:string) C-API
set the MqConfigS::dispName value and cleanup old value

Definition at line 1205 of file MqContextC_py.c.

1205 {
1207 OT_SETUP_ONEARG(ConfigSetName_doc)
1208 MK_STRN data = 0;
1209 OT_CHECK_REQUIRED(OT_CHECK_STRN (data))
1210 OT_CHECK_NOARGS
1211 MqConfigSetName (hdl, data);
1212 OT_retObj_SET_None
1213 goto end;
1214 error:
1215 OT_retObj_SET_Error
1216 end:
1218}
#define ConfigSetName_doc
#define MqConfigSetName(...)

◆ pymqmsgque_MqContextC_ConfigSetPkgsize()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetPkgsize ( MqContextC_ARGS )
static

Python: ctx.ConfigSetPkgsize(data:int32) C-API
set the MqIoConfigS::pkgsize value

Definition at line 1221 of file MqContextC_py.c.

1221 {
1223 OT_SETUP_ONEARG(ConfigSetPkgsize_doc)
1224 MK_I32 data = 0;
1225 OT_CHECK_REQUIRED(OT_CHECK_NI4 (data))
1226 OT_CHECK_NOARGS
1227 MqConfigSetPkgsize (hdl, data);
1228 OT_retObj_SET_None
1229 goto end;
1230 error:
1231 OT_retObj_SET_Error
1232 end:
1234}
#define ConfigSetPkgsize_doc
void MqConfigSetPkgsize(MQ_CTX const ctx, MK_I32 data)
set the MqIoConfigS::pkgsize value

◆ pymqmsgque_MqContextC_ConfigSetPostfix()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetPostfix ( MqContextC_ARGS )
static

Python: ctx.ConfigSetPostfix(data:string) C-API
set the client-part (2) of the application-identifer MqConfigS::dispName

Definition at line 1237 of file MqContextC_py.c.

1237 {
1239 OT_SETUP_ONEARG(ConfigSetPostfix_doc)
1240 MK_STRN data = 0;
1241 OT_CHECK_REQUIRED(OT_CHECK_STRN (data))
1242 OT_CHECK_NOARGS
1243 MqConfigSetPostfix (hdl, data);
1244 OT_retObj_SET_None
1245 goto end;
1246 error:
1247 OT_retObj_SET_Error
1248 end:
1250}
#define ConfigSetPostfix_doc
#define MqConfigSetPostfix(...)

◆ pymqmsgque_MqContextC_ConfigSetPrefix()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetPrefix ( MqContextC_ARGS )
static

Python: ctx.ConfigSetPrefix(data:string) C-API
set the server-part (1) of the application-identifer MqConfigS::dispName

Definition at line 1253 of file MqContextC_py.c.

1253 {
1255 OT_SETUP_ONEARG(ConfigSetPrefix_doc)
1256 MK_STRN data = 0;
1257 OT_CHECK_REQUIRED(OT_CHECK_STRN (data))
1258 OT_CHECK_NOARGS
1259 MqConfigSetPrefix (hdl, data);
1260 OT_retObj_SET_None
1261 goto end;
1262 error:
1263 OT_retObj_SET_Error
1264 end:
1266}
#define ConfigSetPrefix_doc
#define MqConfigSetPrefix(...)

◆ pymqmsgque_MqContextC_ConfigSetStartAs()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetStartAs ( MqContextC_ARGS )
static

Python: ctx.ConfigSetStartAs(data:MqStartE) C-API
set the MqConfigS::startAs value

Definition at line 1269 of file MqContextC_py.c.

1269 {
1271 OT_SETUP_ONEARG(ConfigSetStartAs_doc)
1272 enum MqStartE data = 0;
1273 OT_CHECK_REQUIRED(OT_CHECK_ENUM (MqStartE,data))
1274 OT_CHECK_NOARGS
1275 MkErrorC_Check(hdl,MqConfigSetStartAs (hdl, data));
1276 OT_retObj_SET_None
1277 goto end;
1278 error:
1279 OT_retObj_SET_Error
1280 end:
1282}
#define ConfigSetStartAs_doc
enum MkErrorE MqConfigSetStartAs(MQ_CTX const ctx, enum MqStartE data)
set the MqConfigS::startAs value

◆ pymqmsgque_MqContextC_ConfigSetStartAsString()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetStartAsString ( MqContextC_ARGS )
static

Python: ctx.ConfigSetStartAsString(data:string) C-API
set the MqConfigS::startAs value using string default, thread, fork or spawn

Definition at line 1285 of file MqContextC_py.c.

1285 {
1287 OT_SETUP_ONEARG(ConfigSetStartAsString_doc)
1288 MK_STRN data = 0;
1289 OT_CHECK_REQUIRED(OT_CHECK_STRN (data))
1290 OT_CHECK_NOARGS
1291 MkErrorC_Check(hdl,MqConfigSetStartAsString (hdl, data));
1292 OT_retObj_SET_None
1293 goto end;
1294 error:
1295 OT_retObj_SET_Error
1296 end:
1298}
#define ConfigSetStartAsString_doc
enum MkErrorE MqConfigSetStartAsString(MQ_CTX const ctx, MK_STRN data)
set the MqConfigS::startAs value using string default, thread, fork or spawn

◆ pymqmsgque_MqContextC_ConfigSetStorage()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetStorage ( MqContextC_ARGS )
static

Python: ctx.ConfigSetStorage(data:string) C-API
set the Storage value and cleanup old value

Definition at line 1301 of file MqContextC_py.c.

1301 {
1303 OT_SETUP_ONEARG(ConfigSetStorage_doc)
1304 MK_STRN data = 0;
1305 OT_CHECK_REQUIRED(OT_CHECK_STRN (data))
1306 OT_CHECK_NOARGS
1307 MqConfigSetStorage (hdl, data);
1308 OT_retObj_SET_None
1309 goto end;
1310 error:
1311 OT_retObj_SET_Error
1312 end:
1314}
#define ConfigSetStorage_doc
#define MqConfigSetStorage(...)

◆ pymqmsgque_MqContextC_ConfigSetTimeout()

static OT_ProcRet pymqmsgque_MqContextC_ConfigSetTimeout ( MqContextC_ARGS )
static

Python: ctx.ConfigSetTimeout(data:MkTimeoutE|int32) C-API
set the MqIoConfigS::timeout value

Definition at line 1317 of file MqContextC_py.c.

1317 {
1319 OT_SETUP_ONEARG(ConfigSetTimeout_doc)
1320 MK_TIME_T data = 0;
1321 OT_CHECK_REQUIRED(OT_CHECK_TIME_T (data))
1322 OT_CHECK_NOARGS
1323 MqConfigSetTimeout (hdl, data);
1324 OT_retObj_SET_None
1325 goto end;
1326 error:
1327 OT_retObj_SET_Error
1328 end:
1330}
#define ConfigSetTimeout_doc
time_t MK_TIME_T
void MqConfigSetTimeout(MQ_CTX const ctx, MK_TIME_T data)
set the MqIoConfigS::timeout value