summaryrefslogtreecommitdiff
path: root/trackerlogic.h
diff options
context:
space:
mode:
authorerdgeist <>2006-12-15 23:38:18 +0000
committererdgeist <>2006-12-15 23:38:18 +0000
commited0edcaae8ac9885601defdb3d13d0bd88472456 (patch)
treeb4a836eb3b2c439e0da8395156d0b20f244d3fca /trackerlogic.h
parentb9efc8e22ba6f9457da9ee68040470c79891852c (diff)
Fix port again ;) Include headers in Makefile dependencies
Diffstat (limited to 'trackerlogic.h')
-rw-r--r--trackerlogic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/trackerlogic.h b/trackerlogic.h
index d2948db..a5dce7c 100644
--- a/trackerlogic.h
+++ b/trackerlogic.h
@@ -46,7 +46,7 @@ static const ot_byte PEER_FLAG_COMPLETED = 0x40;
46static const ot_byte PEER_FLAG_STOPPED = 0x20; 46static const ot_byte PEER_FLAG_STOPPED = 0x20;
47 47
48#define OT_SETIP( peer, ip ) MEMMOVE((peer),(ip),4); 48#define OT_SETIP( peer, ip ) MEMMOVE((peer),(ip),4);
49#define OT_SETPORT( peer, port ) MEMMOVE(((ot_byte*)peer)+6,(port),2); 49#define OT_SETPORT( peer, port ) MEMMOVE(((ot_byte*)peer)+4,(port),2);
50#define OT_FLAG(peer) (((ot_byte*)(peer))[6]) 50#define OT_FLAG(peer) (((ot_byte*)(peer))[6])
51 51
52typedef struct { 52typedef struct {