crda: rename reglib_get_*() routines upstream/1.1.3 v1.1.3
authorLuis R. Rodriguez <mcgrof@frijolero.org>
Thu, 19 Jan 2012 02:19:09 +0000 (18:19 -0800)
committerLuis R. Rodriguez <mcgrof@frijolero.org>
Thu, 19 Jan 2012 02:19:09 +0000 (18:19 -0800)
reglib_get_country_idx() --> reglib_get_rd_alpha2()
reglib_get_country_alpha2() --> reglib_get_rd_alpha2()

This reflects better what we provide back out.

Signed-off-by: Luis R. Rodriguez <mcgrof@frijolero.org>
crda.c
reglib.c
reglib.h

diff --git a/crda.c b/crda.c
index c6dc3d4..cdbc69a 100644 (file)
--- a/crda.c
+++ b/crda.c
@@ -191,7 +191,7 @@ int main(int argc, char **argv)
 
        close(fd);
 
-       rd = reglib_get_country_alpha2(alpha2, *regdb);
+       rd = reglib_get_rd_alpha2(alpha2, *regdb);
        if (!rd) {
                fprintf(stderr, "No country match in regulatory database.\n");
                return -1;
index 12698fa..bc81974 100644 (file)
--- a/reglib.c
+++ b/reglib.c
@@ -226,7 +226,7 @@ country2rd(uint8_t *db, int dblen,
 }
 
 struct ieee80211_regdomain *
-reglib_get_country_idx(unsigned int idx, const char *file)
+reglib_get_rd_idx(unsigned int idx, const char *file)
 {
        int fd;
        struct stat stat;
@@ -288,7 +288,7 @@ reglib_get_country_idx(unsigned int idx, const char *file)
 }
 
 struct ieee80211_regdomain *
-reglib_get_country_alpha2(const char *alpha2, const char *file)
+reglib_get_rd_alpha2(const char *alpha2, const char *file)
 {
        int fd;
        struct stat stat;
index 99e6c76..9b9bd5c 100644 (file)
--- a/reglib.h
+++ b/reglib.h
@@ -74,16 +74,16 @@ void *crda_get_file_ptr(uint8_t *db, int dblen, int structlen, uint32_t ptr);
 int crda_verify_db_signature(uint8_t *db, int dblen, int siglen);
 
 struct ieee80211_regdomain *
-reglib_get_country_idx(unsigned int idx, const char *file);
+reglib_get_rd_idx(unsigned int idx, const char *file);
 
 #define reglib_for_each_country(__rd, __idx, __file)                   \
-       for (__rd = reglib_get_country_idx(__idx, __file);              \
+       for (__rd = reglib_get_rd_idx(__idx, __file);           \
             __rd != NULL;                                              \
-            __rd = reglib_get_country_idx(__idx, __file),              \
+            __rd = reglib_get_rd_idx(__idx, __file),           \
             __idx++)
 
 struct ieee80211_regdomain *
-reglib_get_country_alpha2(const char *alpha2, const char *file);
+reglib_get_rd_alpha2(const char *alpha2, const char *file);
 
 /* reg helpers */
 void print_regdom(struct ieee80211_regdomain *rd);