summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKota Tsuyuzaki <tsuyuzaki.kota@lab.ntt.co.jp>2016-12-01 21:35:31 -0800
committerKota Tsuyuzaki <tsuyuzaki.kota@lab.ntt.co.jp>2016-12-04 20:56:24 -0800
commit09d8bbf361955b986fbcbf172dfbef2ed78d5f24 (patch)
treef673bdc2dd0652402afa074c375e02dfdb71798f /src
parent0a2c06b8b446cbe4fda89c18c20b069728c70323 (diff)
downloadliberasurecode-09d8bbf361955b986fbcbf172dfbef2ed78d5f24.tar.gz
Add get_version functionality to liberasurecode lib
Currently, we have liberasurecode version info in the header and pyeclib is using the info to detect the version. However it's a bit painful because it requires to rebuild pyeclib c code for you to see the actual installed version. This addition for liberasurecode_get_version enables caller to get the version integer from compiled shared library file (.so) and it will rescure to re-compiled operation from pyeclib. Change-Id: I8161ea7da3b069e83c93e11cb41ce12fa60c6f32
Diffstat (limited to 'src')
-rw-r--r--src/erasurecode.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/erasurecode.c b/src/erasurecode.c
index d3b3cea..4f3419c 100644
--- a/src/erasurecode.c
+++ b/src/erasurecode.c
@@ -1232,6 +1232,16 @@ int liberasurecode_get_fragment_size(int desc, int data_len)
return size;
}
+
+/**
+ * This will return the liberasurecode version for the descriptor
+ */
+
+uint32_t liberasurecode_get_version()
+{
+ return LIBERASURECODE_VERSION;
+}
+
/* ==~=*=~==~=*=~==~=*=~==~=*=~==~=* misc *=~==~=*=~==~=*=~==~=*=~==~=*=~== */
#if 0