diff options
author | Linus Nordberg <linus@nordberg.se> | 2013-01-28 16:22:14 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2013-01-28 16:22:14 +0100 |
commit | 6d2889ba0a558100ebf7616f9769864daf5ece8e (patch) | |
tree | f1a059772341a8785b11a47047251d14a574f863 /lib/packet.c | |
parent | 48737bdeca1b2426405032c115d63aec7b93aa7a (diff) |
Remove dead code.
Diffstat (limited to 'lib/packet.c')
-rw-r--r-- | lib/packet.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/packet.c b/lib/packet.c index 17f022e..8073945 100644 --- a/lib/packet.c +++ b/lib/packet.c @@ -137,16 +137,6 @@ rs_packet_create (struct rs_connection *conn, struct rs_packet **pkt_out) if (rpkt == NULL) return rs_err_conn_push (conn, RSE_NOMEM, __func__); - /* - * This doesn't make sense; the packet identifier is constant for - * an entire conversation. A separate API should be provided to - * allow the application to set the packet ID, or a conversation - * object should group related packets together. - */ -#if 0 - rpkt->id = conn->nextid++ -#endif - err = nr_packet_init (rpkt, NULL, NULL, PW_ACCESS_REQUEST, rpkt + 1, RS_MAX_PACKET_LEN); |