diff options
author | erdgeist <> | 2006-12-15 23:38:18 +0000 |
---|---|---|
committer | erdgeist <> | 2006-12-15 23:38:18 +0000 |
commit | ed0edcaae8ac9885601defdb3d13d0bd88472456 (patch) | |
tree | b4a836eb3b2c439e0da8395156d0b20f244d3fca /trackerlogic.h | |
parent | b9efc8e22ba6f9457da9ee68040470c79891852c (diff) |
Fix port again ;) Include headers in Makefile dependencies
Diffstat (limited to 'trackerlogic.h')
-rw-r--r-- | trackerlogic.h | 2 |
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; | |||
46 | static const ot_byte PEER_FLAG_STOPPED = 0x20; | 46 | static 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 | ||
52 | typedef struct { | 52 | typedef struct { |