pysipp.server() and pysipp.client() appear to be implemented identically, the only exceptions being their respective default scenario name and the fact that pysipp.server() is not supposed to accept a destaddr keyword argument. However, the guard inside the function checks for dstaddr (without the "e"), which I'd assume to be a typo. Since server and client can be used interchangeably, I don't think this has functional implications, though.
pysipp.server()
andpysipp.client()
appear to be implemented identically, the only exceptions being their respective default scenario name and the fact thatpysipp.server()
is not supposed to accept adestaddr
keyword argument. However, the guard inside the function checks fordstaddr
(without the "e"), which I'd assume to be a typo. Since server and client can be used interchangeably, I don't think this has functional implications, though.