summaryrefslogtreecommitdiffabout
path: root/pumpkin/SendXFer.h
Side-by-side diff
Diffstat (limited to 'pumpkin/SendXFer.h') (more/less context) (ignore whitespace changes)
-rw-r--r--pumpkin/SendXFer.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/pumpkin/SendXFer.h b/pumpkin/SendXFer.h
new file mode 100644
index 0000000..787a1b9
--- a/dev/null
+++ b/pumpkin/SendXFer.h
@@ -0,0 +1,16 @@
+#import <Cocoa/Cocoa.h>
+#import "TFTPPacket.h"
+#import "PumpKIN.h"
+#import "XFer.h"
+
+#include <netinet/in.h>
+
+@interface SendXFer : XFer {
+}
+
+-(SendXFer*)initWithPeer:(struct sockaddr_in *)sin andPacket:(TFTPPacket*)p;
+-(SendXFer*)initWithLocalFile:(NSString *)lf peerAddress:(const struct sockaddr_in *)pa remoteFile:(NSString *)rf xferType:(NSString *)xt blockSize:(uint16_t)bs andTimeout:(int)to;
+
+-(void)xfer;
+
+@end