12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * Copyright 2016, 2017 MZ Automation GmbH
- *
- * This file is part of lib60870-C
- *
- * lib60870-C is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * lib60870-C is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with lib60870-C. If not, see <http://www.gnu.org/licenses/>.
- *
- * See COPYING file for the complete license text.
- */
- #ifndef SRC_INC_INTERNAL_CS101_ASDU_INTERNAL_H_
- #define SRC_INC_INTERNAL_CS101_ASDU_INTERNAL_H_
- #include <stdbool.h>
- #include <stdint.h>
- #include "iec60870_common.h"
- //#include "information_objects_internal.h"
- //#include "apl_types_internal.h"
- #include "lib_memory.h"
- #include "iec_include.h"
- struct sCS101_ASDU {
- CS101_AppLayerParameters parameters;
- uint8_t* asdu;
- int asduHeaderLength;
- uint8_t* payload;
- int payloadSize;
- };
- #ifdef __cplusplus
- extern "C" {
- #endif
- void
- CS101_ASDU_encode(CS101_ASDU self, Frame frame);
- bool
- CS101_ASDU_addInformationObject(CS101_ASDU self, InformationObject io);
- bool
- CS101_ASDU_isSequence(CS101_ASDU self);
- int
- CS101_ASDU_getNumberOfElements(CS101_ASDU self);
- CS101_ASDU
- CS101_ASDU_initializeStatic(CS101_StaticASDU self, CS101_AppLayerParameters parameters, bool isSequence, CS101_CauseOfTransmission cot, int oa, int ca,
- bool isTest, bool isNegative);
- /**
- * \brief create a new (read-only) instance
- *
- * NOTE: Do not try to append information objects to the instance!
- */
- CS101_ASDU
- CS101_ASDU_createFromBuffer(CS101_AppLayerParameters parameters, uint8_t* msg, int msgLength);
- #ifdef __cplusplus
- }
- #endif
- #endif /* SRC_INC_INTERNAL_CS101_ASDU_INTERNAL_H_ */
|