mirror of
https://github.com/zeromq/libzmq.git
synced 2025-11-10 16:37:45 +01:00
Problem: parameter naming style inconsistent
Solution: define and apply parameter naming style: lower_case_
This commit is contained in:
@@ -43,7 +43,7 @@ class tcp_address_t
|
||||
{
|
||||
public:
|
||||
tcp_address_t ();
|
||||
tcp_address_t (const sockaddr *sa, socklen_t sa_len);
|
||||
tcp_address_t (const sockaddr *sa_, socklen_t sa_len_);
|
||||
virtual ~tcp_address_t ();
|
||||
|
||||
// This function translates textual TCP address into an address
|
||||
@@ -88,8 +88,8 @@ class tcp_address_mask_t : public tcp_address_t
|
||||
|
||||
int mask () const;
|
||||
|
||||
bool match_address (const struct sockaddr *ss,
|
||||
const socklen_t ss_len) const;
|
||||
bool match_address (const struct sockaddr *ss_,
|
||||
const socklen_t ss_len_) const;
|
||||
|
||||
private:
|
||||
int address_mask;
|
||||
|
||||
Reference in New Issue
Block a user