private boolean readSipcMessage(String headline)
{
if(headline.startsWith("SIP-C/")) {
this.curMessage = new SipcResponse(headline); //SIP-C/2.0 200 OK
}else {
this.curMessage = new SipcNotify(headline); //BN 685592830 SIP-C/2.0
}
if(this.readSipcHeaders()) {
return this.readSipcBody();
}else {