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 py_mqmsgque_MqContextC_ConfigCheckStartAs (MqContextC_ARGS)
  Python: bool ctx.ConfigCheckStartAs(data:MqStartE) C-API
check if MqConfigS::startAs can be set to data
 
static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetAllDebug (MqContextC_ARGS)
  Python: ctx.ConfigSetAllDebug(data:int32) C-API
set the MkRuntimeS::debug value
 
static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetBuffersize (MqContextC_ARGS)
  Python: ctx.ConfigSetBuffersize(data:int32) C-API
set the MqIoConfigS::buffersize value
 
static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetDaemon (MqContextC_ARGS)
  Python: ctx.ConfigSetDaemon(pidfile:string) C-API
start the server-context as daemon …
 
static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetIdentFrom (MqContextC_ARGS)
  Python: ctx.ConfigSetIdentFrom(data:MqIdentE) C-API
set the MqConfigS::identFrom value
 
static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetIgnoreExit (MqContextC_ARGS)
  Python: ctx.ConfigSetIgnoreExit(data:bool) C-API
set the MqSetupS::ignoreExit value
 
static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetIoPipe (MqContextC_ARGS)
  Python: ctx.ConfigSetIoPipe(fh:int32) C-API
set the pipe configuration data …
 
static OT_ProcRet py_mqmsgque_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 py_mqmsgque_MqContextC_ConfigSetIoTcpL (MqContextC_ARGS)
  Python: ctx.ConfigSetIoTcpL(vals:MkBufferListC) C-API
configure a context to use a tcp-client-server-link
 
static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetIoUds (MqContextC_ARGS)
  Python: ctx.ConfigSetIoUds(file:string) C-API
configure a context to use a uds-client-server-link
 
static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetIsServer (MqContextC_ARGS)
  Python: ctx.ConfigSetIsServer(data:bool) C-API
set the MqSetupS::isServer value
 
static OT_ProcRet py_mqmsgque_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 py_mqmsgque_MqContextC_ConfigSetName (MqContextC_ARGS)
  Python: ctx.ConfigSetName(data:string) C-API
set the MqConfigS::dispname value and cleanup old value
 
static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetPkgsize (MqContextC_ARGS)
  Python: ctx.ConfigSetPkgsize(data:int32) C-API
set the MqIoConfigS::pkgsize value
 
static OT_ProcRet py_mqmsgque_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 py_mqmsgque_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 py_mqmsgque_MqContextC_ConfigSetStartAs (MqContextC_ARGS)
  Python: ctx.ConfigSetStartAs(data:MqStartE) C-API
set the MqConfigS::startAs value
 
static OT_ProcRet py_mqmsgque_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 py_mqmsgque_MqContextC_ConfigSetStorage (MqContextC_ARGS)
  Python: ctx.ConfigSetStorage(data:string) C-API
set the Storage value and cleanup old value
 
static OT_ProcRet py_mqmsgque_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

◆ py_mqmsgque_MqContextC_ConfigCheckStartAs()

static OT_ProcRet py_mqmsgque_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 1010 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetAllDebug()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetAllDebug ( MqContextC_ARGS )
static

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

Definition at line 1025 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetBuffersize()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetBuffersize ( MqContextC_ARGS )
static

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

Definition at line 1041 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetDaemon()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetDaemon ( MqContextC_ARGS )
static

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

Definition at line 1057 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetIdentFrom()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetIdentFrom ( MqContextC_ARGS )
static

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

Definition at line 1073 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetIgnoreExit()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetIgnoreExit ( MqContextC_ARGS )
static

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

Definition at line 1089 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetIoPipe()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetIoPipe ( MqContextC_ARGS )
static

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

Definition at line 1105 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetIoTcp()

static OT_ProcRet py_mqmsgque_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 1121 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetIoTcpL()

static OT_ProcRet py_mqmsgque_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 1143 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetIoUds()

static OT_ProcRet py_mqmsgque_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 1159 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetIsServer()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetIsServer ( MqContextC_ARGS )
static

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

Definition at line 1175 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetIsString()

static OT_ProcRet py_mqmsgque_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 1191 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetName()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetName ( MqContextC_ARGS )
static

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

Definition at line 1207 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetPkgsize()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetPkgsize ( MqContextC_ARGS )
static

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

Definition at line 1223 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetPostfix()

static OT_ProcRet py_mqmsgque_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 1239 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetPrefix()

static OT_ProcRet py_mqmsgque_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 1255 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetStartAs()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetStartAs ( MqContextC_ARGS )
static

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

Definition at line 1271 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetStartAsString()

static OT_ProcRet py_mqmsgque_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 1287 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetStorage()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetStorage ( MqContextC_ARGS )
static

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

Definition at line 1303 of file MqContextC_py.c.

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

◆ py_mqmsgque_MqContextC_ConfigSetTimeout()

static OT_ProcRet py_mqmsgque_MqContextC_ConfigSetTimeout ( MqContextC_ARGS )
static

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

Definition at line 1319 of file MqContextC_py.c.

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