[hipl-commit] [tiny] Rev 3560: Renamed hip_receive_update to hip_handle_update for consistency reasons.

  • From: Tim Just <tim.just@xxxxxxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Wed, 24 Feb 2010 10:29:15 +0200

Committer: Tim Just <tim.just@xxxxxxxxxxxxxx>
Date: Wed Feb 24 09:28:04 2010 +0100
Revision: 3560
Revision-id: tim.just@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: tiny

Log:
  Renamed hip_receive_update to hip_handle_update for consistency reasons.

Modified:
  M  hipd/input.c
  M  modules/update/hipd/update.c
  M  modules/update/hipd/update.h

=== modified file 'hipd/input.c'
--- hipd/input.c        2010-02-23 16:29:33 +0000
+++ hipd/input.c        2010-02-24 08:28:04 +0000
@@ -651,7 +651,7 @@
 
     case HIP_UPDATE:
         HIP_DEBUG_HIT("received an UPDATE:  ", src_addr );
-        HIP_IFCS(entry, err = hip_receive_update(&ctx));
+        HIP_IFCS(entry, err = hip_handle_update(&ctx));
         break;
 
     case HIP_NOTIFY:

=== modified file 'modules/update/hipd/update.c'
--- modules/update/hipd/update.c        2010-02-22 18:30:02 +0000
+++ modules/update/hipd/update.c        2010-02-24 08:28:04 +0000
@@ -659,7 +659,7 @@
     }
 }
 
-int hip_receive_update(struct hip_packet_context *ctx)
+int hip_handle_update(struct hip_packet_context *ctx)
 {
     int err = 0, same_seq = 0;
     unsigned int ack_peer_update_id         = 0;

=== modified file 'modules/update/hipd/update.h'
--- modules/update/hipd/update.h        2010-02-22 16:17:11 +0000
+++ modules/update/hipd/update.h        2010-02-24 08:28:04 +0000
@@ -63,7 +63,7 @@
  *
  * @return 0 if succeeded, error number otherwise
  */
-int hip_receive_update(struct hip_packet_context *ctx);
+int hip_handle_update(struct hip_packet_context *ctx);
 
 int hip_create_locators(hip_common_t *locator_msg,
                         struct hip_locator_info_addr_item **locators);

Other related posts:

  • » [hipl-commit] [tiny] Rev 3560: Renamed hip_receive_update to hip_handle_update for consistency reasons. - Tim Just