diff options
Diffstat (limited to 'hicn-light/src/io/hicnConnection.c')
-rwxr-xr-x | hicn-light/src/io/hicnConnection.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hicn-light/src/io/hicnConnection.c b/hicn-light/src/io/hicnConnection.c index 85cf50921..6def8ed43 100755 --- a/hicn-light/src/io/hicnConnection.c +++ b/hicn-light/src/io/hicnConnection.c @@ -14,7 +14,7 @@ */ /** - * Embodies the reader/writer for a HIcn connection + * Embodies the reader/writer for a Hicn connection * * NB The Send() function may overflow the output buffer * @@ -112,7 +112,7 @@ static IoOperations _template = {.closure = NULL, // ================================================================= -static void _setConnectionState(_HicnState *HIcn, bool isUp); +static void _setConnectionState(_HicnState *Hicn, bool isUp); static bool _saveSockaddr(_HicnState *hicnConnState, const AddressPair *pair); static void _refreshProbeDestAddress(_HicnState *hicnConnState, const uint8_t *message); @@ -150,7 +150,7 @@ IoOperations *hicnConnection_Create(Forwarder *forwarder, int fd, char *str = addressPair_ToString(hicnConnState->addressPair); logger_Log(hicnConnState->logger, LoggerFacility_IO, PARCLogLevel_Info, __func__, - "HIcnConnection %p created for address %s (isLocal %d)", + "HicnConnection %p created for address %s (isLocal %d)", (void *)hicnConnState, str, hicnConnState->isLocal); free(str); } @@ -196,7 +196,7 @@ static void _destroy(IoOperations **opsPtr) { if (logger_IsLoggable(hicnConnState->logger, LoggerFacility_IO, PARCLogLevel_Info)) { logger_Log(hicnConnState->logger, LoggerFacility_IO, PARCLogLevel_Info, - __func__, "HIcnConnection %p destroyed", (void *)hicnConnState); + __func__, "HicnConnection %p destroyed", (void *)hicnConnState); } // XXX |