]> git.stg.codes - stg.git/blobdiff - stargazer/plugins/other/smux/utils.h
Port to CMake, get rid of os_int.h.
[stg.git] / stargazer / plugins / other / smux / utils.h
diff --git a/stargazer/plugins/other/smux/utils.h b/stargazer/plugins/other/smux/utils.h
new file mode 100644 (file)
index 0000000..52a3988
--- /dev/null
@@ -0,0 +1,21 @@
+#ifndef __UTILS_H__
+#define __UTILS_H__
+
+#include <string>
+
+#include "stg/OBJECT_IDENTIFIER.h"
+#include "stg/SMUX-PDUs.h"
+#include "stg/GetResponse-PDU.h"
+
+bool String2OI(const std::string & str, OBJECT_IDENTIFIER_t * oi);
+bool SendOpenPDU(int fd);
+bool SendClosePDU(int fd);
+bool SendRReqPDU(int fd);
+SMUX_PDUs_t * RecvSMUXPDUs(int fd);
+bool SendGetResponsePDU(int fd, GetResponse_PDU_t * getResponse);
+bool SendGetResponseErrorPDU(int fd,
+                             const PDU_t * getRequest,
+                             int errorStatus,
+                             int errorIndex);
+
+#endif