No TLS record type in some PCAP packets with port 443

I have a pcap file in which I aim to analyze the HTTPS traffic (specifically, TLS headers) using tshark. I filter HTTPS traffic using the tcp port (== 443). Thereafter, I print the TLS record content type for every packet. However, some of the packets have no TLS header. I suspect this is because of TLS fragmentation or application data split over multiple packets. How do I handle these packets using tshark? I am using the following command to extract the header information:
tshark -O ssl -T fields -e ssl.record -e ssl.record.content_type -r “tcp.port == 443 && tcp.len > 0”

Continue reading No TLS record type in some PCAP packets with port 443