> On Jan. 27, 2015, 8:14 p.m., Joris Van Remoortere wrote:
> > 3rdparty/libprocess/3rdparty/stout/include/stout/net.hpp, line 853
> > <https://reviews.apache.org/r/29288/diff/10/?file=836987#file836987line853>
> >
> >     Fix indentation.
> 
> Evelina Dumitrescu wrote:
>     the line is over 80 charachters, how should I split it ?

```C++
inline std::ostream& operator << (
    std::ostream& stream,
    const IP::InternetAddress& ipAddr)
{
  ...
}
```


> On Jan. 27, 2015, 8:14 p.m., Joris Van Remoortere wrote:
> > 3rdparty/libprocess/3rdparty/stout/tests/net_tests.cpp, lines 190-223
> > <https://reviews.apache.org/r/29288/diff/10/?file=836988#file836988line190>
> >
> >     Can you check the indentation here?
> 
> Evelina Dumitrescu wrote:
>     the lines are over 80 charachters, how should I split them ?

I believe the style is:
```C++
EXPECT_SOME(net::IP::fromAddressNetmask(
    net::IP::InternetAddress(in6_address),
    net::IP::InternetAddress(in6_netmask[0])));
```
but we could have someone else chime in here as well.


- Joris


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/29288/#review69856
-----------------------------------------------------------


On Jan. 27, 2015, 11:05 p.m., Evelina Dumitrescu wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/29288/
> -----------------------------------------------------------
> 
> (Updated Jan. 27, 2015, 11:05 p.m.)
> 
> 
> Review request for mesos, Benjamin Hindman, Dominic Hamon, Jie Yu, Joris Van 
> Remoortere, and Niklas Nielsen.
> 
> 
> Bugs: MESOS-1919
>     https://issues.apache.org/jira/browse/MESOS-1919
> 
> 
> Repository: mesos-git
> 
> 
> Description
> -------
> 
> Created the inner class InAddrStorage encapsulated inside the IP class.
> The class uses a union with the in_addr and in6_addr fields.
> I considered that the The MasterInfo protobuffers should have both an ipv4 
> and an ipv6 field.
> I intend to use the same Classifiers, addition, removal and update of 
> container filters, but write different encode/decode functions for IPv4/ICMP 
> and IPv6/ICMPv6 because the processing of the protocol headers differ.
> 
> 
> Diffs
> -----
> 
>   3rdparty/libprocess/3rdparty/stout/include/stout/net.hpp 
> a0210ea6440086246aafe632f86498abbb70719a 
>   3rdparty/libprocess/3rdparty/stout/tests/net_tests.cpp 
> 425132e5d7c3770be4a5a39feea5a2f22179b871 
> 
> Diff: https://reviews.apache.org/r/29288/diff/
> 
> 
> Testing
> -------
> 
> make check
> 
> 
> Thanks,
> 
> Evelina Dumitrescu
> 
>

Reply via email to