diff options
author | Linus Nordberg <linus@nordberg.se> | 2013-05-06 12:00:00 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2013-05-08 17:03:49 +0200 |
commit | c682577a243902164de1d80f38425a66a4853d82 (patch) | |
tree | 21917ef4756702661129dd5171e932535470ae0f /lib/include | |
parent | eec88306951cec38d1376ad4fbba6e690b4a1358 (diff) |
Revert "Add formal argument 'secret' to two public functions."
This reverts commit 09d1cff2418a900b587b2113f508984f2417cc11.
Conflicts:
lib/include/radsec/request.h
Diffstat (limited to 'lib/include')
-rw-r--r-- | lib/include/radsec/radsec.h | 8 | ||||
-rw-r--r-- | lib/include/radsec/request.h | 11 |
2 files changed, 7 insertions, 12 deletions
diff --git a/lib/include/radsec/radsec.h b/lib/include/radsec/radsec.h index fb2aea9..2d20b6e 100644 --- a/lib/include/radsec/radsec.h +++ b/lib/include/radsec/radsec.h @@ -315,14 +315,12 @@ int rs_packet_send(struct rs_packet *pkt, void *user_data); /** Create a RADIUS authentication request packet associated with connection \a conn. Optionally, User-Name and User-Password - attributes are added to the packet using the data in \a user_name, - \a user_pw and \a secret where \secret is the RADIUS shared - secret. */ + attributes are added to the packet using the data in \a user_name + and \a user_pw. */ int rs_packet_create_authn_request(struct rs_connection *conn, struct rs_packet **pkt, const char *user_name, - const char *user_pw, - const char *secret); + const char *user_pw); /*** Append \a tail to packet \a pkt. */ int diff --git a/lib/include/radsec/request.h b/lib/include/radsec/request.h index f0151f8..7e58008 100644 --- a/lib/include/radsec/request.h +++ b/lib/include/radsec/request.h @@ -20,16 +20,13 @@ int rs_request_create(struct rs_connection *conn, struct rs_request **req_out); void rs_request_add_reqpkt(struct rs_request *req, struct rs_packet *req_msg); /** Create a request associated with connection \a conn containing a - newly created RADIUS authentication message, possibly with - \a user_name and \a user_pw attributes. \a user_name and \a user_pw - are optional and can be NULL. If \a user_name and \a user_pw are provided, - \a secret must also be provided. \a secret is used for "hiding" the - password. */ + newly created RADIUS authentication message, possibly with \a + user_name and \a user_pw attributes. \a user_name and _user_pw + are optional and can be NULL. */ int rs_request_create_authn(struct rs_connection *conn, struct rs_request **req_out, const char *user_name, - const char *user_pw, - const char *secret); + const char *user_pw); /** Send request \a req and wait for a matching response. The response is put in \a resp_msg (if not NULL). NOTE: At present, |